remove hackish ways
[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 is(@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 is(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 is(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 is(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 is(@art, 1, "Changed artist returned by search");
72
73 is($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 is(@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 is(@art, 3, 'And now there are three again');
94
95 my $new = $schema->resultset("Artist")->create({ artistid => 4 });
96
97 is($new->artistid, 4, 'Create produced record ok');
98
99 @art = $schema->resultset("Artist")->search({ });
100
101 is(@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 is(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 is($or_rs->count, 5, 'Search with OR ok');
239
240 my $distinct_rs = $schema->resultset("CD")->search($search, { join => 'tags', distinct => 1 });
241 is($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 => [ qw/position title/ ]
251     }
252   );
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');  
262 }
263
264 my $tag_rs = $schema->resultset('Tag')->search(
265                [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
266
267 my $rel_rs = $tag_rs->search_related('cd');
268
269 is($rel_rs->count, 5, 'Related search ok');
270
271 is($or_rs->next->cdid, $rel_rs->next->cdid, 'Related object ok');
272 $or_rs->reset;
273 $rel_rs->reset;
274
275 my $tag = $schema->resultset('Tag')->search(
276                [ { 'me.tag' => 'Blue' } ], { cols=>[qw/tagid/] } )->next;
277
278 ok($tag->has_column_loaded('tagid'), 'Has tagid loaded');
279 ok(!$tag->has_column_loaded('tag'), 'Has not tag loaded');
280
281 ok($schema->storage(), 'Storage available');
282
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
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');
306
307   # test the result source that sets source_name explictly
308   ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists');
309
310   my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' });
311   is(@artsn, 4, "Four artists returned");
312   
313   # make sure subclasses that don't set source_name are ok
314   ok($schema->source('ArtistSubclass'), 'ArtistSubclass exists');
315 }
316
317 my $newbook = $schema->resultset( 'Bookmark' )->find(1);
318
319 lives_ok (sub { my $newlink = $newbook->link}, "stringify to false value doesn't cause error");
320
321 # test cascade_delete through many_to_many relations
322 {
323   my $art_del = $schema->resultset("Artist")->find({ artistid => 1 });
324   lives_ok (sub { $art_del->delete }, 'Cascading delete on Ordered has_many works' );  # real test in ordered.t
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.');
327 }
328
329 # test column_info
330 {
331   $schema->source("Artist")->{_columns}{'artistid'} = {};
332   $schema->source("Artist")->column_info_from_storage(1);
333
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 }
339
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
353 # test remove_columns
354 {
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');
378 }
379
380 # test get_inflated_columns with objects
381 SKIP: {
382     skip "This test requires DateTime::Format::MySQL", 5 if $NO_DTFM;
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
392 # test resultsource->table return value when setting
393 {
394     my $class = $schema->class('Event');
395     my $table = $class->table($class->table);
396     is($table, $class->table, '->table($table) returns $table');
397 }
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 }