X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F94versioning.t;h=865ac26279db280cc1515d02e1e79298b5d7d546;hb=af1f4f842ae446a3339b92b33851ea80c928f17a;hp=a21141a65fb93043ac472fe28f7cec03f2d2c6a0;hpb=68de943862f06cabd397d2e74d12cd9cdc999779;p=dbsrgits%2FDBIx-Class.git diff --git a/t/94versioning.t b/t/94versioning.t index a21141a..865ac26 100644 --- a/t/94versioning.t +++ b/t/94versioning.t @@ -5,6 +5,13 @@ 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; # do not remove even though it is not used + my ($dsn, $user, $pass); BEGIN { @@ -16,15 +23,12 @@ BEGIN { 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'); -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 + 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_ok('DBICVersion_v1'); @@ -85,8 +89,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', ); @@ -155,7 +159,7 @@ 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__} = sub { warn $_[0] if $_[0] !~ /Attempting upgrade\.$/ }; $schema_v3->upgrade(); is($schema_v3->get_db_version(), '3.0', 'db version number upgraded'); } @@ -176,11 +180,11 @@ my $schema_v3 = DBICVersion::Schema->connect($dsn, $user, $pass, { ignore_versio } # add a "harmless" comment before one of the statements. -system( qq($^X -pi -e "s/ALTER/-- this is a comment\nALTER/" $fn->{trans_v23};) ); +system( qq($^X -pi.bak -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\.$/ }; + local $SIG{__WARN__} = sub { warn $_[0] if $_[0] !~ /Attempting upgrade\.$/ }; $schema_v3->upgrade(); is($schema_v3->get_db_version(), '3.0', 'db version number upgraded to 3.0'); @@ -234,7 +238,7 @@ system( qq($^X -pi -e "s/ALTER/-- this is a comment\nALTER/" $fn->{trans_v23};) $schema_v2->deploy; } - local $SIG{__WARN__} = sub { warn if $_[0] !~ /Attempting upgrade\.$/ }; + local $SIG{__WARN__} = sub { warn $_[0] if $_[0] !~ /Attempting upgrade\.$/ }; $schema_v2->upgrade(); is($schema_v2->get_db_version(), '3.0', 'Fast deploy/upgrade'); @@ -255,11 +259,11 @@ system( qq($^X -pi -e "s/ALTER/-- this is a comment\nALTER/" $fn->{trans_v23};) DBICVersion::Schema->connect({ dsn => $dsn, - user => $user, + user => $user, pass => $pass, ignore_version => 1 }); - + ok($get_db_version_run == 0, "attributes pulled from hashref connect_info"); $get_db_version_run = 0;