X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F86sqlt.t;h=8211c9046006c5cbac7f9b42627d424562fafd46;hb=70c49125fbb6ace2022621dc429f2815407940d9;hp=a83e413f564f7d4facf76e10a3aab930669318ad;hpb=f34cb1fdd136d65352df8757b6de7686ad3b84e5;p=dbsrgits%2FDBIx-Class.git diff --git a/t/86sqlt.t b/t/86sqlt.t index a83e413..8211c90 100644 --- a/t/86sqlt.t +++ b/t/86sqlt.t @@ -10,7 +10,7 @@ plan skip_all => 'SQL::Translator required' if $@; my $schema = DBICTest->init_schema; -plan tests => 160; +plan tests => 130; my $translator = SQL::Translator->new( parser_args => { @@ -43,6 +43,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, }, { @@ -153,9 +154,9 @@ my %fk_constraints = ( treelike => [ { 'display' => 'treelike->treelike for parent', - 'name' => 'treelike_fk_parent_fk', 'index_name' => 'treelike_idx_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, }, ], @@ -203,35 +204,6 @@ my %fk_constraints = ( }, ], - # 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' => 'long_columns_idx__32_character_column_bbbbbbbbbbb__32_c_82bf6e69', - '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 +225,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 => [ { @@ -364,6 +313,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 +389,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 {