#!/usr/local/bin/perl -w
=head1 NAME
01db_filedb.t - testing of VCP::DB_File
=cut
use strict;
use Carp;
use Test;
use File::Path;
use VCP::Debug qw( enable_debug );
use VCP::DB_File;
enable_debug( split /,/, $ENV{VCPDEBUG} ) if defined $ENV{VCPDEBUG} ;
my $t = -d 't' ? 't/' : '' ;
my $db_loc = "${t}01db_filedb";
rmtree [$db_loc] or die "$! unlinking $db_loc" if -e $db_loc;
my $db;
my $v;
my @tests = (
sub {
$db = VCP::DB_File->new( StoreLoc => $db_loc, TableName => "foo" );
ok $db;
},
sub {
ok ! -e $db->store_loc;
},
sub {
$db->mkdir_store_loc;
ok -d $db->store_loc;
},
sub {
$db->rmdir_store_loc;
ok ! -e $db->store_loc;
},
sub {
$v = $db->pack_values( "a", "b" );
ok $v, "a;b";
},
sub {
ok join( "|", $db->unpack_values( $v ) ), "a|b";
},
sub {
$v = $db->pack_values( "a;b", "b" );
ok $v, "a%,b;b";
},
sub {
ok join( "|", $db->unpack_values( $v ) ), "a;b|b";
},
sub {
$db->close_db;
rmtree [$db_loc] or warn "$! unlinking $db_loc" if -e $db_loc;
ok 1;
},
) ;
plan tests => scalar( @tests ) ;
$_->() for @tests ;
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #5 | 3155 | Barrie Slaymaker |
Convert to logging using VCP::Logger to reduce stdout/err spew. Simplify & speed up debugging quite a bit. Provide more verbose information in logs. Print to STDERR progress reports to keep users from wondering what's going on. Breaks test; halfway through upgrading run3() to an inline function for speed and for VCP specific features. |
||
| #4 | 2956 | John Fetkovich | added a couple of tests for unpack_values that made me nervous.... | ||
| #3 | 2871 | Barrie Slaymaker | Try to fix empty stnig un/packing for real this time. | ||
| #2 | 2870 | Barrie Slaymaker | Fix sort, un/packing empty value problems | ||
| #1 | 2723 | Barrie Slaymaker | Finish generalizing DB_File, implement HeadRevsDB |