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