X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F60core.t;h=9a0bd7e2e39f6ea1b1374f0c2e808df087fad8c2;hb=584e74ed9268ffeba3aba23a148cdace7b46649c;hp=c5959d07f1c7386ab4e6789a7ee7150a54514bb4;hpb=a918d9014c5fc4684efb8b6c2abb84cf60d9c826;p=dbsrgits%2FDBIx-Class.git diff --git a/t/60core.t b/t/60core.t index c5959d0..9a0bd7e 100644 --- a/t/60core.t +++ b/t/60core.t @@ -7,7 +7,10 @@ use DBICTest; my $schema = DBICTest->init_schema(); -plan tests => 63; +plan tests => 89; + +eval { require DateTime::Format::MySQL }; +my $NO_DTFM = $@ ? 1 : 0; # figure out if we've got a version of sqlite that is older than 3.2.6, in # which case COUNT(DISTINCT()) doesn't work @@ -34,10 +37,26 @@ $art->name('We Are In Rehab'); is($art->name, 'We Are In Rehab', "Accessor update ok"); +my %dirty = $art->get_dirty_columns(); +cmp_ok(scalar(keys(%dirty)), '==', 1, '1 dirty column'); +ok(grep($_ eq 'name', keys(%dirty)), 'name is dirty'); + is($art->get_column("name"), 'We Are In Rehab', 'And via get_column'); ok($art->update, 'Update run'); +my %not_dirty = $art->get_dirty_columns(); +cmp_ok(scalar(keys(%not_dirty)), '==', 0, 'Nothing is dirty'); + +eval { + my $ret = $art->make_column_dirty('name2'); +}; +ok(defined($@), 'Failed to make non-existent column dirty'); +$art->make_column_dirty('name'); +my %fake_dirty = $art->get_dirty_columns(); +cmp_ok(scalar(keys(%fake_dirty)), '==', 1, '1 fake dirty column'); +ok(grep($_ eq 'name', keys(%fake_dirty)), 'name is fake dirty'); + my $record_jp = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => 'cds' })->next; ok($record_jp, "prefetch on same rel okay"); @@ -134,7 +153,7 @@ is($schema->resultset("Artist")->count, 4, 'count ok'); my $cd = $schema->resultset("CD")->find(1); my %cols = $cd->get_columns; -cmp_ok(keys %cols, '==', 4, 'get_columns number of columns ok'); +cmp_ok(keys %cols, '==', 5, 'get_columns number of columns ok'); is($cols{title}, 'Spoonful of bees', 'get_columns values ok'); @@ -150,7 +169,7 @@ $cd->discard_changes; # check whether ResultSource->columns returns columns in order originally supplied my @cd = $schema->source("CD")->columns; -is_deeply( \@cd, [qw/cdid artist title year/], 'column order'); +is_deeply( \@cd, [qw/cdid artist title year genreid/], 'column order'); $cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { columns => ['title'] })->next; is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly'); @@ -160,12 +179,25 @@ $cd = $schema->resultset("CD")->search(undef, { include_columns => [ 'artist.nam is($cd->title, 'Spoonful of bees', 'Correct CD returned with include'); is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned'); +# check if new syntax +columns also works for this +$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ 'artist.name' ], join => [ 'artist' ] })->find(1); + +is($cd->title, 'Spoonful of bees', 'Correct CD returned with include'); +is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned'); + +# check if new syntax for +columns select specifiers works for this +$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ {artist_name => 'artist.name'} ], join => [ 'artist' ] })->find(1); + +is($cd->title, 'Spoonful of bees', 'Correct CD returned with include'); +is($cd->get_column('artist_name'), 'Caterwauler McCrae', 'Additional column returned'); + # update_or_insert $new = $schema->resultset("Track")->new( { trackid => 100, cd => 1, position => 4, title => 'Insert or Update', + last_updated_on => '1973-07-19 12:01:02' } ); $new->update_or_insert; ok($new->in_storage, 'update_or_insert insert ok'); @@ -175,6 +207,21 @@ $new->pos(5); $new->update_or_insert; is( $schema->resultset("Track")->find(100)->pos, 5, 'update_or_insert update ok'); +# get_inflated_columns w/relation and accessor alias +SKIP: { + skip "This test requires DateTime::Format::MySQL", 8 if $NO_DTFM; + + isa_ok($new->updated_date, 'DateTime', 'have inflated object via accessor'); + my %tdata = $new->get_inflated_columns; + is($tdata{'trackid'}, 100, 'got id'); + isa_ok($tdata{'cd'}, 'DBICTest::CD', 'cd is CD object'); + is($tdata{'cd'}->id, 1, 'cd object is id 1'); + is($tdata{'position'}, 5, 'got position from pos'); + is($tdata{'title'}, 'Insert or Update'); + is($tdata{'last_updated_on'}, '1973-07-19T12:01:02'); + isa_ok($tdata{'last_updated_on'}, 'DateTime', 'inflated accessored column'); +} + eval { $schema->class("Track")->load_components('DoesNotExist'); }; ok $@, $@; @@ -191,9 +238,9 @@ cmp_ok($or_rs->count, '==', 5, 'Search with OR ok'); my $distinct_rs = $schema->resultset("CD")->search($search, { join => 'tags', distinct => 1 }); cmp_ok($distinct_rs->all, '==', 4, 'DISTINCT search with OR ok'); -SKIP: { - skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1 - if $is_broken_sqlite; +#SKIP: { +# skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 2 +# if $is_broken_sqlite; my $tcount = $schema->resultset("Track")->search( {}, @@ -204,7 +251,15 @@ SKIP: { ); cmp_ok($tcount->next->get_column('count'), '==', 13, 'multiple column COUNT DISTINCT ok'); -} + $tcount = $schema->resultset("Track")->search( + {}, + { + columns => {count => {count => {distinct => ['position', 'title']}}}, + } + ); + cmp_ok($tcount->next->get_column('count'), '==', 13, 'multiple column COUNT DISTINCT using column syntax ok'); + +#} my $tag_rs = $schema->resultset('Tag')->search( [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]); @@ -255,7 +310,7 @@ ok($schema->storage(), 'Storage available'); cmp_ok(@artsn, '==', 4, "Four artists returned"); # make sure subclasses that don't set source_name are ok - ok($schema->source('ArtistSubclass', 'ArtistSubclass exists')); + ok($schema->source('ArtistSubclass'), 'ArtistSubclass exists'); } my $newbook = $schema->resultset( 'Bookmark' )->find(1); @@ -277,6 +332,7 @@ ok(!$@, "stringify to false value doesn't cause error"); # test column_info { $schema->source("Artist")->{_columns}{'artistid'} = {}; + $schema->source("Artist")->column_info_from_storage(1); my $typeinfo = $schema->source("Artist")->column_info('artistid'); is($typeinfo->{data_type}, 'INTEGER', 'column_info ok'); @@ -284,11 +340,43 @@ ok(!$@, "stringify to false value doesn't cause error"); ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info flag set'); } +# test source_info +{ + my $expected = { + "source_info_key_A" => "source_info_value_A", + "source_info_key_B" => "source_info_value_B", + "source_info_key_C" => "source_info_value_C", + }; + + my $sinfo = $schema->source("Artist")->source_info; + + is_deeply($sinfo, $expected, 'source_info data works'); +} + # test remove_columns { - is_deeply([$schema->source('CD')->columns], [qw/cdid artist title year/]); + is_deeply([$schema->source('CD')->columns], [qw/cdid artist title year genreid/]); $schema->source('CD')->remove_columns('year'); - is_deeply([$schema->source('CD')->columns], [qw/cdid artist title/]); + is_deeply([$schema->source('CD')->columns], [qw/cdid artist title genreid/]); ok(! exists $schema->source('CD')->_columns->{'year'}, 'year still exists in _columns'); } +# test get_inflated_columns with objects +SKIP: { + skip "This test requires DateTime::Format::MySQL", 5 if $NO_DTFM; + my $event = $schema->resultset('Event')->search->first; + my %edata = $event->get_inflated_columns; + is($edata{'id'}, $event->id, 'got id'); + isa_ok($edata{'starts_at'}, 'DateTime', 'start_at is DateTime object'); + isa_ok($edata{'created_on'}, 'DateTime', 'create_on DateTime object'); + is($edata{'starts_at'}, $event->starts_at, 'got start date'); + is($edata{'created_on'}, $event->created_on, 'got created date'); +} + +# test resultsource->table return value when setting +{ + my $class = $schema->class('Event'); + diag $class; + my $table = $class->table($class->table); + is($table, $class->table, '->table($table) returns $table'); +}