use coderef instead of run method
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / deploy_methods / sql_translator.t
index 857129e..ad95bab 100644 (file)
@@ -7,6 +7,7 @@ use lib 't/lib';
 use DBICDHTest;
 use aliased 'DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator';
 use File::Spec::Functions;
+use File::Path qw(rmtree mkpath);
 
 my $db = 'dbi:SQLite:db.db';
 my @connection = ($db, '', '', { ignore_version => 1 });
@@ -21,12 +22,33 @@ VERSION1: {
       schema            => $s,
       upgrade_directory => $sql_dir,
       databases         => ['SQLite'],
-      sqltargs          => { add_drop_table => 0 },
+      sql_translator_args          => { add_drop_table => 0 },
    });
 
    ok( $dm, 'DBIC::DH::DM::SQL::Translator gets instantiated correctly' );
 
-   $dm->prepare_install;
+   $dm->prepare_deploy;
+
+   mkpath(catfile(qw( t sql SQLite preinstall 1.0 )));
+   open my $prerun, '>',
+      catfile(qw( t sql SQLite preinstall 1.0 003-semiautomatic.pl ));
+   print {$prerun} "sub {use File::Touch; touch(q(foobar));}";
+   close $prerun;
+   $dm->preinstall_scripts('1.0');
+
+   ok -e 'foobar';
+
+   {
+      my $warned = 0;
+      local $SIG{__WARN__} = sub{$warned = 1};
+      $dm->prepare_deploy;
+      ok( $warned, 'prepare_deploy warns if you run it twice' );
+   }
+   mkpath(catfile(qw( t sql _common schema 1.0 )));
+   open my $common, '>',
+      catfile(qw( t sql _common schema 1.0 002-error.sql ));
+   print {$common} qq<syntax fail\n\n>;
+   close $common;
 
    ok(
       -f catfile(qw( t sql SQLite schema 1.0 001-auto.sql )),
@@ -39,7 +61,17 @@ VERSION1: {
       })
    } 'schema not deployed';
 
