Passes all tests
[dbsrgits/DBIx-Class.git] / t / 60core.t
CommitLineData
70350518 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
ae515736 8my $schema = DBICTest->init_schema();
0567538f 9
67ba6646 10plan tests => 88;
0567538f 11
03a1819f 12eval { require DateTime::Format::MySQL };
13my $NO_DTFM = $@ ? 1 : 0;
14
f2de4889 15# figure out if we've got a version of sqlite that is older than 3.2.6, in
16# which case COUNT(DISTINCT()) doesn't work
17my $is_broken_sqlite = 0;
18my ($sqlite_major_ver,$sqlite_minor_ver,$sqlite_patch_ver) =
19 split /\./, $schema->storage->dbh->get_info(18);
20if( $schema->storage->dbh->get_info(17) eq 'SQLite' &&
21 ( ($sqlite_major_ver < 3) ||
22 ($sqlite_major_ver == 3 && $sqlite_minor_ver < 2) ||
23 ($sqlite_major_ver == 3 && $sqlite_minor_ver == 2 && $sqlite_patch_ver < 6) ) ) {
24 $is_broken_sqlite = 1;
25}
26
0567538f 27
f9db5527 28my @art = $schema->resultset("Artist")->search({ }, { order_by => 'name DESC'});
0567538f 29
30cmp_ok(@art, '==', 3, "Three artists returned");
31
32my $art = $art[0];
33
34is($art->name, 'We Are Goth', "Correct order too");
35
36$art->name('We Are In Rehab');
37
38is($art->name, 'We Are In Rehab', "Accessor update ok");
39
6dbea98e 40my %dirty = $art->get_dirty_columns();
41cmp_ok(scalar(keys(%dirty)), '==', 1, '1 dirty column');
42ok(grep($_ eq 'name', keys(%dirty)), 'name is dirty');
43
0567538f 44is($art->get_column("name"), 'We Are In Rehab', 'And via get_column');
45
46ok($art->update, 'Update run');
47
6dbea98e 48my %not_dirty = $art->get_dirty_columns();
49cmp_ok(scalar(keys(%not_dirty)), '==', 0, 'Nothing is dirty');
50
51eval {
52 my $ret = $art->make_column_dirty('name2');
53};
54ok(defined($@), 'Failed to make non-existent column dirty');
55$art->make_column_dirty('name');
56my %fake_dirty = $art->get_dirty_columns();
57cmp_ok(scalar(keys(%fake_dirty)), '==', 1, '1 fake dirty column');
58ok(grep($_ eq 'name', keys(%fake_dirty)), 'name is fake dirty');
59
ae515736 60my $record_jp = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => 'cds' })->next;
61
62ok($record_jp, "prefetch on same rel okay");
63
64my $record_fn = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search({'cds.cdid' => '1'}, {join => 'artist_undirected_maps'})->next;
65
66ok($record_fn, "funny join is okay");
67
f9db5527 68@art = $schema->resultset("Artist")->search({ name => 'We Are In Rehab' });
0567538f 69
70cmp_ok(@art, '==', 1, "Changed artist returned by search");
71
72cmp_ok($art[0]->artistid, '==', 3,'Correct artist too');
73
74$art->delete;
75
f9db5527 76@art = $schema->resultset("Artist")->search({ });
0567538f 77
78cmp_ok(@art, '==', 2, 'And then there were two');
79
80ok(!$art->in_storage, "It knows it's dead");
81
82eval { $art->delete; };
83
84ok($@, "Can't delete twice: $@");
85
86is($art->name, 'We Are In Rehab', 'But the object is still live');
87
88$art->insert;
89
90ok($art->in_storage, "Re-created");
91
f9db5527 92@art = $schema->resultset("Artist")->search({ });
0567538f 93
94cmp_ok(@art, '==', 3, 'And now there are three again');
95
f9db5527 96my $new = $schema->resultset("Artist")->create({ artistid => 4 });
0567538f 97
98cmp_ok($new->artistid, '==', 4, 'Create produced record ok');
99
f9db5527 100@art = $schema->resultset("Artist")->search({ });
0567538f 101
102cmp_ok(@art, '==', 4, "Oh my god! There's four of them!");
103
104$new->set_column('name' => 'Man With A Fork');
105
106is($new->name, 'Man With A Fork', 'set_column ok');
107
108$new->discard_changes;
109
110ok(!defined $new->name, 'Discard ok');
111
112$new->name('Man With A Spoon');
113
114$new->update;
115
70350518 116my $new_again = $schema->resultset("Artist")->find(4);
0567538f 117
118is($new_again->name, 'Man With A Spoon', 'Retrieved correctly');
119
9bbd8963 120is($new_again->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
1f6715ab 121
a87eb971 122# Test backwards compatibility
123{
13e6ab63 124 my $warnings = '';
125 local $SIG{__WARN__} = sub { $warnings .= $_[0] };
126
127 my $artist_by_hash = $schema->resultset('Artist')->find(artistid => 4);
a87eb971 128 is($artist_by_hash->name, 'Man With A Spoon', 'Retrieved correctly');
129 is($artist_by_hash->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
13e6ab63 130 like($warnings, qr/deprecated/, 'warned about deprecated find usage');
a87eb971 131}
132
f9db5527 133is($schema->resultset("Artist")->count, 4, 'count ok');
0567538f 134
b3e1f1f5 135# test find_or_new
136{
137 my $existing_obj = $schema->resultset('Artist')->find_or_new({
138 artistid => 4,
139 });
140
141 is($existing_obj->name, 'Man With A Spoon', 'find_or_new: found existing artist');
142 ok($existing_obj->in_storage, 'existing artist is in storage');
143
144 my $new_obj = $schema->resultset('Artist')->find_or_new({
145 artistid => 5,
146 name => 'find_or_new',
147 });
148
149 is($new_obj->name, 'find_or_new', 'find_or_new: instantiated a new artist');
150 ok(! $new_obj->in_storage, 'new artist is not in storage');
151}
152
f9db5527 153my $cd = $schema->resultset("CD")->find(1);
076a6864 154my %cols = $cd->get_columns;
155
370f2ba2 156cmp_ok(keys %cols, '==', 5, 'get_columns number of columns ok');
076a6864 157
158is($cols{title}, 'Spoonful of bees', 'get_columns values ok');
159
160%cols = ( title => 'Forkful of bees', year => 2005);
161$cd->set_columns(\%cols);
162
163is($cd->title, 'Forkful of bees', 'set_columns ok');
164
165is($cd->year, 2005, 'set_columns ok');
166
167$cd->discard_changes;
168
20518cb4 169# check whether ResultSource->columns returns columns in order originally supplied
170my @cd = $schema->source("CD")->columns;
571dced3 171
370f2ba2 172is_deeply( \@cd, [qw/cdid artist title year genreid/], 'column order');
571dced3 173
82a96700 174$cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { columns => ['title'] })->next;
90f3f5ff 175is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly');
176
5ac6a044 177$cd = $schema->resultset("CD")->search(undef, { include_columns => [ 'artist.name' ], join => [ 'artist' ] })->find(1);
178
179is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
180is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
67ba6646 181
182# check if new syntax +columns also works for this
183$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ 'artist.name' ], join => [ 'artist' ] })->find(1);
184
185is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
186is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
187
188# check if new syntax for +columns select specifiers works for this
189$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ {artist_name => 'artist.name'} ], join => [ 'artist' ] })->find(1);
190
191is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
192is($cd->get_column('artist_name'), 'Caterwauler McCrae', 'Additional column returned');
5ac6a044 193
82a96700 194# update_or_insert
f9db5527 195$new = $schema->resultset("Track")->new( {
0567538f 196 trackid => 100,
197 cd => 1,
365d06b7 198 position => 4,
0567538f 199 title => 'Insert or Update',
43556c5d 200 last_updated_on => '1973-07-19 12:01:02'
0567538f 201} );
82a96700 202$new->update_or_insert;
203ok($new->in_storage, 'update_or_insert insert ok');
0567538f 204
205# test in update mode
91b0fbd7 206$new->pos(5);
82a96700 207$new->update_or_insert;
208is( $schema->resultset("Track")->find(100)->pos, 5, 'update_or_insert update ok');
0567538f 209
ba4a6453 210# get_inflated_columns w/relation and accessor alias
03a1819f 211SKIP: {
212 skip "This test requires DateTime::Format::MySQL", 8 if $NO_DTFM;
213
214 isa_ok($new->updated_date, 'DateTime', 'have inflated object via accessor');
215 my %tdata = $new->get_inflated_columns;
216 is($tdata{'trackid'}, 100, 'got id');
217 isa_ok($tdata{'cd'}, 'DBICTest::CD', 'cd is CD object');
218 is($tdata{'cd'}->id, 1, 'cd object is id 1');
219 is($tdata{'position'}, 5, 'got position from pos');
220 is($tdata{'title'}, 'Insert or Update');
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
8c49f629 225eval { $schema->class("Track")->load_components('DoesNotExist'); };
0567538f 226
227ok $@, $@;
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' });
54540863 235
6aeb9185 236cmp_ok($or_rs->count, '==', 5, 'Search with OR ok');
54540863 237
f9db5527 238my $distinct_rs = $schema->resultset("CD")->search($search, { join => 'tags', distinct => 1 });
6aeb9185 239cmp_ok($distinct_rs->all, '==', 4, 'DISTINCT search with OR ok');
240
f2de4889 241SKIP: {
242 skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
243 if $is_broken_sqlite;
244
245 my $tcount = $schema->resultset("Track")->search(
286f32b3 246 {},
f2de4889 247 {
248 select => {count => {distinct => ['position', 'title']}},
249 as => ['count']
286f32b3 250 }
251 );
f2de4889 252 cmp_ok($tcount->next->get_column('count'), '==', 13, 'multiple column COUNT DISTINCT ok');
286f32b3 253
f2de4889 254}
f9db5527 255my $tag_rs = $schema->resultset('Tag')->search(
6aeb9185 256 [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
257
258my $rel_rs = $tag_rs->search_related('cd');
259
260cmp_ok($rel_rs->count, '==', 5, 'Related search ok');
261
262cmp_ok($or_rs->next->cdid, '==', $rel_rs->next->cdid, 'Related object ok');
a4731ae0 263$or_rs->reset;
264$rel_rs->reset;
a953d8d9 265
4c4ccf29 266my $tag = $schema->resultset('Tag')->search(
267 [ { 'me.tag' => 'Blue' } ], { cols=>[qw/tagid/] } )->next;
268
269cmp_ok($tag->has_column_loaded('tagid'), '==', 1, 'Has tagid loaded');
270cmp_ok($tag->has_column_loaded('tag'), '==', 0, 'Has not tag loaded');
271
a953d8d9 272ok($schema->storage(), 'Storage available');
273
16b4fd26 274{
275 my $rs = $schema->resultset("Artist")->search({
276 -and => [
277 artistid => { '>=', 1 },
278 artistid => { '<', 3 }
279 ]
280 });
281
282 $rs->update({ name => 'Test _cond_for_update_delete' });
283
284 my $art;
285
286 $art = $schema->resultset("Artist")->find(1);
287 is($art->name, 'Test _cond_for_update_delete', 'updated first artist name');
288
289 $art = $schema->resultset("Artist")->find(2);
290 is($art->name, 'Test _cond_for_update_delete', 'updated second artist name');
291}
292
825135d8 293# test source_name
294{
295 # source_name should be set for normal modules
296 is($schema->source('CD')->source_name, 'CD', 'source_name is set to moniker');
a4731ae0 297
825135d8 298 # test the result source that sets source_name explictly
299 ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists');
0009fa49 300
825135d8 301 my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' });
302 cmp_ok(@artsn, '==', 4, "Four artists returned");
b1fb2c94 303
304 # make sure subclasses that don't set source_name are ok
93405cf0 305 ok($schema->source('ArtistSubclass'), 'ArtistSubclass exists');
825135d8 306}
bab77431 307
9c2c91ea 308my $newbook = $schema->resultset( 'Bookmark' )->find(1);
309
310$@ = '';
311eval {
312my $newlink = $newbook->link;
313};
314ok(!$@, "stringify to false value doesn't cause error");
315
825135d8 316# test cascade_delete through many_to_many relations
317{
318 my $art_del = $schema->resultset("Artist")->find({ artistid => 1 });
319 $art_del->delete;
320 cmp_ok( $schema->resultset("CD")->search({artist => 1}), '==', 0, 'Cascading through has_many top level.');
321 cmp_ok( $schema->resultset("CD_to_Producer")->search({cd => 1}), '==', 0, 'Cascading through has_many children.');
322}
bab77431 323
825135d8 324# test column_info
325{
326 $schema->source("Artist")->{_columns}{'artistid'} = {};
d9916234 327 $schema->source("Artist")->column_info_from_storage(1);
bab77431 328
825135d8 329 my $typeinfo = $schema->source("Artist")->column_info('artistid');
330 is($typeinfo->{data_type}, 'INTEGER', 'column_info ok');
331 $schema->source("Artist")->column_info('artistid');
332 ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info flag set');
333}
bab77431 334
a48e92d7 335# test source_info
336{
337 my $expected = {
338 "source_info_key_A" => "source_info_value_A",
339 "source_info_key_B" => "source_info_value_B",
340 "source_info_key_C" => "source_info_value_C",
341 };
342
343 my $sinfo = $schema->source("Artist")->source_info;
344
345 is_deeply($sinfo, $expected, 'source_info data works');
346}
347
825135d8 348# test remove_columns
349{
370f2ba2 350 is_deeply([$schema->source('CD')->columns], [qw/cdid artist title year genreid/]);
825135d8 351 $schema->source('CD')->remove_columns('year');
370f2ba2 352 is_deeply([$schema->source('CD')->columns], [qw/cdid artist title genreid/]);
a918d901 353 ok(! exists $schema->source('CD')->_columns->{'year'}, 'year still exists in _columns');
825135d8 354}
bab77431 355
ba4a6453 356# test get_inflated_columns with objects
03a1819f 357SKIP: {
358 skip "This test requires DateTime::Format::MySQL", 5 if $NO_DTFM;
ba4a6453 359 my $event = $schema->resultset('Event')->search->first;
360 my %edata = $event->get_inflated_columns;
361 is($edata{'id'}, $event->id, 'got id');
362 isa_ok($edata{'starts_at'}, 'DateTime', 'start_at is DateTime object');
363 isa_ok($edata{'created_on'}, 'DateTime', 'create_on DateTime object');
364 is($edata{'starts_at'}, $event->starts_at, 'got start date');
365 is($edata{'created_on'}, $event->created_on, 'got created date');
366}
367
ade8df5b 368# test resultsource->table return value when setting
369{
370 my $class = $schema->class('Event');
371 diag $class;
372 my $table = $class->table($class->table);
373 is($table, $class->table, '->table($table) returns $table');
374}