X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F86sqlt.t;h=3430cec8c3abe339ed601b61bea03f506cfca332;hb=26148d36e66d7f7c67863cea8d6501739b765692;hp=513a9b6e421f50e6a59fe34b90073b7a4aa8fe11;hpb=0da8b7da7a9df7b84e9a3228cd1f5feb1d65bb07;p=dbsrgits%2FDBIx-Class.git diff --git a/t/86sqlt.t b/t/86sqlt.t index 513a9b6..3430cec 100644 --- a/t/86sqlt.t +++ b/t/86sqlt.t @@ -5,12 +5,81 @@ 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 ' . DBIx::Class::Optional::Dependencies->req_missing_for ('deploy') + unless DBIx::Class::Optional::Dependencies->req_ok_for ('deploy') +} + +my $custom_deployment_statements_called = 0; + +sub DBICTest::Schema::deployment_statements { + $custom_deployment_statements_called = 1; + my $self = shift; + return $self->next::method(@_); +} + +my $schema = DBICTest->init_schema (no_deploy => 1); + + +# Check deployment statements ctx sensitivity +{ + my $not_first_table_creation_re = qr/CREATE TABLE fourkeys_to_twokeys/; + + + my $statements = $schema->deployment_statements; + like ( + $statements, + $not_first_table_creation_re, + 'All create statements returned in 1 string in scalar ctx' + ); + + my @statements = $schema->deployment_statements; + cmp_ok (scalar @statements, '>', 1, 'Multiple statement lines in array ctx'); + + my $i = 0; + while ($i <= $#statements) { + last if $statements[$i] =~ $not_first_table_creation_re; + $i++; + } + + ok ( + ($i > 0) && ($i <= $#statements), + "Creation statement was found somewherere within array ($i)" + ); +} + + -my $schema = DBICTest->init_schema; +{ + my $deploy_hook_called = 0; + + # replace the sqlt calback with a custom version ading an index + $schema->source('Track')->sqlt_deploy_callback(sub { + my ($self, $sqlt_table) = @_; + + $deploy_hook_called = 1; + + 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 + ok($deploy_hook_called, 'deploy hook got called'); + ok($custom_deployment_statements_called, '->deploy used the schemas deploy_statements method'); +} -plan tests => 160; my $translator = SQL::Translator->new( parser_args => { @@ -19,14 +88,29 @@ my $translator = SQL::Translator->new( producer_args => {}, ); -$translator->parser('SQL::Translator::Parser::DBIx::Class'); -$translator->producer('SQLite'); +{ + my $warn = ''; + local $SIG{__WARN__} = sub { $warn = shift }; + + my $relinfo = $schema->source('Artist')->relationship_info ('cds'); + local $relinfo->{attrs}{on_delete} = 'restrict'; + + + $translator->parser('SQL::Translator::Parser::DBIx::Class'); + $translator->producer('SQLite'); -my $output = $translator->translate(); + my $output = $translator->translate(); + ok($output, "SQLT produced someoutput") + or diag($translator->error); -ok($output, "SQLT produced someoutput") - or diag($translator->error); + + 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 # more exist in the Schema than are listed here and all listed constraints are @@ -40,14 +124,15 @@ my %fk_constraints = ( twokeys => [ { 'display' => 'twokeys->cd', - 'name' => 'twokeys_fk_cd', 'index_name' => 'cd', + 'name' => 'twokeys_fk_cd', 'index_name' => 'twokeys_idx_cd', 'selftable' => 'twokeys', 'foreigntable' => 'cd', 'selfcols' => ['cd'], 'foreigncols' => ['cdid'], + 'noindex' => 1, on_delete => '', on_update => '', deferrable => 0, }, { 'display' => 'twokeys->artist', - 'name' => 'twokeys_fk_artist', 'index_name' => 'artist', + 'name' => 'twokeys_fk_artist', 'index_name' => 'twokeys_idx_artist', 'selftable' => 'twokeys', 'foreigntable' => 'artist', 'selfcols' => ['artist'], 'foreigncols' => ['artistid'], on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1, @@ -58,14 +143,14 @@ my %fk_constraints = ( fourkeys_to_twokeys => [ { 'display' => 'fourkeys_to_twokeys->twokeys', - 'name' => 'fourkeys_to_twokeys_fk_t_cd_t_artist', 'index_name' => 't_cd_t_artist', + 'name' => 'fourkeys_to_twokeys_fk_t_artist_t_cd', 'index_name' => 'fourkeys_to_twokeys_idx_t_artist_t_cd', 'selftable' => 'fourkeys_to_twokeys', 'foreigntable' => 'twokeys', 'selfcols' => ['t_artist', 't_cd'], 'foreigncols' => ['artist', 'cd'], on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1, }, { - 'display' => 'fourkeys_to_twokeys->fourkeys', 'index_name' => 'f_foo_f_goodbye_f_hello_f_bar', - 'name' => 'fourkeys_to_twokeys_fk_f_foo_f_goodbye_f_hello_f_bar', + 'display' => 'fourkeys_to_twokeys->fourkeys', 'index_name' => 'fourkeys_to_twokeys_idx_f_foo_f_bar_f_hello_f_goodbye', + 'name' => 'fourkeys_to_twokeys_fk_f_foo_f_bar_f_hello_f_goodbye', 'selftable' => 'fourkeys_to_twokeys', 'foreigntable' => 'fourkeys', 'selfcols' => [qw(f_foo f_bar f_hello f_goodbye)], 'foreigncols' => [qw(foo bar hello goodbye)], @@ -77,14 +162,14 @@ my %fk_constraints = ( cd_to_producer => [ { 'display' => 'cd_to_producer->cd', - 'name' => 'cd_to_producer_fk_cd', 'index_name' => 'cd', + 'name' => 'cd_to_producer_fk_cd', 'index_name' => 'cd_to_producer_idx_cd', 'selftable' => 'cd_to_producer', 'foreigntable' => 'cd', 'selfcols' => ['cd'], 'foreigncols' => ['cdid'], on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1, }, { 'display' => 'cd_to_producer->producer', - 'name' => 'cd_to_producer_fk_producer', 'index_name' => 'producer', + 'name' => 'cd_to_producer_fk_producer', 'index_name' => 'cd_to_producer_idx_producer', 'selftable' => 'cd_to_producer', 'foreigntable' => 'producer', 'selfcols' => ['producer'], 'foreigncols' => ['producerid'], on_delete => '', on_update => '', deferrable => 1, @@ -95,14 +180,14 @@ my %fk_constraints = ( self_ref_alias => [ { 'display' => 'self_ref_alias->self_ref for self_ref', - 'name' => 'self_ref_alias_fk_self_ref', 'index_name' => 'self_ref', + 'name' => 'self_ref_alias_fk_self_ref', 'index_name' => 'self_ref_alias_idx_self_ref', 'selftable' => 'self_ref_alias', 'foreigntable' => 'self_ref', 'selfcols' => ['self_ref'], 'foreigncols' => ['id'], on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1, }, { 'display' => 'self_ref_alias->self_ref for alias', - 'name' => 'self_ref_alias_fk_alias', 'index_name' => 'alias', + 'name' => 'self_ref_alias_fk_alias', 'index_name' => 'self_ref_alias_idx_alias', 'selftable' => 'self_ref_alias', 'foreigntable' => 'self_ref', 'selfcols' => ['alias'], 'foreigncols' => ['id'], on_delete => '', on_update => '', deferrable => 1, @@ -113,7 +198,7 @@ my %fk_constraints = ( cd => [ { 'display' => 'cd->artist', - 'name' => 'cd_fk_artist', 'index_name' => 'artist', + 'name' => 'cd_fk_artist', 'index_name' => 'cd_idx_artist', 'selftable' => 'cd', 'foreigntable' => 'artist', 'selfcols' => ['artist'], 'foreigncols' => ['artistid'], on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1, @@ -124,17 +209,17 @@ my %fk_constraints = ( artist_undirected_map => [ { 'display' => 'artist_undirected_map->artist for id1', - 'name' => 'artist_undirected_map_fk_id1', 'index_name' => 'id1', + 'name' => 'artist_undirected_map_fk_id1', 'index_name' => 'artist_undirected_map_idx_id1', 'selftable' => 'artist_undirected_map', 'foreigntable' => 'artist', 'selfcols' => ['id1'], 'foreigncols' => ['artistid'], - on_delete => 'CASCADE', on_update => '', deferrable => 1, + on_delete => 'RESTRICT', on_update => 'CASCADE', deferrable => 1, }, { 'display' => 'artist_undirected_map->artist for id2', - 'name' => 'artist_undirected_map_fk_id2', 'index_name' => 'id2', + '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 => 'CASCADE', on_update => '', deferrable => 1, + on_delete => '', on_update => '', deferrable => 1, }, ], @@ -142,7 +227,7 @@ my %fk_constraints = ( track => [ { 'display' => 'track->cd', - 'name' => 'track_fk_cd', 'index_name' => 'cd', + 'name' => 'track_fk_cd', 'index_name' => 'track_idx_cd', 'selftable' => 'track', 'foreigntable' => 'cd', 'selfcols' => ['cd'], 'foreigncols' => ['cdid'], on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1, @@ -153,7 +238,7 @@ my %fk_constraints = ( treelike => [ { 'display' => 'treelike->treelike for parent', - 'name' => 'treelike_fk_parent', 'index_name' => 'parent', + 'name' => 'treelike_fk_parent', 'index_name' => 'treelike_idx_parent', 'selftable' => 'treelike', 'foreigntable' => 'treelike', 'selfcols' => ['parent'], 'foreigncols' => ['id'], on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1, @@ -164,7 +249,7 @@ my %fk_constraints = ( twokeytreelike => [ { 'display' => 'twokeytreelike->twokeytreelike for parent1,parent2', - 'name' => 'twokeytreelike_fk_parent1_parent2', 'index_name' => 'parent1_parent2', + 'name' => 'twokeytreelike_fk_parent1_parent2', 'index_name' => 'twokeytreelike_idx_parent1_parent2', 'selftable' => 'twokeytreelike', 'foreigntable' => 'twokeytreelike', 'selfcols' => ['parent1', 'parent2'], 'foreigncols' => ['id1','id2'], on_delete => '', on_update => '', deferrable => 1, @@ -175,7 +260,7 @@ my %fk_constraints = ( tags => [ { 'display' => 'tags->cd', - 'name' => 'tags_fk_cd', 'index_name' => 'cd', + 'name' => 'tags_fk_cd', 'index_name' => 'tags_idx_cd', 'selftable' => 'tags', 'foreigntable' => 'cd', 'selfcols' => ['cd'], 'foreigncols' => ['cdid'], on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1, @@ -186,49 +271,20 @@ my %fk_constraints = ( bookmark => [ { 'display' => 'bookmark->link', - 'name' => 'bookmark_fk_link', 'index_name' => 'link', + '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 forceforeign => [ { 'display' => 'forceforeign->artist', - 'name' => 'forceforeign_fk_artist', 'index_name' => 'artist', + 'name' => 'forceforeign_fk_artist', 'index_name' => 'forceforeign_idx_artist', 'selftable' => 'forceforeign', 'foreigntable' => 'artist', - 'selfcols' => ['artist'], 'foreigncols' => ['artist_id'], - on_delete => '', on_update => '', deferrable => 1, - }, - ], - - # LongColumns - long_columns => [ - { - 'display' => 'long_columns->owner', - 'name' => 'long_columns_fk_64_character_column_aaaaaaaaaaaaaaaaaaa_1ca973e2', - 'index_name' => '64_character_column_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', - 'selftable' => 'long_columns', 'foreigntable' => 'long_columns', - 'selfcols' => ['64_character_column_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'], - 'foreigncols' => ['lcid'], - on_delete => '', on_update => '', deferrable => 1, - }, - { - 'display' => 'long_columns->owner2', - 'name' => 'long_columns_fk_32_character_column_aaaaaaaaaaaa_32_cha_6060a8f3', - 'index_name' => '32_character_column_aaaaaaaaaaaa_32_character_column_bb_30f7a7fe', - 'selftable' => 'long_columns', 'foreigntable' => 'long_columns', - 'selfcols' => ['32_character_column_bbbbbbbbbbbb', '32_character_column_aaaaaaaaaaaa'], - 'foreigncols' => ['32_character_column_aaaaaaaaaaaa', '32_character_column_bbbbbbbbbbbb'], - on_delete => '', on_update => '', deferrable => 1, - }, - { - 'display' => 'long_columns->owner3', - 'name' => 'long_columns_fk_16_character_col', - 'index_name' => '16_character_col', - 'selftable' => 'long_columns', 'foreigntable' => 'long_columns', - 'selfcols' => ['16_character_col'], 'foreigncols' => ['8_char_c'], + 'selfcols' => ['artist'], 'foreigncols' => ['artistid'], + 'noindex' => 1, on_delete => '', on_update => '', deferrable => 1, }, ], @@ -253,29 +309,6 @@ my %unique_constraints = ( }, ], - long_columns => [ - { - 'display' => 'long but not quite truncated unique', - 'name' => 'long_columns_16_character_col_32_character_column_aaaaaaaaaaaa', - 'table' => 'long_columns', 'cols' => [qw( 32_character_column_aaaaaaaaaaaa 16_character_col )], - }, - { - 'display' => 'multi column truncated unique', - 'name' => 'long_columns_8_char_c_16_character_col_32_character_col_ee4a438c', - 'table' => 'long_columns', 'cols' => [qw( 32_character_column_aaaaaaaaaaaa 16_character_col 8_char_c )], - }, - { - 'display' => 'different multi column truncated unique with same base', - 'name' => 'long_columns_8_char_c_16_character_col_32_character_col_c5dbc7a7', - 'table' => 'long_columns', 'cols' => [qw( 32_character_column_bbbbbbbbbbbb 16_character_col 8_char_c )], - }, - { - 'display' => 'single column truncated unique', - 'name' => 'long_columns_64_character_column_aaaaaaaaaaaaaaaaaaaaaa_095dc664', - 'table' => 'long_columns', 'cols' => ['64_character_column_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'], - }, - ], - # TwoKeyTreeLike twokeytreelike => [ { @@ -301,13 +334,30 @@ my %indexes = ( { 'fields' => ['name'] }, - ] + ], + track => [ + { + 'fields' => ['title'] + } + ], ); my $tschema = $translator->schema(); # Test that the $schema->sqlt_deploy_hook was called okay and that it removed -# the 'link' table -ok( !defined($tschema->get_table('link')), "Link table was removed by hook"); +# 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']); @@ -343,7 +393,6 @@ for my $expected_constraints (keys %unique_constraints) { for my $table_index (keys %indexes) { for my $expected_index ( @{ $indexes{$table_index} } ) { - ok ( get_index($table_index, $expected_index), "Got a matching index on $table_index table"); } } @@ -364,6 +413,7 @@ sub get_constraint { my %fields = map { $_ => 1 } @$cols; my %f_fields = map { $_ => 1 } @$f_cols; + die "No $table_name" unless $table; CONSTRAINT: for my $constraint ( $table->get_constraints ) { next unless $constraint->type eq $type; @@ -430,22 +480,29 @@ sub test_fk { my ($expected, $got) = @_; my $desc = $expected->{display}; is( $got->name, $expected->{name}, - "name parameter correct for `$desc'" ); + "name parameter correct for '$desc'" ); is( $got->on_delete, $expected->{on_delete}, - "on_delete parameter correct for `$desc'" ); + "on_delete parameter correct for '$desc'" ); is( $got->on_update, $expected->{on_update}, - "on_update parameter correct for `$desc'" ); + "on_update parameter correct for '$desc'" ); is( $got->deferrable, $expected->{deferrable}, - "is_deferrable parameter correct for `$desc'" ); + "is_deferrable parameter correct for '$desc'" ); my $index = get_index( $got->table, { fields => $expected->{selfcols} } ); - ok( defined $index, "index exists for `$desc'" ); - is( $index->name, $expected->{index_name}, "index has correct name for `$desc'" ); + + if ($expected->{noindex}) { + ok( !defined $index, "index doesn't for '$desc'" ); + } else { + ok( defined $index, "index exists for '$desc'" ); + is( $index->name, $expected->{index_name}, "index has correct name for '$desc'" ); + } } sub test_unique { my ($expected, $got) = @_; my $desc = $expected->{display}; is( $got->name, $expected->{name}, - "name parameter correct for `$desc'" ); + "name parameter correct for '$desc'" ); } + +done_testing;