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