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=eac9edd640601486d84da64529287aaf8c18694f;hpb=d563309646cd5a6d156ffb3d601f9d914926831b;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/99dbic_sqlt_parser.t b/t/99dbic_sqlt_parser.t index eac9edd..da56fd5 100644 --- a/t/99dbic_sqlt_parser.t +++ b/t/99dbic_sqlt_parser.t @@ -2,23 +2,32 @@ use strict; use warnings; use Test::More; +use Test::Exception; use lib qw(t/lib); use DBICTest; BEGIN { - eval "use DBD::mysql; use SQL::Translator 0.09;"; - plan $@ - ? ( skip_all => 'needs SQL::Translator 0.09 for testing' ) - : ( tests => 117 ); + 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 and NoViewDefinition are views +# +my @sources = grep + { $_ !~ /^ (?: Dummy | CustomSql | Year\d{4}CDs | NoViewDefinition ) $/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 +40,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 +54,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 +63,49 @@ my $schema = DBICTest->init_schema(); } } +{ + { + 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; @@ -70,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); }