X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F99dbic_sqlt_parser.t;h=da56fd5ca8218b5c5707fdf08fd3f482d12414ff;hb=8fd1068349424024f8c455b087fa75e654abac3f;hp=bbae42d2d1bf552c9fad8a123d6c48d46dfc4d45;hpb=8e8a8d919401a442621164a1442636229d42e218;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/99dbic_sqlt_parser.t b/t/99dbic_sqlt_parser.t index bbae42d..da56fd5 100644 --- a/t/99dbic_sqlt_parser.t +++ b/t/99dbic_sqlt_parser.t @@ -2,34 +2,32 @@ use strict; use warnings; use Test::More; +use Test::Exception; use lib qw(t/lib); use DBICTest; - BEGIN { - eval "use SQL::Translator 0.09003;"; - if ($@) { - plan skip_all => 'needs SQL::Translator 0.09003 for testing'; - } + 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(); # Dummy was yanked out by the sqlt hook test # CustomSql tests the horrific/deprecated ->name(\$sql) hack -# YearXXXXCDs are views +# YearXXXXCDs and NoViewDefinition are views # my @sources = grep - { $_ !~ /^ (?: Dummy | CustomSql | Year\d{4}CDs ) $/x } + { $_ !~ /^ (?: Dummy | CustomSql | Year\d{4}CDs | NoViewDefinition ) $/x } $schema->sources ; -plan tests => ( @sources * 3); - { my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { } } }); foreach my $source (@sources) { - my $table = $sqlt_schema->get_table($schema->source($source)->from); + 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; @@ -43,7 +41,7 @@ plan tests => ( @sources * 3); my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 1 } } }); foreach my $source (@sources) { - my $table = $sqlt_schema->get_table($schema->source($source)->from); + 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; @@ -57,7 +55,7 @@ plan tests => ( @sources * 3); my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 0 } } }); foreach my $source (@sources) { - my $table = $sqlt_schema->get_table($schema->source($source)->from); + my $table = get_table($sqlt_schema, $schema, $source); my @indices = $table->get_indices; my $index_count = scalar(@indices); @@ -65,6 +63,49 @@ plan tests => ( @sources * 3); } } +{ + { + package # hide from PAUSE + DBICTest::Schema::NoViewDefinition; + + use base qw/DBICTest::BaseResult/; + + __PACKAGE__->table_class('DBIx::Class::ResultSource::View'); + __PACKAGE__->table('noviewdefinition'); + + 1; + } + + my $schema_invalid_view = $schema->clone; + $schema_invalid_view->register_class('NoViewDefinition', 'DBICTest::Schema::NoViewDefinition'); + + eval { + my $sqlt_schema = create_schema({ schema => $schema_invalid_view }); + }; + #like($@, qr/view noviewdefinition is missing a view_definition/, "parser detects views with a view_definition"); + throws_ok { create_schema({ schema => $schema_invalid_view }) } + qr/view noviewdefinition is missing a view_definition/, + 'parser detects views with a view_definition'; + +# my @views = $sqlt_schema->get_views; +# +# # the following views are skipped: +# # Year1999CDs is virtual +# # NoViewDefinition has no view_definition +# is(scalar @views, 1, "number of views ok"); +# +# foreach my $view (@views) { +# ok($view->is_valid, "view " . $view->name . " is valid"); +# } +# +# my @expected_view_names = (qw/ year2000cds /); +# my @view_names = sort map { $_->name } @views; +# +# is_deeply( @view_names, @expected_view_names, "all expected views included int SQL::Translator schema" ); +} + +done_testing; + sub create_schema { my $args = shift; @@ -81,5 +122,14 @@ sub create_schema { my $sqlt = SQL::Translator->new( $sqltargs ); $sqlt->parser('SQL::Translator::Parser::DBIx::Class'); - return $sqlt->translate({ data => $schema }) or die $sqlt->error; + return $sqlt->translate({ data => $schema }) || 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); }