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