X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F94versioning.t;h=93fcca7faee264568816a2b1042f81830d4ee219;hb=052a832c5f6fe0f82a4db48e176525f700c44159;hp=685809b032cf934d85d190fb67fd7b50b195e0fb;hpb=2527233b404455c2114f90da8041f42cd957f541;p=dbsrgits%2FDBIx-Class.git diff --git a/t/94versioning.t b/t/94versioning.t index 685809b..93fcca7 100644 --- a/t/94versioning.t +++ b/t/94versioning.t @@ -1,15 +1,18 @@ -#!/usr/bin/perl - use strict; use warnings; + use Test::More; use Test::Warn; use Test::Exception; use Path::Class; use File::Copy; +use Time::HiRes qw/time sleep/; + +use lib qw(t/lib); +use DBICTest; +use DBIx::Class::_Util 'sigwarn_silencer'; -#warn "$dsn $user $pass"; my ($dsn, $user, $pass); BEGIN { @@ -18,26 +21,31 @@ 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; plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('deploy') - unless DBIx::Class::Optional::Dependencies->req_ok_for ('deploy') + unless DBIx::Class::Optional::Dependencies->req_ok_for ('deploy'); + + plan skip_all => + 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_rdbms_mysql') + unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_rdbms_mysql'); } -use lib qw(t/lib); -use DBICTest; # do not remove even though it is not used +# this is just to grab a lock +{ + my $s = DBICTest::Schema->connect($dsn, $user, $pass); +} + +# in case it came from the env +$ENV{DBIC_NO_VERSION_CHECK} = 0; use_ok('DBICVersion_v1'); my $version_table_name = 'dbix_class_schema_versions'; my $old_table_name = 'SchemaVersions'; -my $ddl_dir = dir ('t', 'var'); -mkdir ($ddl_dir) unless -d $ddl_dir; +my $ddl_dir = dir(qw/t var/, "versioning_ddl-$$"); +$ddl_dir->mkpath unless -d $ddl_dir; my $fn = { v1 => $ddl_dir->file ('DBICVersion-Schema-1.0-MySQL.sql'), @@ -90,8 +98,8 @@ my $schema_v2 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_versio warnings_exist ( sub { $schema_v2->create_ddl_dir('MySQL', '2.0', $ddl_dir, '1.0') }, [ - qr/Overwriting existing DDL file - $fn->{v2}/, - qr/Overwriting existing diff file - $fn->{trans_v12}/, + qr/Overwriting existing DDL file - \Q$fn->{v2}\E/, + qr/Overwriting existing diff file - \Q$fn->{trans_v12}\E/, ], 'An overwrite warning generated for both the DDL and the diff', ); @@ -160,11 +168,46 @@ my $schema_v3 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_versio # attempt v1 -> v3 upgrade { - local $SIG{__WARN__} = sub { warn if $_[0] !~ /Attempting upgrade\.$/ }; + local $SIG{__WARN__} = sigwarn_silencer( qr/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. +{ + my ($perl) = $^X =~ /(.+)/; + local $ENV{PATH}; + system( qq($perl -pi.bak -e "s/ALTER/-- this is a comment\nALTER/" $fn->{trans_v23}) ); +} + +# Then attempt v1 -> v3 upgrade +{ + local $SIG{__WARN__} = sigwarn_silencer( qr/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); @@ -208,14 +251,44 @@ my $schema_v3 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_versio $schema_v2->deploy; } - local $SIG{__WARN__} = sub { warn if $_[0] !~ /Attempting upgrade\.$/ }; + local $SIG{__WARN__} = sigwarn_silencer( qr/Attempting upgrade\.$/ ); + $schema_v2->upgrade(); is($schema_v2->get_db_version(), '3.0', 'Fast deploy/upgrade'); }; -unless ($ENV{DBICTEST_KEEP_VERSIONING_DDL}) { - unlink $_ for (values %$fn); +# 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"); +} + +END { + unless ($ENV{DBICTEST_KEEP_VERSIONING_DDL}) { + $ddl_dir->rmtree; + } } done_testing;