X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F94versioning.t;h=146c7c31fa8919a7d9a71c19c34b9698c9d7cb44;hb=97e130fa48aca5a1255b7014b4cbcb0c30c95328;hp=a2e4007fcf8e7c5854b398929af2a126f9c9f576;hpb=70c288086248e5a4008490df22a56632341f2473;p=dbsrgits%2FDBIx-Class.git diff --git a/t/94versioning.t b/t/94versioning.t index a2e4007..146c7c3 100644 --- a/t/94versioning.t +++ b/t/94versioning.t @@ -10,7 +10,7 @@ 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 DBICTest; my ($dsn, $user, $pass); @@ -23,7 +23,16 @@ 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'); + + 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'); +} + +# this is just to grab a lock +{ + my $s = DBICTest::Schema->connect($dsn, $user, $pass); } use_ok('DBICVersion_v1'); @@ -31,8 +40,8 @@ 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'), @@ -85,8 +94,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', ); @@ -176,7 +185,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};) ); +{ + 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 { @@ -255,11 +268,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; @@ -267,8 +280,10 @@ system( qq($^X -pi -e "s/ALTER/-- this is a comment\nALTER/" $fn->{trans_v23};) ok($get_db_version_run == 0, "attributes pulled from list connect_info"); } -unless ($ENV{DBICTEST_KEEP_VERSIONING_DDL}) { - unlink $_ for (values %$fn); +END { + unless ($ENV{DBICTEST_KEEP_VERSIONING_DDL}) { + $ddl_dir->rmtree; + } } done_testing;