add test for distinct result of sql function
[dbsrgits/DBIx-Class.git] / t / 60core.t
CommitLineData
70350518 1use strict;
2use warnings;
3
4use Test::More;
d6df786a 5use Test::Exception;
70350518 6use lib qw(t/lib);
7use DBICTest;
8
ae515736 9my $schema = DBICTest->init_schema();
0567538f 10
11d68671 11plan tests => 96;
0567538f 12
03a1819f 13eval { require DateTime::Format::MySQL };
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
39eval {
40 my $ret = $art->make_column_dirty('name2');
41};
42ok(defined($@), 'Failed to make non-existent column dirty');
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
a87eb971 108# Test backwards compatibility
109{
13e6ab63 110 my $warnings = '';
111 local $SIG{__WARN__} = sub { $warnings .= $_[0] };
112
113 my $artist_by_hash = $schema->resultset('Artist')->find(artistid => 4);
a87eb971 114 is($artist_by_hash->name, 'Man With A Spoon', 'Retrieved correctly');
115 is($artist_by_hash->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
13e6ab63 116 like($warnings, qr/deprecated/, 'warned about deprecated find usage');
a87eb971 117}
118
f9db5527 119is($schema->resultset("Artist")->count, 4, 'count ok');
0567538f 120
b3e1f1f5 121# test find_or_new
122{
123 my $existing_obj = $schema->resultset('Artist')->find_or_new({
124 artistid => 4,
125 });
126
127 is($existing_obj->name, 'Man With A Spoon', 'find_or_new: found existing artist');
128 ok($existing_obj->in_storage, 'existing artist is in storage');
129
130 my $new_obj = $schema->resultset('Artist')->find_or_new({
131 artistid => 5,
132 name => 'find_or_new',
133 });
134
135 is($new_obj->name, 'find_or_new', 'find_or_new: instantiated a new artist');
136 ok(! $new_obj->in_storage, 'new artist is not in storage');
137}
138
f9db5527 139my $cd = $schema->resultset("CD")->find(1);
076a6864 140my %cols = $cd->get_columns;
141
d2f21b37 142is(keys %cols, 6, 'get_columns number of columns ok');
076a6864 143
144is($cols{title}, 'Spoonful of bees', 'get_columns values ok');
145
146%cols = ( title => 'Forkful of bees', year => 2005);
147$cd->set_columns(\%cols);
148
149is($cd->title, 'Forkful of bees', 'set_columns ok');
150
151is($cd->year, 2005, 'set_columns ok');
152
153$cd->discard_changes;
154
20518cb4 155# check whether ResultSource->columns returns columns in order originally supplied
156my @cd = $schema->source("CD")->columns;
571dced3 157
a1cb5921 158is_deeply( \@cd, [qw/cdid artist title year genreid single_track/], 'column order');
571dced3 159
82a96700 160$cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { columns => ['title'] })->next;
90f3f5ff 161is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly');
162
5ac6a044 163$cd = $schema->resultset("CD")->search(undef, { include_columns => [ 'artist.name' ], join => [ 'artist' ] })->find(1);
164
165is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
166is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
167
67ba6646 168# check if new syntax +columns also works for this
169$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ 'artist.name' ], join => [ 'artist' ] })->find(1);
170
171is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
172is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
173
174# check if new syntax for +columns select specifiers works for this
175$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ {artist_name => 'artist.name'} ], join => [ 'artist' ] })->find(1);
176
177is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
178is($cd->get_column('artist_name'), 'Caterwauler McCrae', 'Additional column returned');
5ac6a044 179
82a96700 180# update_or_insert
f9db5527 181$new = $schema->resultset("Track")->new( {
0567538f 182 trackid => 100,
183 cd => 1,
0567538f 184 title => 'Insert or Update',
43556c5d 185 last_updated_on => '1973-07-19 12:01:02'
0567538f 186} );
82a96700 187$new->update_or_insert;
188ok($new->in_storage, 'update_or_insert insert ok');
0567538f 189
190# test in update mode
d6df786a 191$new->title('Insert or Update - updated');
82a96700 192$new->update_or_insert;
d6df786a 193is( $schema->resultset("Track")->find(100)->title, 'Insert or Update - updated', 'update_or_insert update ok');
0567538f 194
ba4a6453 195# get_inflated_columns w/relation and accessor alias
03a1819f 196SKIP: {
197 skip "This test requires DateTime::Format::MySQL", 8 if $NO_DTFM;
198
199 isa_ok($new->updated_date, 'DateTime', 'have inflated object via accessor');
200 my %tdata = $new->get_inflated_columns;
201 is($tdata{'trackid'}, 100, 'got id');
202 isa_ok($tdata{'cd'}, 'DBICTest::CD', 'cd is CD object');
203 is($tdata{'cd'}->id, 1, 'cd object is id 1');
d6df786a 204 is(
205 $tdata{'position'},
206 $schema->resultset ('Track')->search ({cd => 1})->count,
207 'Ordered assigned proper position',
208 );
209 is($tdata{'title'}, 'Insert or Update - updated');
03a1819f 210 is($tdata{'last_updated_on'}, '1973-07-19T12:01:02');
211 isa_ok($tdata{'last_updated_on'}, 'DateTime', 'inflated accessored column');
212}
ba4a6453 213
8c49f629 214eval { $schema->class("Track")->load_components('DoesNotExist'); };
0567538f 215
216ok $@, $@;
217
1edaf6fe 218is($schema->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdata usage ok');
90e6de6c 219
54540863 220my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ];
221
5b89a768 222my( $or_rs ) = $schema->resultset("CD")->search_rs($search, { join => 'tags',
6aeb9185 223 order_by => 'cdid' });
a48831c9 224# At this point in the test there are:
225# 1 artist with the cheesy AND blue tag
226# 1 artist with the cheesy tag
227# 2 artists with the blue tag
228#
229# Formerly this test expected 5 as there was no collapsing of the AND condition
230is($or_rs->count, 4, 'Search with OR ok');
54540863 231
f9db5527 232my $distinct_rs = $schema->resultset("CD")->search($search, { join => 'tags', distinct => 1 });
d2f21b37 233is($distinct_rs->all, 4, 'DISTINCT search with OR ok');
6aeb9185 234
1cc3ce1e 235{
d2f21b37 236 my $tcount = $schema->resultset('Track')->search(
286f32b3 237 {},
d2f21b37 238 {
11d68671 239 select => [ qw/position title/ ],
240 distinct => 1,
286f32b3 241 }
242 );
d2f21b37 243 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
244
11d68671 245 $tcount = $schema->resultset('Track')->search(
246 {},
247 {
248 columns => [ qw/position title/ ],
249 distinct => 1,
250 }
251 );
252 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
253
254 $tcount = $schema->resultset('Track')->search(
255 {},
256 {
257 group_by => [ qw/position title/ ]
258 }
259 );
260 is($tcount->count, 13, 'multiple column COUNT DISTINCT using column syntax ok');
f2de4889 261}
584e74ed 262
f9db5527 263my $tag_rs = $schema->resultset('Tag')->search(
6aeb9185 264 [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
265
266my $rel_rs = $tag_rs->search_related('cd');
267
a48831c9 268# At this point in the test there are:
269# 1 artist with the cheesy AND blue tag
270# 1 artist with the cheesy tag
271# 2 artists with the blue tag
272#
273# Formerly this test expected 5 as there was no collapsing of the AND condition
274is($rel_rs->count, 4, 'Related search ok');
6aeb9185 275
d2f21b37 276is($or_rs->next->cdid, $rel_rs->next->cdid, 'Related object ok');
a4731ae0 277$or_rs->reset;
278$rel_rs->reset;
a953d8d9 279
4c4ccf29 280my $tag = $schema->resultset('Tag')->search(
281 [ { 'me.tag' => 'Blue' } ], { cols=>[qw/tagid/] } )->next;
282
d2f21b37 283ok($tag->has_column_loaded('tagid'), 'Has tagid loaded');
284ok(!$tag->has_column_loaded('tag'), 'Has not tag loaded');
4c4ccf29 285
a953d8d9 286ok($schema->storage(), 'Storage available');
287
16b4fd26 288{
289 my $rs = $schema->resultset("Artist")->search({
290 -and => [
291 artistid => { '>=', 1 },
292 artistid => { '<', 3 }
293 ]
294 });
295
296 $rs->update({ name => 'Test _cond_for_update_delete' });
297
298 my $art;
299
300 $art = $schema->resultset("Artist")->find(1);
301 is($art->name, 'Test _cond_for_update_delete', 'updated first artist name');
302
303 $art = $schema->resultset("Artist")->find(2);
304 is($art->name, 'Test _cond_for_update_delete', 'updated second artist name');
305}
306
825135d8 307# test source_name
308{
309 # source_name should be set for normal modules
310 is($schema->source('CD')->source_name, 'CD', 'source_name is set to moniker');
a4731ae0 311
825135d8 312 # test the result source that sets source_name explictly
313 ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists');
0009fa49 314
825135d8 315 my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' });
d2f21b37 316 is(@artsn, 4, "Four artists returned");
b1fb2c94 317
318 # make sure subclasses that don't set source_name are ok
93405cf0 319 ok($schema->source('ArtistSubclass'), 'ArtistSubclass exists');
825135d8 320}
bab77431 321
9c2c91ea 322my $newbook = $schema->resultset( 'Bookmark' )->find(1);
323
d6df786a 324lives_ok (sub { my $newlink = $newbook->link}, "stringify to false value doesn't cause error");
9c2c91ea 325
825135d8 326# test cascade_delete through many_to_many relations
327{
328 my $art_del = $schema->resultset("Artist")->find({ artistid => 1 });
d6df786a 329 lives_ok (sub { $art_del->delete }, 'Cascading delete on Ordered has_many works' ); # real test in ordered.t
d2f21b37 330 is( $schema->resultset("CD")->search({artist => 1}), 0, 'Cascading through has_many top level.');
331 is( $schema->resultset("CD_to_Producer")->search({cd => 1}), 0, 'Cascading through has_many children.');
825135d8 332}
bab77431 333
825135d8 334# test column_info
335{
336 $schema->source("Artist")->{_columns}{'artistid'} = {};
d9916234 337 $schema->source("Artist")->column_info_from_storage(1);
bab77431 338
825135d8 339 my $typeinfo = $schema->source("Artist")->column_info('artistid');
340 is($typeinfo->{data_type}, 'INTEGER', 'column_info ok');
341 $schema->source("Artist")->column_info('artistid');
342 ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info flag set');
343}
bab77431 344
a48e92d7 345# test source_info
346{
347 my $expected = {
348 "source_info_key_A" => "source_info_value_A",
349 "source_info_key_B" => "source_info_value_B",
350 "source_info_key_C" => "source_info_value_C",
351 };
352
353 my $sinfo = $schema->source("Artist")->source_info;
354
355 is_deeply($sinfo, $expected, 'source_info data works');
356}
357
825135d8 358# test remove_columns
359{
4738027b 360 is_deeply(
361 [$schema->source('CD')->columns],
362 [qw/cdid artist title year genreid single_track/],
363 'initial columns',
364 );
365
366 $schema->source('CD')->remove_columns('coolyear'); #should not delete year
367 is_deeply(
368 [$schema->source('CD')->columns],
369 [qw/cdid artist title year genreid single_track/],
370 'nothing removed when removing a non-existent column',
371 );
372
373 $schema->source('CD')->remove_columns('genreid', 'year');
374 is_deeply(
375 [$schema->source('CD')->columns],
376 [qw/cdid artist title single_track/],
377 'removed two columns',
378 );
379
380 my $priv_columns = $schema->source('CD')->_columns;
381 ok(! exists $priv_columns->{'year'}, 'year purged from _columns');
382 ok(! exists $priv_columns->{'genreid'}, 'genreid purged from _columns');
825135d8 383}
bab77431 384
ba4a6453 385# test get_inflated_columns with objects
03a1819f 386SKIP: {
387 skip "This test requires DateTime::Format::MySQL", 5 if $NO_DTFM;
ba4a6453 388 my $event = $schema->resultset('Event')->search->first;
389 my %edata = $event->get_inflated_columns;
390 is($edata{'id'}, $event->id, 'got id');
391 isa_ok($edata{'starts_at'}, 'DateTime', 'start_at is DateTime object');
392 isa_ok($edata{'created_on'}, 'DateTime', 'create_on DateTime object');
393 is($edata{'starts_at'}, $event->starts_at, 'got start date');
394 is($edata{'created_on'}, $event->created_on, 'got created date');
395}
396
ade8df5b 397# test resultsource->table return value when setting
398{
399 my $class = $schema->class('Event');
ade8df5b 400 my $table = $class->table($class->table);
401 is($table, $class->table, '->table($table) returns $table');
402}
0e80c4ca 403
404#make sure insert doesn't use set_column
405{
406 my $en_row = $schema->resultset('Encoded')->new_result({encoded => 'wilma'});
407 is($en_row->encoded, 'amliw', 'new encodes');
408 $en_row->insert;
409 is($en_row->encoded, 'amliw', 'insert does not encode again');
410}