X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Frun%2F01core.tl;h=eaad53842b83c1376af79d9dccc297964a7025c0;hb=0068f3eecc52a2a45fafc598d398ac864bd427ce;hp=ce41f1687712e08eb98a5145b7c3c21188c062e3;hpb=8c49f6295f3c7e07ba4bda6379f3c9f065501d7a;p=dbsrgits%2FDBIx-Class.git diff --git a/t/run/01core.tl b/t/run/01core.tl index ce41f16..eaad538 100644 --- a/t/run/01core.tl +++ b/t/run/01core.tl @@ -1,7 +1,20 @@ sub run_tests { my $schema = shift; -plan tests => 34; +plan tests => 60; + +# 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 +my $is_broken_sqlite = 0; +my ($sqlite_major_ver,$sqlite_minor_ver,$sqlite_patch_ver) = + split /\./, $schema->storage->dbh->get_info(18); +if( $schema->storage->dbh->get_info(17) eq 'SQLite' && + ( ($sqlite_major_ver < 3) || + ($sqlite_major_ver == 3 && $sqlite_minor_ver < 2) || + ($sqlite_major_ver == 3 && $sqlite_minor_ver == 2 && $sqlite_patch_ver < 6) ) ) { + $is_broken_sqlite = 1; +} + my @art = $schema->resultset("Artist")->search({ }, { order_by => 'name DESC'}); @@ -19,6 +32,14 @@ is($art->get_column("name"), 'We Are In Rehab', 'And via get_column'); ok($art->update, 'Update run'); +my $record_jp = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => 'cds' })->next; + +ok($record_jp, "prefetch on same rel okay"); + +my $record_fn = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search({'cds.cdid' => '1'}, {join => 'artist_undirected_maps'})->next; + +ok($record_fn, "funny join is okay"); + @art = $schema->resultset("Artist")->search({ name => 'We Are In Rehab' }); cmp_ok(@art, '==', 1, "Changed artist returned by search"); @@ -71,10 +92,35 @@ $new_again = $schema->resultset("Artist")->find(4); is($new_again->name, 'Man With A Spoon', 'Retrieved correctly'); -is($new_again->ID, 'DBICTest::Artist|artistid=4', 'unique object id generated correctly'); +is($new_again->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly'); + +# Test backwards compatibility +{ + my $artist_by_hash = $schema->resultset('Artist')->find(artistid => 4); + is($artist_by_hash->name, 'Man With A Spoon', 'Retrieved correctly'); + is($artist_by_hash->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly'); +} is($schema->resultset("Artist")->count, 4, 'count ok'); +# test find_or_new +{ + my $existing_obj = $schema->resultset('Artist')->find_or_new({ + artistid => 4, + }); + + is($existing_obj->name, 'Man With A Spoon', 'find_or_new: found existing artist'); + ok($existing_obj->in_storage, 'existing artist is in storage'); + + my $new_obj = $schema->resultset('Artist')->find_or_new({ + artistid => 5, + name => 'find_or_new', + }); + + is($new_obj->name, 'find_or_new', 'find_or_new: instantiated a new artist'); + ok(! $new_obj->in_storage, 'new artist is not in storage'); +} + my $cd = $schema->resultset("CD")->find(1); my %cols = $cd->get_columns; @@ -91,28 +137,33 @@ is($cd->year, 2005, 'set_columns ok'); $cd->discard_changes; -# check whether ResultSource->ordered_columns returns columns in order originally supplied -my @cd = $schema->source("CD")->ordered_columns; +# check whether ResultSource->columns returns columns in order originally supplied +my @cd = $schema->source("CD")->columns; -is_deeply( \@cd, [qw/cdid artist title year/], 'ordered_columns'); +is_deeply( \@cd, [qw/cdid artist title year/], 'column order'); -$cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { cols => ['title'] })->next; +$cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { columns => ['title'] })->next; is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly'); -# insert_or_update +$cd = $schema->resultset("CD")->search(undef, { include_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'); + +# update_or_insert $new = $schema->resultset("Track")->new( { trackid => 100, cd => 1, position => 1, title => 'Insert or Update', } ); -$new->insert_or_update; -ok($new->in_storage, 'insert_or_update insert ok'); +$new->update_or_insert; +ok($new->in_storage, 'update_or_insert insert ok'); # test in update mode -$new->position(5); -$new->insert_or_update; -is( $schema->resultset("Track")->find(100)->position, 5, 'insert_or_update update ok'); +$new->pos(5); +$new->update_or_insert; +is( $schema->resultset("Track")->find(100)->pos, 5, 'update_or_insert update ok'); eval { $schema->class("Track")->load_components('DoesNotExist'); }; @@ -122,15 +173,28 @@ is($schema->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdat my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ]; -my $or_rs = $schema->resultset("CD")->search($search, { join => 'tags', +my( $or_rs ) = $schema->resultset("CD")->search_rs($search, { join => 'tags', order_by => 'cdid' }); 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; + + my $tcount = $schema->resultset("Track")->search( + {}, + { + select => {count => {distinct => ['position', 'title']}}, + as => ['count'] + } + ); + cmp_ok($tcount->next->get_column('count'), '==', 13, 'multiple column COUNT DISTINCT ok'); + +} my $tag_rs = $schema->resultset('Tag')->search( [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]); @@ -139,6 +203,80 @@ my $rel_rs = $tag_rs->search_related('cd'); cmp_ok($rel_rs->count, '==', 5, 'Related search ok'); cmp_ok($or_rs->next->cdid, '==', $rel_rs->next->cdid, 'Related object ok'); +$or_rs->reset; +$rel_rs->reset; + +my $tag = $schema->resultset('Tag')->search( + [ { 'me.tag' => 'Blue' } ], { cols=>[qw/tagid/] } )->next; + +cmp_ok($tag->has_column_loaded('tagid'), '==', 1, 'Has tagid loaded'); +cmp_ok($tag->has_column_loaded('tag'), '==', 0, 'Has not tag loaded'); + +ok($schema->storage(), 'Storage available'); + +{ + my $rs = $schema->resultset("Artist")->search({ + -and => [ + artistid => { '>=', 1 }, + artistid => { '<', 3 } + ] + }); + + $rs->update({ name => 'Test _cond_for_update_delete' }); + + my $art; + + $art = $schema->resultset("Artist")->find(1); + is($art->name, 'Test _cond_for_update_delete', 'updated first artist name'); + + $art = $schema->resultset("Artist")->find(2); + is($art->name, 'Test _cond_for_update_delete', 'updated second artist name'); +} + +# test source_name +{ + # source_name should be set for normal modules + is($schema->source('CD')->source_name, 'CD', 'source_name is set to moniker'); + + # test the result source that sets source_name explictly + ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists'); + + my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' }); + cmp_ok(@artsn, '==', 4, "Four artists returned"); +} + +my $newbook = $schema->resultset( 'Bookmark' )->find(1); + +$@ = ''; +eval { +my $newlink = $newbook->link; +}; +ok(!$@, "stringify to false value doesn't cause error"); + +# test cascade_delete through many_to_many relations +{ + my $art_del = $schema->resultset("Artist")->find({ artistid => 1 }); + $art_del->delete; + cmp_ok( $schema->resultset("CD")->search({artist => 1}), '==', 0, 'Cascading through has_many top level.'); + cmp_ok( $schema->resultset("CD_to_Producer")->search({cd => 1}), '==', 0, 'Cascading through has_many children.'); +} + +# test column_info +{ + $schema->source("Artist")->{_columns}{'artistid'} = {}; + + my $typeinfo = $schema->source("Artist")->column_info('artistid'); + is($typeinfo->{data_type}, 'INTEGER', 'column_info ok'); + $schema->source("Artist")->column_info('artistid'); + ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info flag set'); +} + +# test remove_columns +{ + is_deeply([$schema->source('CD')->columns], [qw/cdid artist title year/]); + $schema->source('CD')->remove_columns('year'); + is_deeply([$schema->source('CD')->columns], [qw/cdid artist title/]); +} }