X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F86sqlt.t;h=e710ec18306dbc1818ebb20c7f56ac547795a349;hb=30ae562b00055d0d5943022b1ffd6cc78736ea43;hp=5ccf908862da558459d7f71c69dd41ff0a1f2ec6;hpb=c383973627b1d23e248d854025baf1fcf00ff63c;p=dbsrgits%2FDBIx-Class.git diff --git a/t/86sqlt.t b/t/86sqlt.t index 5ccf908..e710ec1 100644 --- a/t/86sqlt.t +++ b/t/86sqlt.t @@ -5,12 +5,66 @@ 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::Storage::DBI; + plan skip_all => + 'Test needs SQL::Translator ' . DBIx::Class::Storage::DBI->_sqlt_minimum_version + if not DBIx::Class::Storage::DBI->_sqlt_version_ok; +} + +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)" + ); +} + + + +# 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 => 160; my $translator = SQL::Translator->new( parser_args => { @@ -19,14 +73,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 $output = $translator->translate(); + my $relinfo = $schema->source('Artist')->relationship_info ('cds'); + local $relinfo->{attrs}{on_delete} = 'restrict'; -ok($output, "SQLT produced someoutput") - or diag($translator->error); + $translator->parser('SQL::Translator::Parser::DBIx::Class'); + $translator->producer('SQLite'); + + my $output = $translator->translate(); + + 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 @@ -43,6 +112,7 @@ my %fk_constraints = ( '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, }, { @@ -58,13 +128,13 @@ my %fk_constraints = ( fourkeys_to_twokeys => [ { 'display' => 'fourkeys_to_twokeys->twokeys', - 'name' => 'fourkeys_to_twokeys_fk_t_artist_t_cd', 'index_name' => 't_artist_t_cd', + '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_bar_f_hello_f_goodbye', + '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)], @@ -127,14 +197,14 @@ my %fk_constraints = ( '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' => '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, }, ], @@ -153,9 +223,9 @@ my %fk_constraints = ( treelike => [ { 'display' => 'treelike->treelike for parent', - 'name' => 'treelike_fk_parent_fk', 'index_name' => 'parent_fk', + 'name' => 'treelike_fk_parent', 'index_name' => 'treelike_idx_parent', 'selftable' => 'treelike', 'foreigntable' => 'treelike', - 'selfcols' => ['parent_fk'], 'foreigncols' => ['id'], + 'selfcols' => ['parent'], 'foreigncols' => ['id'], on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1, }, ], @@ -189,7 +259,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 @@ -202,36 +272,6 @@ my %fk_constraints = ( on_delete => '', on_update => '', deferrable => 1, }, ], - - # LongColumns - long_columns => [ - { - 'display' => 'long_columns->owner', - 'name' => 'long_columns_fk__64_character_column_aaaaaaaaaaaaaaaaaa_cfc8d5b0', - 'index_name' => 'long_columns_idx__64_character_column_aaaaaaaaaaaaaaaaa_5050aa42', - 'selftable' => 'long_columns', 'foreigntable' => 'long_columns', - 'selfcols' => ['_64_character_column_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'], - 'foreigncols' => ['lcid'], - on_delete => '', on_update => '', deferrable => 1, - }, - { - 'display' => 'long_columns->owner2', - 'name' => 'long_columns_fk__32_character_column_bbbbbbbbbbb__32_ch_b7ee284e', - 'index_name' => '_32_character_column_bbbbbbbbbbb__32_character_column_a_76863ce2', - 'selftable' => 'long_columns', 'foreigntable' => 'long_columns', - 'selfcols' => ['_32_character_column_bbbbbbbbbbb', '_32_character_column_aaaaaaaaaaa'], - 'foreigncols' => ['_32_character_column_aaaaaaaaaaa', '_32_character_column_bbbbbbbbbbb'], - on_delete => '', on_update => '', deferrable => 1, - }, - { - 'display' => 'long_columns->owner3', - 'name' => 'long_columns_fk__16_chars_column', - 'index_name' => 'long_columns_idx__16_chars_column', - 'selftable' => 'long_columns', 'foreigntable' => 'long_columns', - 'selfcols' => ['_16_chars_column'], 'foreigncols' => ['_8_chr_c'], - on_delete => '', on_update => '', deferrable => 1, - }, - ], ); my %unique_constraints = ( @@ -253,29 +293,6 @@ my %unique_constraints = ( }, ], - long_columns => [ - { - 'display' => 'long but not quite truncated unique', - 'name' => 'long_columns__16_chars_column__32_character_column_aaaaaaaaaaa', - 'table' => 'long_columns', 'cols' => [qw( _32_character_column_aaaaaaaaaaa _16_chars_column )], - }, - { - 'display' => 'multi column truncated unique', - 'name' => 'long_columns__8_chr_c__16_chars_column__32_character_co_004ce318', - 'table' => 'long_columns', 'cols' => [qw( _32_character_column_aaaaaaaaaaa _16_chars_column _8_chr_c )], - }, - { - 'display' => 'different multi column truncated unique with same base', - 'name' => 'long_columns__8_chr_c__16_chars_column__32_character_co_25773323', - 'table' => 'long_columns', 'cols' => [qw( _32_character_column_bbbbbbbbbbb _16_chars_column _8_chr_c )], - }, - { - 'display' => 'single column truncated unique', - 'name' => 'long_columns__64_character_column_aaaaaaaaaaaaaaaaaaaaa_0acf5172', - 'table' => 'long_columns', 'cols' => ['_64_character_column_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'], - }, - ], - # TwoKeyTreeLike twokeytreelike => [ { @@ -301,7 +318,12 @@ my %indexes = ( { 'fields' => ['name'] }, - ] + ], + track => [ + { + 'fields' => ['title'] + } + ], ); my $tschema = $translator->schema(); @@ -309,6 +331,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' ); @@ -343,7 +377,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 +397,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; @@ -439,8 +473,13 @@ sub test_fk { "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 { @@ -449,3 +488,5 @@ sub test_unique { is( $got->name, $expected->{name}, "name parameter correct for `$desc'" ); } + +done_testing;