X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F86sqlt.t;h=196243133532ece89a6b00ff32f6221068d87862;hb=ee9f372c2a8baeca71c3a4affb6869d2ceeff419;hp=c033113838f0dfccdfcdc1d68ecab6eb694bc148;hpb=b230b4bee9367c652bc213f09053386a5f9aeb12;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/86sqlt.t b/t/86sqlt.t index c033113..1962431 100644 --- a/t/86sqlt.t +++ b/t/86sqlt.t @@ -5,12 +5,36 @@ use Test::More; use lib qw(t/lib); use DBICTest; -eval "use SQL::Translator"; -plan skip_all => 'SQL::Translator required' if $@; +BEGIN { + require DBIx::Class; + plan skip_all => + 'Test needs SQL::Translator ' . DBIx::Class->_sqlt_minimum_version + if not DBIx::Class->_sqlt_version_ok; +} + +my $schema = DBICTest->init_schema (no_deploy => 1); + +# replace the sqlt calback with a custom version ading an index +$schema->source('Track')->sqlt_deploy_callback(sub { + my ($self, $sqlt_table) = @_; + + is ( + $sqlt_table->schema->translator->producer_type, + join ('::', 'SQL::Translator::Producer', $schema->storage->sqlt_type), + 'Production type passed to translator object', + ); + + if ($schema->storage->sqlt_type eq 'SQLite' ) { + $sqlt_table->add_index( name => 'track_title', fields => ['title'] ) + or die $sqlt_table->error; + } + + $self->default_sqlt_deploy_hook($sqlt_table); +}); + +$schema->deploy; # do not remove, this fires the is() test in the callback above -my $schema = DBICTest->init_schema; -plan tests => 133; my $translator = SQL::Translator->new( parser_args => { @@ -26,16 +50,6 @@ my $translator = SQL::Translator->new( my $relinfo = $schema->source('Artist')->relationship_info ('cds'); local $relinfo->{attrs}{on_delete} = 'restrict'; - $schema->source('Track')->sqlt_deploy_callback(sub { - my ($self, $sqlt_table) = @_; - - if ($schema->storage->sqlt_type eq 'SQLite' ) { - $sqlt_table->add_index( name => 'track_title', fields => ['title'] ) - or die $sqlt_table->error; - } - - $self->default_sqlt_deploy_hook($sqlt_table); - }); $translator->parser('SQL::Translator::Parser::DBIx::Class'); $translator->producer('SQLite'); @@ -45,7 +59,12 @@ my $translator = SQL::Translator->new( ok($output, "SQLT produced someoutput") or diag($translator->error); - like ($warn, qr/^SQLT attribute .+? was supplied for relationship/, 'Warn about dubious on_delete/on_update attributes'); + + like ( + $warn, + qr/SQLT attribute .+? was supplied for relationship .+? which does not appear to be a foreign constraint/, + 'Warn about dubious on_delete/on_update attributes', + ); } # Note that the constraints listed here are the only ones that are tested -- if @@ -439,3 +458,5 @@ sub test_unique { is( $got->name, $expected->{name}, "name parameter correct for `$desc'" ); } + +done_testing;