Fix find on resultset with custom result_class
[dbsrgits/DBIx-Class.git] / t / 60core.t
CommitLineData
70350518 1use strict;
2use warnings;
3
4use Test::More;
d6df786a 5use Test::Exception;
00f3b1c7 6use Test::Warn;
70350518 7use lib qw(t/lib);
8use DBICTest;
b49cd082 9use DBIC::SqlMakerTest;
70350518 10
ae515736 11my $schema = DBICTest->init_schema();
0567538f 12
9b44fdf9 13eval { require DateTime::Format::SQLite };
03a1819f 14my $NO_DTFM = $@ ? 1 : 0;
15
f9db5527 16my @art = $schema->resultset("Artist")->search({ }, { order_by => 'name DESC'});
0567538f 17
d2f21b37 18is(@art, 3, "Three artists returned");
0567538f 19
20my $art = $art[0];
21
22is($art->name, 'We Are Goth', "Correct order too");
23
24$art->name('We Are In Rehab');
25
26is($art->name, 'We Are In Rehab', "Accessor update ok");
27
6dbea98e 28my %dirty = $art->get_dirty_columns();
d2f21b37 29is(scalar(keys(%dirty)), 1, '1 dirty column');
6dbea98e 30ok(grep($_ eq 'name', keys(%dirty)), 'name is dirty');
31
0567538f 32is($art->get_column("name"), 'We Are In Rehab', 'And via get_column');
33
34ok($art->update, 'Update run');
35
6dbea98e 36my %not_dirty = $art->get_dirty_columns();
d2f21b37 37is(scalar(keys(%not_dirty)), 0, 'Nothing is dirty');
6dbea98e 38
00f3b1c7 39throws_ok ( sub {
6dbea98e 40 my $ret = $art->make_column_dirty('name2');
00f3b1c7 41}, qr/No such column 'name2'/, 'Failed to make non-existent column dirty');
42
6dbea98e 43$art->make_column_dirty('name');
44my %fake_dirty = $art->get_dirty_columns();
d2f21b37 45is(scalar(keys(%fake_dirty)), 1, '1 fake dirty column');
6dbea98e 46ok(grep($_ eq 'name', keys(%fake_dirty)), 'name is fake dirty');
47
ae515736 48my $record_jp = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => 'cds' })->next;
49
50ok($record_jp, "prefetch on same rel okay");
51
52my $record_fn = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search({'cds.cdid' => '1'}, {join => 'artist_undirected_maps'})->next;
53
54ok($record_fn, "funny join is okay");
55
f9db5527 56@art = $schema->resultset("Artist")->search({ name => 'We Are In Rehab' });
0567538f 57
d2f21b37 58is(@art, 1, "Changed artist returned by search");
0567538f 59
d2f21b37 60is($art[0]->artistid, 3,'Correct artist too');
0567538f 61
d6df786a 62lives_ok (sub { $art->delete }, 'Cascading delete on Ordered has_many works' ); # real test in ordered.t
0567538f 63
f9db5527 64@art = $schema->resultset("Artist")->search({ });
0567538f 65
d2f21b37 66is(@art, 2, 'And then there were two');
0567538f 67
68ok(!$art->in_storage, "It knows it's dead");
69
d6df786a 70dies_ok ( sub { $art->delete }, "Can't delete twice");
0567538f 71
72is($art->name, 'We Are In Rehab', 'But the object is still live');
73
74$art->insert;
75
76ok($art->in_storage, "Re-created");
77
f9db5527 78@art = $schema->resultset("Artist")->search({ });
0567538f 79
d2f21b37 80is(@art, 3, 'And now there are three again');
0567538f 81
f9db5527 82my $new = $schema->resultset("Artist")->create({ artistid => 4 });
0567538f 83
d2f21b37 84is($new->artistid, 4, 'Create produced record ok');
0567538f 85
f9db5527 86@art = $schema->resultset("Artist")->search({ });
0567538f 87
d2f21b37 88is(@art, 4, "Oh my god! There's four of them!");
0567538f 89
90$new->set_column('name' => 'Man With A Fork');
91
92is($new->name, 'Man With A Fork', 'set_column ok');
93
94$new->discard_changes;
95
96ok(!defined $new->name, 'Discard ok');
97
98$new->name('Man With A Spoon');
99
100$new->update;
101
70350518 102my $new_again = $schema->resultset("Artist")->find(4);
0567538f 103
104is($new_again->name, 'Man With A Spoon', 'Retrieved correctly');
105
9bbd8963 106is($new_again->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
1f6715ab 107
52c53388 108# test that store_column is called once for create() for non sequence columns
109{
110 ok(my $artist = $schema->resultset('Artist')->create({name => 'store_column test'}));
111 is($artist->name, 'X store_column test'); # used to be 'X X store...'
a22688ab 112
113 # call store_column even though the column doesn't seem to be dirty
114 ok($artist->update({name => 'X store_column test'}));
115 is($artist->name, 'X X store_column test');
52c53388 116 $artist->delete;
117}
118
a87eb971 119# Test backwards compatibility
120{
13e6ab63 121 my $warnings = '';
122 local $SIG{__WARN__} = sub { $warnings .= $_[0] };
123
124 my $artist_by_hash = $schema->resultset('Artist')->find(artistid => 4);
a87eb971 125 is($artist_by_hash->name, 'Man With A Spoon', 'Retrieved correctly');
126 is($artist_by_hash->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
13e6ab63 127 like($warnings, qr/deprecated/, 'warned about deprecated find usage');
a87eb971 128}
129
f9db5527 130is($schema->resultset("Artist")->count, 4, 'count ok');
0567538f 131
b3e1f1f5 132# test find_or_new
133{
134 my $existing_obj = $schema->resultset('Artist')->find_or_new({
135 artistid => 4,
136 });
137
138 is($existing_obj->name, 'Man With A Spoon', 'find_or_new: found existing artist');
139 ok($existing_obj->in_storage, 'existing artist is in storage');
140
141 my $new_obj = $schema->resultset('Artist')->find_or_new({
142 artistid => 5,
143 name => 'find_or_new',
144 });
145
146 is($new_obj->name, 'find_or_new', 'find_or_new: instantiated a new artist');
147 ok(! $new_obj->in_storage, 'new artist is not in storage');
148}
149
f9db5527 150my $cd = $schema->resultset("CD")->find(1);
076a6864 151my %cols = $cd->get_columns;
152
d2f21b37 153is(keys %cols, 6, 'get_columns number of columns ok');
076a6864 154
155is($cols{title}, 'Spoonful of bees', 'get_columns values ok');
156
157%cols = ( title => 'Forkful of bees', year => 2005);
158$cd->set_columns(\%cols);
159
160is($cd->title, 'Forkful of bees', 'set_columns ok');
161
162is($cd->year, 2005, 'set_columns ok');
163
164$cd->discard_changes;
165
20518cb4 166# check whether ResultSource->columns returns columns in order originally supplied
167my @cd = $schema->source("CD")->columns;
571dced3 168
a1cb5921 169is_deeply( \@cd, [qw/cdid artist title year genreid single_track/], 'column order');
571dced3 170
82a96700 171$cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { columns => ['title'] })->next;
90f3f5ff 172is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly');
173
5ac6a044 174$cd = $schema->resultset("CD")->search(undef, { include_columns => [ 'artist.name' ], join => [ 'artist' ] })->find(1);
175
176is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
177is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
178
67ba6646 179# check if new syntax +columns also works for this
180$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ 'artist.name' ], join => [ 'artist' ] })->find(1);
181
182is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
183is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
184
185# check if new syntax for +columns select specifiers works for this
186$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ {artist_name => 'artist.name'} ], join => [ 'artist' ] })->find(1);
187
188is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
189is($cd->get_column('artist_name'), 'Caterwauler McCrae', 'Additional column returned');
5ac6a044 190
82a96700 191# update_or_insert
f9db5527 192$new = $schema->resultset("Track")->new( {
0567538f 193 trackid => 100,
194 cd => 1,
0567538f 195 title => 'Insert or Update',
43556c5d 196 last_updated_on => '1973-07-19 12:01:02'
0567538f 197} );
82a96700 198$new->update_or_insert;
199ok($new->in_storage, 'update_or_insert insert ok');
0567538f 200
201# test in update mode
d6df786a 202$new->title('Insert or Update - updated');
82a96700 203$new->update_or_insert;
d6df786a 204is( $schema->resultset("Track")->find(100)->title, 'Insert or Update - updated', 'update_or_insert update ok');
0567538f 205
ba4a6453 206# get_inflated_columns w/relation and accessor alias
03a1819f 207SKIP: {
9b44fdf9 208 skip "This test requires DateTime::Format::SQLite", 8 if $NO_DTFM;
03a1819f 209
210 isa_ok($new->updated_date, 'DateTime', 'have inflated object via accessor');
211 my %tdata = $new->get_inflated_columns;
212 is($tdata{'trackid'}, 100, 'got id');
213 isa_ok($tdata{'cd'}, 'DBICTest::CD', 'cd is CD object');
214 is($tdata{'cd'}->id, 1, 'cd object is id 1');
d6df786a 215 is(
216 $tdata{'position'},
217 $schema->resultset ('Track')->search ({cd => 1})->count,
218 'Ordered assigned proper position',
219 );
220 is($tdata{'title'}, 'Insert or Update - updated');
03a1819f 221 is($tdata{'last_updated_on'}, '1973-07-19T12:01:02');
222 isa_ok($tdata{'last_updated_on'}, 'DateTime', 'inflated accessored column');
223}
ba4a6453 224
00f3b1c7 225throws_ok (sub {
226 $schema->class("Track")->load_components('DoesNotExist');
227}, qr!Can't locate DBIx/Class/DoesNotExist.pm!, 'exception on nonexisting component');
0567538f 228
1edaf6fe 229is($schema->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdata usage ok');
90e6de6c 230
54540863 231my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ];
232
5b89a768 233my( $or_rs ) = $schema->resultset("CD")->search_rs($search, { join => 'tags',
6aeb9185 234 order_by => 'cdid' });
a258ee5d 235is($or_rs->all, 5, 'Joined search with OR returned correct number of rows');
236is($or_rs->count, 5, 'Search count with OR ok');
54540863 237
a258ee5d 238my $collapsed_or_rs = $or_rs->search ({}, { distinct => 1 }); # induce collapse
239is ($collapsed_or_rs->all, 4, 'Collapsed joined search with OR returned correct number of rows');
240is ($collapsed_or_rs->count, 4, 'Collapsed search count with OR ok');
6aeb9185 241
00f3b1c7 242# make sure sure distinct on a grouped rs is warned about
243my $cd_rs = $schema->resultset ('CD')
244 ->search ({}, { distinct => 1, group_by => 'title' });
245warnings_exist (sub {
246 $cd_rs->next;
247}, qr/Useless use of distinct/, 'UUoD warning');
248
1cc3ce1e 249{
d2f21b37 250 my $tcount = $schema->resultset('Track')->search(
286f32b3 251 {},
d2f21b37 252 {
11d68671 253 select => [ qw/position title/ ],
254 distinct => 1,
286f32b3 255 }
256 );
d2f21b37 257 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
258
11d68671 259 $tcount = $schema->resultset('Track')->search(
260 {},
261 {
262 columns => [ qw/position title/ ],
263 distinct => 1,
264 }
265 );
266 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
267
268 $tcount = $schema->resultset('Track')->search(
269 {},
270 {
271 group_by => [ qw/position title/ ]
272 }
273 );
274 is($tcount->count, 13, 'multiple column COUNT DISTINCT using column syntax ok');
f2de4889 275}
584e74ed 276
f9db5527 277my $tag_rs = $schema->resultset('Tag')->search(
6aeb9185 278 [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
279
280my $rel_rs = $tag_rs->search_related('cd');
281
a258ee5d 282is($rel_rs->count, 5, 'Related search ok');
6aeb9185 283
d2f21b37 284is($or_rs->next->cdid, $rel_rs->next->cdid, 'Related object ok');
a4731ae0 285$or_rs->reset;
286$rel_rs->reset;
a953d8d9 287
4c4ccf29 288my $tag = $schema->resultset('Tag')->search(
289 [ { 'me.tag' => 'Blue' } ], { cols=>[qw/tagid/] } )->next;
290
d2f21b37 291ok($tag->has_column_loaded('tagid'), 'Has tagid loaded');
292ok(!$tag->has_column_loaded('tag'), 'Has not tag loaded');
4c4ccf29 293
a953d8d9 294ok($schema->storage(), 'Storage available');
295
16b4fd26 296{
297 my $rs = $schema->resultset("Artist")->search({
298 -and => [
299 artistid => { '>=', 1 },
300 artistid => { '<', 3 }
301 ]
302 });
303
304 $rs->update({ name => 'Test _cond_for_update_delete' });
305
306 my $art;
307
308 $art = $schema->resultset("Artist")->find(1);
309 is($art->name, 'Test _cond_for_update_delete', 'updated first artist name');
310
311 $art = $schema->resultset("Artist")->find(2);
312 is($art->name, 'Test _cond_for_update_delete', 'updated second artist name');
313}
314
825135d8 315# test source_name
316{
317 # source_name should be set for normal modules
318 is($schema->source('CD')->source_name, 'CD', 'source_name is set to moniker');
a4731ae0 319
825135d8 320 # test the result source that sets source_name explictly
321 ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists');
0009fa49 322
825135d8 323 my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' });
d2f21b37 324 is(@artsn, 4, "Four artists returned");
b1fb2c94 325
326 # make sure subclasses that don't set source_name are ok
93405cf0 327 ok($schema->source('ArtistSubclass'), 'ArtistSubclass exists');
825135d8 328}
bab77431 329
9c2c91ea 330my $newbook = $schema->resultset( 'Bookmark' )->find(1);
331
d6df786a 332lives_ok (sub { my $newlink = $newbook->link}, "stringify to false value doesn't cause error");
9c2c91ea 333
825135d8 334# test cascade_delete through many_to_many relations
335{
336 my $art_del = $schema->resultset("Artist")->find({ artistid => 1 });
d6df786a 337 lives_ok (sub { $art_del->delete }, 'Cascading delete on Ordered has_many works' ); # real test in ordered.t
d2f21b37 338 is( $schema->resultset("CD")->search({artist => 1}), 0, 'Cascading through has_many top level.');
339 is( $schema->resultset("CD_to_Producer")->search({cd => 1}), 0, 'Cascading through has_many children.');
825135d8 340}
bab77431 341
825135d8 342# test column_info
343{
344 $schema->source("Artist")->{_columns}{'artistid'} = {};
d9916234 345 $schema->source("Artist")->column_info_from_storage(1);
bab77431 346
825135d8 347 my $typeinfo = $schema->source("Artist")->column_info('artistid');
348 is($typeinfo->{data_type}, 'INTEGER', 'column_info ok');
349 $schema->source("Artist")->column_info('artistid');
350 ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info flag set');
351}
bab77431 352
a48e92d7 353# test source_info
354{
355 my $expected = {
356 "source_info_key_A" => "source_info_value_A",
357 "source_info_key_B" => "source_info_value_B",
358 "source_info_key_C" => "source_info_value_C",
359 };
360
361 my $sinfo = $schema->source("Artist")->source_info;
362
363 is_deeply($sinfo, $expected, 'source_info data works');
364}
365
825135d8 366# test remove_columns
367{
4738027b 368 is_deeply(
369 [$schema->source('CD')->columns],
370 [qw/cdid artist title year genreid single_track/],
371 'initial columns',
372 );
373
374 $schema->source('CD')->remove_columns('coolyear'); #should not delete year
375 is_deeply(
376 [$schema->source('CD')->columns],
377 [qw/cdid artist title year genreid single_track/],
378 'nothing removed when removing a non-existent column',
379 );
380
381 $schema->source('CD')->remove_columns('genreid', 'year');
382 is_deeply(
383 [$schema->source('CD')->columns],
384 [qw/cdid artist title single_track/],
385 'removed two columns',
386 );
387
388 my $priv_columns = $schema->source('CD')->_columns;
389 ok(! exists $priv_columns->{'year'}, 'year purged from _columns');
390 ok(! exists $priv_columns->{'genreid'}, 'genreid purged from _columns');
825135d8 391}
bab77431 392
ba4a6453 393# test get_inflated_columns with objects
03a1819f 394SKIP: {
9b44fdf9 395 skip "This test requires DateTime::Format::SQLite", 5 if $NO_DTFM;
ba4a6453 396 my $event = $schema->resultset('Event')->search->first;
397 my %edata = $event->get_inflated_columns;
398 is($edata{'id'}, $event->id, 'got id');
399 isa_ok($edata{'starts_at'}, 'DateTime', 'start_at is DateTime object');
400 isa_ok($edata{'created_on'}, 'DateTime', 'create_on DateTime object');
401 is($edata{'starts_at'}, $event->starts_at, 'got start date');
402 is($edata{'created_on'}, $event->created_on, 'got created date');
403}
404
ade8df5b 405# test resultsource->table return value when setting
406{
407 my $class = $schema->class('Event');
ade8df5b 408 my $table = $class->table($class->table);
409 is($table, $class->table, '->table($table) returns $table');
410}
0e80c4ca 411
412#make sure insert doesn't use set_column
413{
414 my $en_row = $schema->resultset('Encoded')->new_result({encoded => 'wilma'});
415 is($en_row->encoded, 'amliw', 'new encodes');
416 $en_row->insert;
417 is($en_row->encoded, 'amliw', 'insert does not encode again');
418}
3bb4eb8f 419
420# make sure we got rid of the compat shims
421SKIP: {
422 skip "Remove in 0.09", 5 if $DBIx::Class::VERSION < 0.09;
423
424 for (qw/compare_relationship_keys pk_depends_on resolve_condition resolve_join resolve_prefetch/) {
425 ok (! DBIx::Class::ResultSource->can ($_), "$_ no longer provided by DBIx::Class::ResultSource");
426 }
427}
42a87bbb 428
429#------------------------------
430# READ THIS BEFORE "FIXING"
431#------------------------------
432#
433# make sure we got rid of discard_changes mess - this is a mess and a source
434# of great confusion. Here I simply die if the methods are available, which
435# is wrong on its own (we *have* to provide some sort of back-compat, even
436# if with warnings). Here is how I envision things should actually be. Also
437# note that a lot of the deprecation can be started today (i.e. the switch
438# from get_from_storage to copy_from_storage). So:
439#
440# $row->discard_changes =>
441# warning, and delegation to reload_from_storage
442#
443# $row->reload_from_storage =>
444# does what discard changes did in 0.08 - issues a query to the db
445# and repopulates all column slots, regardless of dirty states etc.
446#
447# $row->revert_changes =>
448# does what discard_changes should have done initially (before it became
449# a dual-purpose call). In order to make this work we will have to
450# augment $row to carry its own initial-state, much like svn has a
451# copy of the current checkout in contrast to cvs.
452#
453# my $db_row = $row->get_from_storage =>
454# warns and delegates to an improved name copy_from_storage, with the
455# same semantics
456#
457# my $db_row = $row->copy_from_storage =>
458# a much better/descriptive name than get_from_storage
459#
460#------------------------------
461# READ THIS BEFORE "FIXING"
462#------------------------------
463#
464SKIP: {
465 skip "Something needs to be done before 0.09", 2 if $DBIx::Class::VERSION < 0.09;
466
467 my $row = $schema->resultset ('Artist')->next;
468
469 for (qw/discard_changes get_from_storage/) {
470 ok (! $row->can ($_), "$_ needs *some* sort of facelift before 0.09 ships - current state of affairs is unacceptable");
471 }
472}
473
73d47f9f 474throws_ok { $schema->resultset} qr/resultset\(\) expects a source name/, 'resultset with no argument throws exception';
475
42a87bbb 476done_testing;