Changes so far
[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;
b49cd082 8use DBIC::SqlMakerTest;
70350518 9
ae515736 10my $schema = DBICTest->init_schema();
0567538f 11
9b44fdf9 12eval { require DateTime::Format::SQLite };
03a1819f 13my $NO_DTFM = $@ ? 1 : 0;
14
f9db5527 15my @art = $schema->resultset("Artist")->search({ }, { order_by => 'name DESC'});
0567538f 16
d2f21b37 17is(@art, 3, "Three artists returned");
0567538f 18
19my $art = $art[0];
20
21is($art->name, 'We Are Goth', "Correct order too");
22
23$art->name('We Are In Rehab');
24
25is($art->name, 'We Are In Rehab', "Accessor update ok");
26
6dbea98e 27my %dirty = $art->get_dirty_columns();
d2f21b37 28is(scalar(keys(%dirty)), 1, '1 dirty column');
6dbea98e 29ok(grep($_ eq 'name', keys(%dirty)), 'name is dirty');
30
0567538f 31is($art->get_column("name"), 'We Are In Rehab', 'And via get_column');
32
33ok($art->update, 'Update run');
34
6dbea98e 35my %not_dirty = $art->get_dirty_columns();
d2f21b37 36is(scalar(keys(%not_dirty)), 0, 'Nothing is dirty');
6dbea98e 37
38eval {
39 my $ret = $art->make_column_dirty('name2');
40};
41ok(defined($@), 'Failed to make non-existent column dirty');
42$art->make_column_dirty('name');
43my %fake_dirty = $art->get_dirty_columns();
d2f21b37 44is(scalar(keys(%fake_dirty)), 1, '1 fake dirty column');
6dbea98e 45ok(grep($_ eq 'name', keys(%fake_dirty)), 'name is fake dirty');
46
ae515736 47my $record_jp = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => 'cds' })->next;
48
49ok($record_jp, "prefetch on same rel okay");
50
51my $record_fn = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search({'cds.cdid' => '1'}, {join => 'artist_undirected_maps'})->next;
52
53ok($record_fn, "funny join is okay");
54
f9db5527 55@art = $schema->resultset("Artist")->search({ name => 'We Are In Rehab' });
0567538f 56
d2f21b37 57is(@art, 1, "Changed artist returned by search");
0567538f 58
d2f21b37 59is($art[0]->artistid, 3,'Correct artist too');
0567538f 60
d6df786a 61lives_ok (sub { $art->delete }, 'Cascading delete on Ordered has_many works' ); # real test in ordered.t
0567538f 62
f9db5527 63@art = $schema->resultset("Artist")->search({ });
0567538f 64
d2f21b37 65is(@art, 2, 'And then there were two');
0567538f 66
67ok(!$art->in_storage, "It knows it's dead");
68
d6df786a 69dies_ok ( sub { $art->delete }, "Can't delete twice");
0567538f 70
71is($art->name, 'We Are In Rehab', 'But the object is still live');
72
73$art->insert;
74
75ok($art->in_storage, "Re-created");
76
f9db5527 77@art = $schema->resultset("Artist")->search({ });
0567538f 78
d2f21b37 79is(@art, 3, 'And now there are three again');
0567538f 80
f9db5527 81my $new = $schema->resultset("Artist")->create({ artistid => 4 });
0567538f 82
d2f21b37 83is($new->artistid, 4, 'Create produced record ok');
0567538f 84
f9db5527 85@art = $schema->resultset("Artist")->search({ });
0567538f 86
d2f21b37 87is(@art, 4, "Oh my god! There's four of them!");
0567538f 88
89$new->set_column('name' => 'Man With A Fork');
90
91is($new->name, 'Man With A Fork', 'set_column ok');
92
93$new->discard_changes;
94
95ok(!defined $new->name, 'Discard ok');
96
97$new->name('Man With A Spoon');
98
99$new->update;
100
70350518 101my $new_again = $schema->resultset("Artist")->find(4);
0567538f 102
103is($new_again->name, 'Man With A Spoon', 'Retrieved correctly');
104
9bbd8963 105is($new_again->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
1f6715ab 106
52c53388 107# test that store_column is called once for create() for non sequence columns
108{
109 ok(my $artist = $schema->resultset('Artist')->create({name => 'store_column test'}));
110 is($artist->name, 'X store_column test'); # used to be 'X X store...'
a22688ab 111
112 # call store_column even though the column doesn't seem to be dirty
113 ok($artist->update({name => 'X store_column test'}));
114 is($artist->name, 'X X store_column test');
52c53388 115 $artist->delete;
116}
117
a87eb971 118# Test backwards compatibility
119{
13e6ab63 120 my $warnings = '';
121 local $SIG{__WARN__} = sub { $warnings .= $_[0] };
122
123 my $artist_by_hash = $schema->resultset('Artist')->find(artistid => 4);
a87eb971 124 is($artist_by_hash->name, 'Man With A Spoon', 'Retrieved correctly');
125 is($artist_by_hash->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
13e6ab63 126 like($warnings, qr/deprecated/, 'warned about deprecated find usage');
a87eb971 127}
128
f9db5527 129is($schema->resultset("Artist")->count, 4, 'count ok');
0567538f 130
b3e1f1f5 131# test find_or_new
132{
133 my $existing_obj = $schema->resultset('Artist')->find_or_new({
134 artistid => 4,
135 });
136
137 is($existing_obj->name, 'Man With A Spoon', 'find_or_new: found existing artist');
138 ok($existing_obj->in_storage, 'existing artist is in storage');
139
140 my $new_obj = $schema->resultset('Artist')->find_or_new({
141 artistid => 5,
142 name => 'find_or_new',
143 });
144
145 is($new_obj->name, 'find_or_new', 'find_or_new: instantiated a new artist');
146 ok(! $new_obj->in_storage, 'new artist is not in storage');
147}
148
f9db5527 149my $cd = $schema->resultset("CD")->find(1);
076a6864 150my %cols = $cd->get_columns;
151
d2f21b37 152is(keys %cols, 6, 'get_columns number of columns ok');
076a6864 153
154is($cols{title}, 'Spoonful of bees', 'get_columns values ok');
155
156%cols = ( title => 'Forkful of bees', year => 2005);
157$cd->set_columns(\%cols);
158
159is($cd->title, 'Forkful of bees', 'set_columns ok');
160
161is($cd->year, 2005, 'set_columns ok');
162
163$cd->discard_changes;
164
20518cb4 165# check whether ResultSource->columns returns columns in order originally supplied
166my @cd = $schema->source("CD")->columns;
571dced3 167
a1cb5921 168is_deeply( \@cd, [qw/cdid artist title year genreid single_track/], 'column order');
571dced3 169
82a96700 170$cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { columns => ['title'] })->next;
90f3f5ff 171is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly');
172
5ac6a044 173$cd = $schema->resultset("CD")->search(undef, { include_columns => [ 'artist.name' ], join => [ 'artist' ] })->find(1);
174
175is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
176is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
177
67ba6646 178# check if new syntax +columns also works for this
179$cd = $schema->resultset("CD")->search(undef, { '+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
184# check if new syntax for +columns select specifiers works for this
185$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ {artist_name => 'artist.name'} ], join => [ 'artist' ] })->find(1);
186
187is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
188is($cd->get_column('artist_name'), 'Caterwauler McCrae', 'Additional column returned');
5ac6a044 189
82a96700 190# update_or_insert
f9db5527 191$new = $schema->resultset("Track")->new( {
0567538f 192 trackid => 100,
193 cd => 1,
0567538f 194 title => 'Insert or Update',
43556c5d 195 last_updated_on => '1973-07-19 12:01:02'
0567538f 196} );
82a96700 197$new->update_or_insert;
198ok($new->in_storage, 'update_or_insert insert ok');
0567538f 199
200# test in update mode
d6df786a 201$new->title('Insert or Update - updated');
82a96700 202$new->update_or_insert;
d6df786a 203is( $schema->resultset("Track")->find(100)->title, 'Insert or Update - updated', 'update_or_insert update ok');
0567538f 204
ba4a6453 205# get_inflated_columns w/relation and accessor alias
03a1819f 206SKIP: {
9b44fdf9 207 skip "This test requires DateTime::Format::SQLite", 8 if $NO_DTFM;
03a1819f 208
209 isa_ok($new->updated_date, 'DateTime', 'have inflated object via accessor');
210 my %tdata = $new->get_inflated_columns;
211 is($tdata{'trackid'}, 100, 'got id');
212 isa_ok($tdata{'cd'}, 'DBICTest::CD', 'cd is CD object');
213 is($tdata{'cd'}->id, 1, 'cd object is id 1');
d6df786a 214 is(
215 $tdata{'position'},
216 $schema->resultset ('Track')->search ({cd => 1})->count,
217 'Ordered assigned proper position',
218 );
219 is($tdata{'title'}, 'Insert or Update - updated');
03a1819f 220 is($tdata{'last_updated_on'}, '1973-07-19T12:01:02');
221 isa_ok($tdata{'last_updated_on'}, 'DateTime', 'inflated accessored column');
222}
ba4a6453 223
8c49f629 224eval { $schema->class("Track")->load_components('DoesNotExist'); };
0567538f 225
226ok $@, $@;
227
1edaf6fe 228is($schema->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdata usage ok');
90e6de6c 229
54540863 230my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ];
231
5b89a768 232my( $or_rs ) = $schema->resultset("CD")->search_rs($search, { join => 'tags',
6aeb9185 233 order_by => 'cdid' });
a258ee5d 234is($or_rs->all, 5, 'Joined search with OR returned correct number of rows');
235is($or_rs->count, 5, 'Search count with OR ok');
54540863 236
a258ee5d 237my $collapsed_or_rs = $or_rs->search ({}, { distinct => 1 }); # induce collapse
238is ($collapsed_or_rs->all, 4, 'Collapsed joined search with OR returned correct number of rows');
239is ($collapsed_or_rs->count, 4, 'Collapsed search count with OR ok');
6aeb9185 240
1cc3ce1e 241{
d2f21b37 242 my $tcount = $schema->resultset('Track')->search(
286f32b3 243 {},
d2f21b37 244 {
11d68671 245 select => [ qw/position title/ ],
246 distinct => 1,
286f32b3 247 }
248 );
d2f21b37 249 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
250
11d68671 251 $tcount = $schema->resultset('Track')->search(
252 {},
253 {
254 columns => [ qw/position title/ ],
255 distinct => 1,
256 }
257 );
258 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
259
260 $tcount = $schema->resultset('Track')->search(
261 {},
262 {
263 group_by => [ qw/position title/ ]
264 }
265 );
266 is($tcount->count, 13, 'multiple column COUNT DISTINCT using column syntax ok');
f2de4889 267}
584e74ed 268
f9db5527 269my $tag_rs = $schema->resultset('Tag')->search(
6aeb9185 270 [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
271
272my $rel_rs = $tag_rs->search_related('cd');
273
a258ee5d 274is($rel_rs->count, 5, '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: {
9b44fdf9 387 skip "This test requires DateTime::Format::SQLite", 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}
3bb4eb8f 411
412# make sure we got rid of the compat shims
413SKIP: {
414 skip "Remove in 0.09", 5 if $DBIx::Class::VERSION < 0.09;
415
416 for (qw/compare_relationship_keys pk_depends_on resolve_condition resolve_join resolve_prefetch/) {
417 ok (! DBIx::Class::ResultSource->can ($_), "$_ no longer provided by DBIx::Class::ResultSource");
418 }
419}
42a87bbb 420
421#------------------------------
422# READ THIS BEFORE "FIXING"
423#------------------------------
424#
425# make sure we got rid of discard_changes mess - this is a mess and a source
426# of great confusion. Here I simply die if the methods are available, which
427# is wrong on its own (we *have* to provide some sort of back-compat, even
428# if with warnings). Here is how I envision things should actually be. Also
429# note that a lot of the deprecation can be started today (i.e. the switch
430# from get_from_storage to copy_from_storage). So:
431#
432# $row->discard_changes =>
433# warning, and delegation to reload_from_storage
434#
435# $row->reload_from_storage =>
436# does what discard changes did in 0.08 - issues a query to the db
437# and repopulates all column slots, regardless of dirty states etc.
438#
439# $row->revert_changes =>
440# does what discard_changes should have done initially (before it became
441# a dual-purpose call). In order to make this work we will have to
442# augment $row to carry its own initial-state, much like svn has a
443# copy of the current checkout in contrast to cvs.
444#
445# my $db_row = $row->get_from_storage =>
446# warns and delegates to an improved name copy_from_storage, with the
447# same semantics
448#
449# my $db_row = $row->copy_from_storage =>
450# a much better/descriptive name than get_from_storage
451#
452#------------------------------
453# READ THIS BEFORE "FIXING"
454#------------------------------
455#
456SKIP: {
457 skip "Something needs to be done before 0.09", 2 if $DBIx::Class::VERSION < 0.09;
458
459 my $row = $schema->resultset ('Artist')->next;
460
461 for (qw/discard_changes get_from_storage/) {
462 ok (! $row->can ($_), "$_ needs *some* sort of facelift before 0.09 ships - current state of affairs is unacceptable");
463 }
464}
465
73d47f9f 466throws_ok { $schema->resultset} qr/resultset\(\) expects a source name/, 'resultset with no argument throws exception';
467
42a87bbb 468done_testing;