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