X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F94versioning.t;h=a21141a65fb93043ac472fe28f7cec03f2d2c6a0;hb=68de943862f06cabd397d2e74d12cd9cdc999779;hp=4537adf8745f10fd8ba92ab69fc880d7ae94015b;hpb=b9ae34d311cbcaa2626bbb133778f427265d43dc;p=dbsrgits%2FDBIx-Class.git diff --git a/t/94versioning.t b/t/94versioning.t index 4537adf..a21141a 100644 --- a/t/94versioning.t +++ b/t/94versioning.t @@ -1,15 +1,10 @@ -#!/usr/bin/perl - use strict; use warnings; + use Test::More; use Test::Warn; use Test::Exception; -use Path::Class; -use File::Copy; - -#warn "$dsn $user $pass"; my ($dsn, $user, $pass); BEGIN { @@ -18,22 +13,20 @@ BEGIN { plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test' unless ($dsn); - eval { require Time::HiRes } - || plan skip_all => 'Test needs Time::HiRes'; - Time::HiRes->import(qw/time sleep/); - - require DBIx::Class::Storage::DBI; + require DBIx::Class; plan skip_all => - 'Test needs SQL::Translator ' . DBIx::Class::Storage::DBI->_sqlt_minimum_version - if not DBIx::Class::Storage::DBI->_sqlt_version_ok; + 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('deploy') + unless DBIx::Class::Optional::Dependencies->req_ok_for ('deploy') } +use Path::Class; +use File::Copy; +use Time::HiRes qw/time sleep/; + use lib qw(t/lib); use DBICTest; # do not remove even though it is not used use_ok('DBICVersion_v1'); -use_ok('DBICVersion_v2'); -use_ok('DBICVersion_v3'); my $version_table_name = 'dbix_class_schema_versions'; my $old_table_name = 'SchemaVersions'; @@ -65,6 +58,7 @@ is($schema_v1->_source_exists($tvrs), 1, 'Created schema from DDL file'); # loading a new module defining a new version of the same table DBICVersion::Schema->_unregister_source ('Table'); +use_ok('DBICVersion_v2'); my $schema_v2 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_version => 1 }); { @@ -76,7 +70,6 @@ my $schema_v2 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_versio $schema_v2->create_ddl_dir('MySQL', '2.0', $ddl_dir, '1.0'); ok(-f $fn->{trans_v12}, 'Created DDL file'); - sleep 1; # remove this when TODO below is completed warnings_like ( sub { $schema_v2->upgrade() }, qr/DB version .+? is lower than the schema version/, @@ -121,6 +114,7 @@ my $schema_v2 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_versio # repeat the v1->v2 process for v2->v3 before testing v1->v3 DBICVersion::Schema->_unregister_source ('Table'); +use_ok('DBICVersion_v3'); my $schema_v3 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_version => 1 }); { @@ -162,9 +156,41 @@ my $schema_v3 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_versio # attempt v1 -> v3 upgrade { local $SIG{__WARN__} = sub { warn if $_[0] !~ /Attempting upgrade\.$/ }; + $schema_v3->upgrade(); is($schema_v3->get_db_version(), '3.0', 'db version number upgraded'); } +# Now, try a v1 -> v3 upgrade with a file that has comments strategically placed in it. +# First put the v1 schema back again... +{ + # drop all the tables... + eval { $schema_v1->storage->dbh->do('drop table ' . $version_table_name) }; + eval { $schema_v1->storage->dbh->do('drop table ' . $old_table_name) }; + eval { $schema_v1->storage->dbh->do('drop table TestVersion') }; + + { + local $DBICVersion::Schema::VERSION = '1.0'; + $schema_v1->deploy; + } + is($schema_v1->get_db_version(), '1.0', 'get_db_version 1.0 ok'); +} + +# add a "harmless" comment before one of the statements. +system( qq($^X -pi -e "s/ALTER/-- this is a comment\nALTER/" $fn->{trans_v23};) ); + +# Then attempt v1 -> v3 upgrade +{ + local $SIG{__WARN__} = sub { warn if $_[0] !~ /Attempting upgrade\.$/ }; + $schema_v3->upgrade(); + is($schema_v3->get_db_version(), '3.0', 'db version number upgraded to 3.0'); + + # make sure that the column added after the comment is actually added. + lives_ok ( sub { + $schema_v3->storage->dbh->do('select ExtraColumn from TestVersion'); + }, 'new column created'); +} + + # check behaviour of DBIC_NO_VERSION_CHECK env var and ignore_version connect attr { my $schema_version = DBICVersion::Schema->connect($dsn, $user, $pass); @@ -193,10 +219,7 @@ my $schema_v3 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_versio } # attempt a deploy/upgrade cycle within one second -TODO: { - - local $TODO = 'To fix this properly the table must be extended with an autoinc column, mst will not accept anything less'; - +{ eval { $schema_v2->storage->dbh->do('drop table ' . $version_table_name) }; eval { $schema_v2->storage->dbh->do('drop table ' . $old_table_name) }; eval { $schema_v2->storage->dbh->do('drop table TestVersion') }; @@ -204,7 +227,7 @@ TODO: { # this attempts to sleep until the turn of the second my $t = time(); sleep (int ($t) + 1 - $t); - diag ('Fast deploy/upgrade start: ', time() ); + note ('Fast deploy/upgrade start: ', time() ); { local $DBICVersion::Schema::VERSION = '2.0'; @@ -217,6 +240,33 @@ TODO: { is($schema_v2->get_db_version(), '3.0', 'Fast deploy/upgrade'); }; +# Check that it Schema::Versioned deals with new/all forms of connect arguments. +{ + my $get_db_version_run = 0; + + no warnings qw/once redefine/; + local *DBIx::Class::Schema::Versioned::get_db_version = sub { + $get_db_version_run = 1; + return $_[0]->schema_version; + }; + + # Make sure the env var isn't whats triggering it + local $ENV{DBIC_NO_VERSION_CHECK} = 0; + + DBICVersion::Schema->connect({ + dsn => $dsn, + user => $user, + pass => $pass, + ignore_version => 1 + }); + + ok($get_db_version_run == 0, "attributes pulled from hashref connect_info"); + $get_db_version_run = 0; + + DBICVersion::Schema->connect( $dsn, $user, $pass, { ignore_version => 1 } ); + ok($get_db_version_run == 0, "attributes pulled from list connect_info"); +} + unless ($ENV{DBICTEST_KEEP_VERSIONING_DDL}) { unlink $_ for (values %$fn); }