correct args in wrong order in deplo_statements
[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 => 90;
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 # update_or_insert
182 $new = $schema->resultset("Track")->new( {
183   trackid => 100,
184   cd => 1,
185   title => 'Insert or Update',
186   last_updated_on => '1973-07-19 12:01:02'
187 } );
188 $new->update_or_insert;
189 ok($new->in_storage, 'update_or_insert insert ok');
190
191 # test in update mode
192 $new->title('Insert or Update - updated');
193 $new->update_or_insert;
194 is( $schema->resultset("Track")->find(100)->title, 'Insert or Update - updated', 'update_or_insert update ok');
195
196 # get_inflated_columns w/relation and accessor alias
197 SKIP: {
198     skip "This test requires DateTime::Format::MySQL", 8 if $NO_DTFM;
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');
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');
211     is($tdata{'last_updated_on'}, '1973-07-19T12:01:02');
212     isa_ok($tdata{'last_updated_on'}, 'DateTime', 'inflated accessored column');
213 }
214
215 eval { $schema->class("Track")->load_components('DoesNotExist'); };
216
217 ok $@, $@;
218
219 is($schema->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdata usage ok');
220
221 my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ];
222
223 my( $or_rs ) = $schema->resultset("CD")->search_rs($search, { join => 'tags',
224                                                   order_by => 'cdid' });
225
226 cmp_ok($or_rs->count, '==', 5, 'Search with OR ok');
227
228 my $distinct_rs = $schema->resultset("CD")->search($search, { join => 'tags', distinct => 1 });
229 cmp_ok($distinct_rs->all, '==', 4, 'DISTINCT search with OR ok');
230
231 SKIP: {
232   skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
233     if $is_broken_sqlite;
234
235   my $tcount = $schema->resultset("Track")->search(
236     {},
237     {       
238        select => {count => {distinct => ['position', 'title']}},
239            as => ['count']
240     }
241   );
242   cmp_ok($tcount->next->get_column('count'), '==', 13, 'multiple column COUNT DISTINCT ok');
243
244 }
245 my $tag_rs = $schema->resultset('Tag')->search(
246                [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
247
248 my $rel_rs = $tag_rs->search_related('cd');
249
250 cmp_ok($rel_rs->count, '==', 5, 'Related search ok');
251
252 cmp_ok($or_rs->next->cdid, '==', $rel_rs->next->cdid, 'Related object ok');
253 $or_rs->reset;
254 $rel_rs->reset;
255
256 my $tag = $schema->resultset('Tag')->search(
257                [ { 'me.tag' => 'Blue' } ], { cols=>[qw/tagid/] } )->next;
258
259 cmp_ok($tag->has_column_loaded('tagid'), '==', 1, 'Has tagid loaded');
260 cmp_ok($tag->has_column_loaded('tag'), '==', 0, 'Has not tag  loaded');
261
262 ok($schema->storage(), 'Storage available');
263
264 {
265   my $rs = $schema->resultset("Artist")->search({
266     -and => [
267       artistid => { '>=', 1 },
268       artistid => { '<', 3 }
269     ]
270   });
271
272   $rs->update({ name => 'Test _cond_for_update_delete' });
273
274   my $art;
275
276   $art = $schema->resultset("Artist")->find(1);
277   is($art->name, 'Test _cond_for_update_delete', 'updated first artist name');
278
279   $art = $schema->resultset("Artist")->find(2);
280   is($art->name, 'Test _cond_for_update_delete', 'updated second artist name');
281 }
282
283 # test source_name
284 {
285   # source_name should be set for normal modules
286   is($schema->source('CD')->source_name, 'CD', 'source_name is set to moniker');
287
288   # test the result source that sets source_name explictly
289   ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists');
290
291   my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' });
292   cmp_ok(@artsn, '==', 4, "Four artists returned");
293   
294   # make sure subclasses that don't set source_name are ok
295   ok($schema->source('ArtistSubclass'), 'ArtistSubclass exists');
296 }
297
298 my $newbook = $schema->resultset( 'Bookmark' )->find(1);
299
300 lives_ok (sub { my $newlink = $newbook->link}, "stringify to false value doesn't cause error");
301
302 # test cascade_delete through many_to_many relations
303 {
304   my $art_del = $schema->resultset("Artist")->find({ artistid => 1 });
305   lives_ok (sub { $art_del->delete }, 'Cascading delete on Ordered has_many works' );  # real test in ordered.t
306   cmp_ok( $schema->resultset("CD")->search({artist => 1}), '==', 0, 'Cascading through has_many top level.');
307   cmp_ok( $schema->resultset("CD_to_Producer")->search({cd => 1}), '==', 0, 'Cascading through has_many children.');
308 }
309
310 # test column_info
311 {
312   $schema->source("Artist")->{_columns}{'artistid'} = {};
313   $schema->source("Artist")->column_info_from_storage(1);
314
315   my $typeinfo = $schema->source("Artist")->column_info('artistid');
316   is($typeinfo->{data_type}, 'INTEGER', 'column_info ok');
317   $schema->source("Artist")->column_info('artistid');
318   ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info flag set');
319 }
320
321 # test source_info
322 {
323   my $expected = {
324     "source_info_key_A" => "source_info_value_A",
325     "source_info_key_B" => "source_info_value_B",
326     "source_info_key_C" => "source_info_value_C",
327   };
328
329   my $sinfo = $schema->source("Artist")->source_info;
330
331   is_deeply($sinfo, $expected, 'source_info data works');
332 }
333
334 # test remove_columns
335 {
336   is_deeply(
337     [$schema->source('CD')->columns],
338     [qw/cdid artist title year genreid single_track/],
339     'initial columns',
340   );
341
342   $schema->source('CD')->remove_columns('coolyear'); #should not delete year
343   is_deeply(
344     [$schema->source('CD')->columns],
345     [qw/cdid artist title year genreid single_track/],
346     'nothing removed when removing a non-existent column',
347   );
348
349   $schema->source('CD')->remove_columns('genreid', 'year');
350   is_deeply(
351     [$schema->source('CD')->columns],
352     [qw/cdid artist title single_track/],
353     'removed two columns',
354   );
355
356   my $priv_columns = $schema->source('CD')->_columns;
357   ok(! exists $priv_columns->{'year'}, 'year purged from _columns');
358   ok(! exists $priv_columns->{'genreid'}, 'genreid purged from _columns');
359 }
360
361 # test get_inflated_columns with objects
362 SKIP: {
363     skip "This test requires DateTime::Format::MySQL", 5 if $NO_DTFM;
364     my $event = $schema->resultset('Event')->search->first;
365     my %edata = $event->get_inflated_columns;
366     is($edata{'id'}, $event->id, 'got id');
367     isa_ok($edata{'starts_at'}, 'DateTime', 'start_at is DateTime object');
368     isa_ok($edata{'created_on'}, 'DateTime', 'create_on DateTime object');
369     is($edata{'starts_at'}, $event->starts_at, 'got start date');
370     is($edata{'created_on'}, $event->created_on, 'got created date');
371 }
372
373 # test resultsource->table return value when setting
374 {
375     my $class = $schema->class('Event');
376     my $table = $class->table($class->table);
377     is($table, $class->table, '->table($table) returns $table');
378 }
379
380 #make sure insert doesn't use set_column
381 {
382   my $en_row = $schema->resultset('Encoded')->new_result({encoded => 'wilma'});
383   is($en_row->encoded, 'amliw', 'new encodes');
384   $en_row->insert;
385   is($en_row->encoded, 'amliw', 'insert does not encode again');
386 }