X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F105view_deps.t;h=21aa92bff451165ea4da1d0e57b8314b56e24370;hb=1f9712ad52d92dd562fcda6e1846370d45342a13;hp=d3aaf58dcc704bc9ac67ef38ea46e8a69a4f0ef8;hpb=bf5c3a3f1c0f706106d762e52a0b7092bee1932a;p=dbsrgits%2FDBIx-Class.git diff --git a/t/105view_deps.t b/t/105view_deps.t index d3aaf58..21aa92b 100644 --- a/t/105view_deps.t +++ b/t/105view_deps.t @@ -5,61 +5,111 @@ use warnings; use Test::More; use Test::Exception; +use Test::Warn; use lib qw(t/lib); +use DBICTest; use ViewDeps; -use Devel::Dwarn; +use ViewDepsBad; BEGIN { - use_ok('DBIx::Class::ResultSource::View'); + require DBIx::Class; + plan skip_all => 'Test needs ' . + DBIx::Class::Optional::Dependencies->req_missing_for('deploy') + unless DBIx::Class::Optional::Dependencies->req_ok_for('deploy'); } -### SANITY +use_ok('DBIx::Class::ResultSource::View'); -my $view = DBIx::Class::ResultSource::View->new( { name => 'Quux' } ); +#################### SANITY -isa_ok( $view, 'DBIx::Class::ResultSource', 'A new view'); -isa_ok( $view, 'DBIx::Class', 'A new view also'); +my $view = DBIx::Class::ResultSource::View->new; + +isa_ok( $view, 'DBIx::Class::ResultSource', 'A new view' ); +isa_ok( $view, 'DBIx::Class', 'A new view also' ); can_ok( $view, $_ ) for qw/new from deploy_depends_on/; -### DEPS - -my $schema = ViewDeps->connect; -ok( $schema, 'Connected to ViewDeps schema OK' ); -my $bar_rs = $schema->resultset('Bar'); -#diag(DwarnS $bar_rs->result_source); - -my @bar_deps = keys %{ $schema->resultset('Bar')->result_source->deploy_depends_on }; - -my @foo_deps = keys %{ $schema->resultset('Foo')->result_source->deploy_depends_on }; - -isa_ok( $schema->resultset('Bar')->result_source, - 'DBIx::Class::ResultSource::View', 'Bar' ); - -is( $bar_deps[0], 'baz', 'which is reported to depend on baz...' ); -is( $bar_deps[1], 'mixin', 'and on mixin.' ); -is( $foo_deps[0], undef, 'Foo has no dependencies...' ); - -isa_ok( - $schema->resultset('Foo')->result_source, - 'DBIx::Class::ResultSource::View', - 'though Foo' -); -isa_ok( - $schema->resultset('Baz')->result_source, - 'DBIx::Class::ResultSource::Table', - "Baz on the other hand" -); -dies_ok { - ViewDeps::Result::Baz->result_source_instance->deploy_depends_on( - { ViewDeps::Result::Mixin->result_source_instance->name => 1 } ); +#################### DEPS +{ + my $schema + = ViewDeps->connect( DBICTest->_database (quote_char => '"') ); + ok( $schema, 'Connected to ViewDeps schema OK' ); + +#################### DEPLOY + + $schema->deploy; + +#################### DOES ORDERING WORK? + + my $sqlt_object = $schema->{sqlt}; + + is_deeply( + [ map { $_->name } $sqlt_object->get_views ], + [qw/ + a_name_artists + track_number_fives + year_2010_cds + ab_name_artists + year_2010_cds_with_many_tracks + aba_name_artists + aba_name_artists_and_2010_cds_with_many_tracks + /], + "SQLT view order triumphantly matches our order." + ); + +#################### AND WHAT ABOUT USING THE SCHEMA? + + lives_ok( sub { $schema->resultset($_)->next }, "Query on $_ succeeds" ) + for grep { + $schema->resultset($_) + ->result_source->isa('DBIx::Class::ResultSource::View') + } @{ [ $schema->sources ] }; } -"...and you cannot use deploy_depends_on with that"; - -diag("ViewDeps::Foo view definition: ", ViewDeps->source('Foo')->view_definition); -diag("schema->rs(Bar) view definition: ", $schema->resultset('Bar')->result_source->view_definition); -my $dir = "t/sql"; # tempdir(CLEANUP => 0); -$schema->create_ddl_dir([ 'PostgreSQL' ], 0.1, $dir); +#################### AND WHAT ABOUT A BAD DEPS CHAIN IN A VIEW? + +{ + my $schema2 + = ViewDepsBad->connect( DBICTest->_database ( quote_char => '"') ); + ok( $schema2, 'Connected to ViewDepsBad schema OK' ); + +#################### DEPLOY2 + + warnings_exist { $schema2->deploy } + [qr/no such table: main.aba_name_artists/], + "Deploying the bad schema produces a warning: aba_name_artists was not created."; + +#################### DOES ORDERING WORK 2? + + my $sqlt_object2 = $schema2->{sqlt}; + + is_deeply( + [ map { $_->name } $sqlt_object2->get_views ], + [qw/ + a_name_artists + track_number_fives + year_2010_cds + ab_name_artists + year_2010_cds_with_many_tracks + aba_name_artists_and_2010_cds_with_many_tracks + aba_name_artists + /], + "SQLT view order triumphantly matches our order." + ); + +#################### AND WHAT ABOUT USING THE SCHEMA2? + + lives_ok( sub { $schema2->resultset($_)->next }, "Query on $_ succeeds" ) + for grep { + $schema2->resultset($_) + ->result_source->isa('DBIx::Class::ResultSource::View') + } grep { !/AbaNameArtistsAnd2010CDsWithManyTracks/ } + @{ [ $schema2->sources ] }; + + throws_ok { $schema2->resultset('AbaNameArtistsAnd2010CDsWithManyTracks')->next } + qr/no such table: aba_name_artists_and_2010_cds_with_many_tracks/, + "Query on AbaNameArtistsAnd2010CDsWithManyTracks throws, because the table does not exist" + ; +} done_testing;