X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F99dbic_sqlt_parser.t;h=5bbd30254d0c6849e051d349b83dd477e239e7c1;hb=27d619d8c3100065f87bdbcc7c1496cb2e5495c9;hp=ffb9005d085ecaa0dd2658bd4335c9d3b117f8f9;hpb=1dac6833ce9cfeddc5d0a57e30be7532145f3f4f;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/99dbic_sqlt_parser.t b/t/99dbic_sqlt_parser.t index ffb9005..5bbd302 100644 --- a/t/99dbic_sqlt_parser.t +++ b/t/99dbic_sqlt_parser.t @@ -7,20 +7,29 @@ use DBICTest; BEGIN { - eval "use DBD::mysql; use SQL::Translator 0.09;"; + eval "use SQL::Translator 0.09003;"; if ($@) { - plan skip_all => 'needs SQL::Translator 0.09 for testing'; + plan skip_all => 'needs SQL::Translator 0.09003 for testing'; } } my $schema = DBICTest->init_schema(); -plan tests => ($schema->sources * 3); +# Dummy was yanked out by the sqlt hook test +# CustomSql tests the horrific/deprecated ->name(\$sql) hack +# YearXXXXCDs are views +# +my @sources = grep + { $_ !~ /^ (?: Dummy | CustomSql | Year\d{4}CDs ) $/x } + $schema->sources +; + +plan tests => ( @sources * 3); { my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { } } }); - foreach my $source ($schema->sources) { - my $table = $sqlt_schema->get_table($schema->source($source)->from); + foreach my $source (@sources) { + my $table = get_table($sqlt_schema, $schema, $source); my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints); my @indices = $table->get_indices; @@ -33,8 +42,8 @@ plan tests => ($schema->sources * 3); { my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 1 } } }); - foreach my $source ($schema->sources) { - my $table = $sqlt_schema->get_table($schema->source($source)->from); + foreach my $source (@sources) { + my $table = get_table($sqlt_schema, $schema, $source); my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints); my @indices = $table->get_indices; @@ -47,8 +56,8 @@ plan tests => ($schema->sources * 3); { my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 0 } } }); - foreach my $source ($schema->sources) { - my $table = $sqlt_schema->get_table($schema->source($source)->from); + foreach my $source (@sources) { + my $table = get_table($sqlt_schema, $schema, $source); my @indices = $table->get_indices; my $index_count = scalar(@indices); @@ -74,3 +83,12 @@ sub create_schema { $sqlt->parser('SQL::Translator::Parser::DBIx::Class'); return $sqlt->translate({ data => $schema }) or die $sqlt->error; } + +sub get_table { + my ($sqlt_schema, $schema, $source) = @_; + + my $table_name = $schema->source($source)->from; + $table_name = $$table_name if ref $table_name; + + return $sqlt_schema->get_table($table_name); +}