X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F86sqlt.t;h=65f2dc805dea96e894e5f65b32fe5813ce94129b;hb=7b1bb27ec700d9da2eccd5d57dc4e16065a32819;hp=4b00fdaa30be6ceb84c41ae5ce06953723bbf35b;hpb=f89bb832611636e21c2f2fdde0dcda13b264442f;p=dbsrgits%2FDBIx-Class.git diff --git a/t/86sqlt.t b/t/86sqlt.t index 4b00fda..65f2dc8 100644 --- a/t/86sqlt.t +++ b/t/86sqlt.t @@ -8,9 +8,29 @@ use DBICTest; eval "use SQL::Translator"; plan skip_all => 'SQL::Translator required' if $@; -my $schema = DBICTest->init_schema; +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 + -plan tests => 132; my $translator = SQL::Translator->new( parser_args => { @@ -26,16 +46,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 ($sqlt_table->schema->translator->producer_type =~ /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 +55,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 @@ -155,7 +170,7 @@ my %fk_constraints = ( 'name' => 'artist_undirected_map_fk_id2', 'index_name' => 'artist_undirected_map_idx_id2', 'selftable' => 'artist_undirected_map', 'foreigntable' => 'artist', 'selfcols' => ['id2'], 'foreigncols' => ['artistid'], - on_delete => '', on_update => 'CASCADE', deferrable => 1, + on_delete => '', on_update => '', deferrable => 1, }, ], @@ -210,7 +225,7 @@ my %fk_constraints = ( 'name' => 'bookmark_fk_link', 'index_name' => 'bookmark_idx_link', 'selftable' => 'bookmark', 'foreigntable' => 'link', 'selfcols' => ['link'], 'foreigncols' => ['id'], - on_delete => '', on_update => '', deferrable => 1, + on_delete => 'SET NULL', on_update => 'CASCADE', deferrable => 1, }, ], # ForceForeign @@ -282,6 +297,18 @@ my $tschema = $translator->schema(); # the 'dummy' table ok( !defined($tschema->get_table('dummy')), "Dummy table was removed by hook"); +# Test that the Artist resultsource sqlt_deploy_hook was called okay and added +# an index +SKIP: { + skip ('Artist sqlt_deploy_hook is only called with an SQLite backend', 1) + if $schema->storage->sqlt_type ne 'SQLite'; + + ok( ( grep + { $_->name eq 'artist_name_hookidx' } + $tschema->get_table('artist')->get_indices + ), 'sqlt_deploy_hook fired within a resultsource'); +} + # Test that nonexistent constraints are not found my $constraint = get_constraint('FOREIGN KEY', 'cd', ['title'], 'cd', ['year']); ok( !defined($constraint), 'nonexistent FOREIGN KEY constraint not found' ); @@ -427,3 +454,5 @@ sub test_unique { is( $got->name, $expected->{name}, "name parameter correct for `$desc'" ); } + +done_testing;