-   $dm->_deploy;
+   mkpath catfile(qw( t sql _common schema 1.0 ));
+   open $common, '>',
+      catfile(qw( t sql _common schema 1.0 001-auto.sql ));
+   print {$common} qq<This will never get run>;
+   close $common;
+   {
+      my $warned = 0;
+      local $SIG{__WARN__} = sub{$warned = 1};
+      $dm->deploy;
+      ok( $warned, 'deploy warns on sql errors' );
+   }
 
    lives_ok {
       $s->resultset('Foo')->create({
@@ -55,26 +87,36 @@ VERSION2: {
       schema            => $s,
       upgrade_directory => $sql_dir,
       databases         => ['SQLite'],
-      sqltargs          => { add_drop_table => 0 },
+      sql_translator_args          => { add_drop_table => 0 },
+      txn_wrap          => 1,
    });
 
    ok( $dm, 'DBIC::DH::SQL::Translator w/2.0 instantiates correctly');
 
    $version = $s->schema_version();
-   $dm->prepare_install();
+   $dm->prepare_deploy;
    ok(
       -f catfile(qw( t sql SQLite schema 2.0 001-auto.sql )),
       '2.0 schema gets generated properly'
    );
-   $dm->prepare_upgrade('1.0', $version);
+   mkpath(catfile(qw( t sql SQLite up 1.0-2.0 )));
+   $dm->prepare_upgrade(qw(1.0 2.0), [qw(1.0 2.0)]);
+
+   {
+      my $warned = 0;
+      local $SIG{__WARN__} = sub{$warned = 1};
+      $dm->prepare_upgrade(qw(0.0 1.0), [qw(0.0 1.0)]);
+      ok( $warned, 'prepare_upgrade with a bogus preversion warns' );
+   }
    ok(
       -f catfile(qw( t sql SQLite up 1.0-2.0 001-auto.sql )),
-      '1.0-2.0 diff gets generated properly'
+      '1.0-2.0 diff gets generated properly and default start and end versions get set'
    );
-   $dm->prepare_downgrade($version, '1.0');
+   mkpath(catfile(qw( t sql SQLite down 2.0-1.0 )));
+   $dm->prepare_downgrade($version, '1.0', [$version, '1.0']);
    ok(
       -f catfile(qw( t sql SQLite down 2.0-1.0 001-auto.sql )),
-      '1.0-2.0 diff gets generated properly'
+      '2.0-1.0 diff gets generated properly'
    );
    dies_ok {
       $s->resultset('Foo')->create({
@@ -88,13 +130,49 @@ VERSION2: {
          baz => 'frew',
       })
    } 'schema not uppgrayyed';
-   $dm->_upgrade_single_step([qw( 1.0 2.0 )]);
+
+   mkpath catfile(qw( t sql _common up 1.0-2.0 ));
+   open my $common, '>',
+      catfile(qw( t sql _common up 1.0-2.0 002-semiautomatic.sql ));
+   print {$common} qq<INSERT INTO Foo (bar, baz) VALUES ("hello", "world");\n\n>;
+   close $common;
+
+   open my $common_pl, '>',
+      catfile(qw( t sql _common up 1.0-2.0 003-semiautomatic.pl ));
+   print {$common_pl} q|
+      sub {
+         my $schema = shift;
+         $schema->resultset('Foo')->create({
+            bar => 'goodbye',
+            baz => 'blue skies',
+         })
+      }
+   |;
+   close $common_pl;
+
+   $dm->upgrade_single_step([qw( 1.0 2.0 )]);
+   is( $s->resultset('Foo')->search({
+         bar => 'hello',
+         baz => 'world',
+      })->count, 1, '_common migration got run');
+   is( $s->resultset('Foo')->search({
+         bar => 'goodbye',
+         #baz => 'blue skies',
+      })->count, 1, '_common perl migration got run');
    lives_ok {
       $s->resultset('Foo')->create({
          bar => 'frew',
          baz => 'frew',
       })
    } 'schema is deployed';
+   $dm->downgrade_single_step([qw( 2.0 1.0 )]);
+   dies_ok {
+      $s->resultset('Foo')->create({
+         bar => 'frew',
+         baz => 'frew',
+      })
+   } 'schema is downgrayyed';
+   $dm->upgrade_single_step([qw( 1.0 2.0 )]);
 }
 
 VERSION3: {
@@ -104,27 +182,43 @@ VERSION3: {
       schema            => $s,
       upgrade_directory => $sql_dir,
       databases         => ['SQLite'],
-      sqltargs          => { add_drop_table => 0 },
+      sql_translator_args          => { add_drop_table => 0 },
+      txn_wrap          => 0,
    });
 
    ok( $dm, 'DBIC::DH::SQL::Translator w/3.0 instantiates correctly');
 
    $version = $s->schema_version();
-   $dm->prepare_install;
+   $dm->prepare_deploy;
    ok(
       -f catfile(qw( t sql SQLite schema 3.0 001-auto.sql )),
       '2.0 schema gets generated properly'
    );
-   $dm->prepare_upgrade( '1.0', $version );
+   $dm->prepare_downgrade($version, '1.0', [$version, '1.0']);
    ok(
-      -f catfile(qw( t sql SQLite up 1.0-2.0 001-auto.sql )),
+      -f catfile(qw( t sql SQLite down 3.0-1.0 001-auto.sql )),
+      '3.0-1.0 diff gets generated properly'
+   );
+   $dm->prepare_upgrade( '1.0', $version, ['1.0', $version] );
+   ok(
+      -f catfile(qw( t sql SQLite up 1.0-3.0 001-auto.sql )),
       '1.0-3.0 diff gets generated properly'
    );
-   $dm->prepare_upgrade( '2.0', $version );
+   $dm->prepare_upgrade( '2.0', $version, ['2.0', $version]);
+   {
+      my $warned = 0;
+      local $SIG{__WARN__} = sub{$warned = 1};
+      $dm->prepare_upgrade( '2.0', $version, ['2.0', $version] );
+      ok( $warned, 'prepare_upgrade warns if you clobber an existing upgrade file' );
+   }
    ok(
       -f catfile(qw( t sql SQLite up 1.0-2.0 001-auto.sql )),
       '2.0-3.0 diff gets generated properly'
    );
+   mkpath catfile(qw( t sql _generic up 2.0-3.0 ));
+   rename catfile(qw( t sql SQLite up 2.0-3.0 001-auto.sql )), catfile(qw( t sql _generic up 2.0-3.0 001-auto.sql ));
+   rmtree(catfile(qw( t sql SQLite )));
+   warn 'how can this be' if -d catfile(qw( t sql SQLite ));
    dies_ok {
       $s->resultset('Foo')->create({
             bar => 'frew',
@@ -132,13 +226,19 @@ VERSION3: {
             biff => 'frew',
          })
    } 'schema not deployed';
-   $dm->_upgrade_single_step([qw( 2.0 3.0 )]);
+   $dm->upgrade_single_step([qw( 2.0 3.0 )]);
    lives_ok {
       $s->resultset('Foo')->create({
          bar => 'frew',
          baz => 'frew',
          biff => 'frew',
       })
-   } 'schema is deployed';
+   } 'schema is deployed using _generic';
+   rmtree(catfile(qw( t sql SQLite )));
+   rmtree(catfile(qw( t sql _generic )));
+   dies_ok {
+      $dm->upgrade_single_step([qw( 2.0 3.0 )]);
+   } 'dies when sql dir does not exist';
 }
 done_testing;
+#vim: ts=2 sw=2 expandtab