X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F99dbic_sqlt_parser.t;h=6f3a3e21b7f10571202c4bea42b1e0f0c2561675;hb=177e39a7fb1ba1146303ccc6aaa5b9dae83bf559;hp=26d6b5068ff0db24c650a5aea29a4ed4930efd4e;hpb=c4d239930f5d96be7ddccdb59ff07ff1bd43698d;p=dbsrgits%2FDBIx-Class.git diff --git a/t/99dbic_sqlt_parser.t b/t/99dbic_sqlt_parser.t index 26d6b50..6f3a3e2 100644 --- a/t/99dbic_sqlt_parser.t +++ b/t/99dbic_sqlt_parser.t @@ -6,19 +6,27 @@ use lib qw(t/lib); use DBICTest; BEGIN { - eval "use DBD::mysql; use SQL::Translator 0.09;"; - plan $@ - ? ( skip_all => 'needs DBD::mysql and SQL::Translator 0.09 for testing' ) - : ( tests => 114 ); + require DBIx::Class; + plan skip_all => + 'Test needs SQL::Translator ' . DBIx::Class->_sqlt_minimum_version + if not DBIx::Class->_sqlt_version_ok; } my $schema = DBICTest->init_schema(); +# 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 +; { 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; @@ -31,8 +39,8 @@ my $schema = DBICTest->init_schema(); { 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; @@ -45,8 +53,8 @@ my $schema = DBICTest->init_schema(); { 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); @@ -54,6 +62,8 @@ my $schema = DBICTest->init_schema(); } } +done_testing; + sub create_schema { my $args = shift; @@ -72,3 +82,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); +}