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