Merged with master and am ready to merge back
[dbsrgits/DBM-Deep.git] / t / common.pm
index 135ed66..eda627c 100644 (file)
@@ -1,15 +1,12 @@
 package # Hide from PAUSE
     t::common;
 
-use 5.006_000;
-
 use strict;
-use warnings;
-
-our $VERSION = '0.01';
+use warnings FATAL => 'all';
 
 use base 'Exporter';
 our @EXPORT_OK = qw(
+    new_dbm
     new_fh
 );
 
@@ -19,7 +16,6 @@ use Fcntl qw( :flock );
 
 my $parent = $ENV{WORK_DIR} || File::Spec->tmpdir;
 our $dir = tempdir( CLEANUP => 1, DIR => $parent );
-#my $dir = tempdir( DIR => '.' );
 
 sub new_fh {
     my ($fh, $filename) = tempfile( 'tmpXXXX', DIR => $dir, UNLINK => 1 );
@@ -30,5 +26,89 @@ sub new_fh {
     return ($fh, $filename);
 }
 
+sub new_dbm {
+    my @args = @_;
+    my ($fh, $filename) = new_fh();
+
+    my (@names, @reset_funcs, @extra_args);
+
+    unless ( $ENV{NO_TEST_FILE} ) {
+        push @names, 'File';
+        push @reset_funcs, undef;
+        push @extra_args, [
+            file => $filename,
+        ];
+    }
+
+    if ( $ENV{TEST_SQLITE} ) {
+        (undef, my $filename) = new_fh();
+        push @names, 'SQLite';
+        push @reset_funcs, sub {
+            require 'DBI.pm';
+            my $dbh = DBI->connect(
+                "dbi:SQLite:dbname=$filename", '', '',
+            );
+            my $sql = do {
+                my $filename = 'etc/sqlite_tables.sql';
+                open my $fh, '<', $filename
+                    or die "Cannot open '$filename' for reading: $!\n";
+                local $/;
+                <$fh>
+            };
+            foreach my $line ( split ';', $sql ) {
+                $dbh->do( "$line" ) if $line =~ /\S/;
+            }
+        };
+        push @extra_args, [
+            dbi => {
+                dsn      => "dbi:SQLite:dbname=$filename",
+                user     => '',
+                password => '',
+            },
+        ];
+    }
+
+    if ( $ENV{TEST_MYSQL_DSN} ) {
+        push @names, 'MySQL';
+        push @reset_funcs, sub {
+            require 'DBI.pm';
+            my $dbh = DBI->connect(
+                $ENV{TEST_MYSQL_DSN},
+                $ENV{TEST_MYSQL_USER},
+                $ENV{TEST_MYSQL_PASS},
+            );
+            my $sql = do {
+                my $filename = 'etc/mysql_tables.sql';
+                open my $fh, '<', $filename
+                    or die "Cannot open '$filename' for reading: $!\n";
+                local $/;
+                <$fh>
+            };
+            foreach my $line ( split ';', $sql ) {
+                $dbh->do( "$line" ) if $line =~ /\S/;
+            }
+        };
+        push @extra_args, [
+            dbi => {
+                dsn      => $ENV{TEST_MYSQL_DSN},
+                user     => $ENV{TEST_MYSQL_USER},
+                password => $ENV{TEST_MYSQL_PASS},
+            },
+        ];
+    }
+
+    return sub {
+        return unless @extra_args;
+        my @these_args = @{ shift @extra_args };
+        if ( my $reset = shift @reset_funcs ) {
+            $reset->();
+        }
+        Test::More::diag( "Testing '@{[shift @names]}'\n" ) if $ENV{TEST_VERBOSE};
+        return sub {
+            DBM::Deep->new( @these_args, @args, @_ )
+        };
+    };
+}
+
 1;
 __END__