Commit | Line | Data |
70350518 |
1 | use strict; |
2 | use warnings; |
3 | |
4 | use Test::More; |
d6df786a |
5 | use Test::Exception; |
70350518 |
6 | use lib qw(t/lib); |
7 | use DBICTest; |
8 | |
ae515736 |
9 | my $schema = DBICTest->init_schema(); |
0567538f |
10 | |
11d68671 |
11 | plan tests => 96; |
0567538f |
12 | |
03a1819f |
13 | eval { require DateTime::Format::MySQL }; |
14 | my $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 |
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 | |
0567538f |
28 | |
f9db5527 |
29 | my @art = $schema->resultset("Artist")->search({ }, { order_by => 'name DESC'}); |
0567538f |
30 | |
d2f21b37 |
31 | is(@art, 3, "Three artists returned"); |
0567538f |
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 | |
6dbea98e |
41 | my %dirty = $art->get_dirty_columns(); |
d2f21b37 |
42 | is(scalar(keys(%dirty)), 1, '1 dirty column'); |
6dbea98e |
43 | ok(grep($_ eq 'name', keys(%dirty)), 'name is dirty'); |
44 | |
0567538f |
45 | is($art->get_column("name"), 'We Are In Rehab', 'And via get_column'); |
46 | |
47 | ok($art->update, 'Update run'); |
48 | |
6dbea98e |
49 | my %not_dirty = $art->get_dirty_columns(); |
d2f21b37 |
50 | is(scalar(keys(%not_dirty)), 0, 'Nothing is dirty'); |
6dbea98e |
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(); |
d2f21b37 |
58 | is(scalar(keys(%fake_dirty)), 1, '1 fake dirty column'); |
6dbea98e |
59 | ok(grep($_ eq 'name', keys(%fake_dirty)), 'name is fake dirty'); |
60 | |
ae515736 |
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 | |
f9db5527 |
69 | @art = $schema->resultset("Artist")->search({ name => 'We Are In Rehab' }); |
0567538f |
70 | |
d2f21b37 |
71 | is(@art, 1, "Changed artist returned by search"); |
0567538f |
72 | |
d2f21b37 |
73 | is($art[0]->artistid, 3,'Correct artist too'); |
0567538f |
74 | |
d6df786a |
75 | lives_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 |
79 | is(@art, 2, 'And then there were two'); |
0567538f |
80 | |
81 | ok(!$art->in_storage, "It knows it's dead"); |
82 | |
d6df786a |
83 | dies_ok ( sub { $art->delete }, "Can't delete twice"); |
0567538f |
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 | |
f9db5527 |
91 | @art = $schema->resultset("Artist")->search({ }); |
0567538f |
92 | |
d2f21b37 |
93 | is(@art, 3, 'And now there are three again'); |
0567538f |
94 | |
f9db5527 |
95 | my $new = $schema->resultset("Artist")->create({ artistid => 4 }); |
0567538f |
96 | |
d2f21b37 |
97 | is($new->artistid, 4, 'Create produced record ok'); |
0567538f |
98 | |
f9db5527 |
99 | @art = $schema->resultset("Artist")->search({ }); |
0567538f |
100 | |
d2f21b37 |
101 | is(@art, 4, "Oh my god! There's four of them!"); |
0567538f |
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 | |
70350518 |
115 | my $new_again = $schema->resultset("Artist")->find(4); |
0567538f |
116 | |
117 | is($new_again->name, 'Man With A Spoon', 'Retrieved correctly'); |
118 | |
9bbd8963 |
119 | is($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 |
132 | is($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 |
152 | my $cd = $schema->resultset("CD")->find(1); |
076a6864 |
153 | my %cols = $cd->get_columns; |
154 | |
d2f21b37 |
155 | is(keys %cols, 6, 'get_columns number of columns ok'); |
076a6864 |
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 | |
20518cb4 |
168 | # check whether ResultSource->columns returns columns in order originally supplied |
169 | my @cd = $schema->source("CD")->columns; |
571dced3 |
170 | |
a1cb5921 |
171 | is_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 |
174 | is($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 | |
178 | is($cd->title, 'Spoonful of bees', 'Correct CD returned with include'); |
179 | is($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 | |
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'); |
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; |
201 | ok($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 |
206 | is( $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 |
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'); |
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 |
227 | eval { $schema->class("Track")->load_components('DoesNotExist'); }; |
0567538f |
228 | |
229 | ok $@, $@; |
230 | |
1edaf6fe |
231 | is($schema->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdata usage ok'); |
90e6de6c |
232 | |
54540863 |
233 | my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ]; |
234 | |
5b89a768 |
235 | my( $or_rs ) = $schema->resultset("CD")->search_rs($search, { join => 'tags', |
6aeb9185 |
236 | order_by => 'cdid' }); |
54540863 |
237 | |
d2f21b37 |
238 | is($or_rs->count, 5, 'Search with OR ok'); |
54540863 |
239 | |
f9db5527 |
240 | my $distinct_rs = $schema->resultset("CD")->search($search, { join => 'tags', distinct => 1 }); |
d2f21b37 |
241 | is($distinct_rs->all, 4, 'DISTINCT search with OR ok'); |
6aeb9185 |
242 | |
f2de4889 |
243 | SKIP: { |
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 | { |
11d68671 |
250 | select => [ qw/position title/ ], |
251 | distinct => 1, |
286f32b3 |
252 | } |
253 | ); |
d2f21b37 |
254 | is($tcount->count, 13, 'multiple column COUNT DISTINCT ok'); |
255 | |
11d68671 |
256 | $tcount = $schema->resultset('Track')->search( |
257 | {}, |
258 | { |
259 | columns => [ qw/position title/ ], |
260 | distinct => 1, |
261 | } |
262 | ); |
263 | is($tcount->count, 13, 'multiple column COUNT DISTINCT ok'); |
264 | |
265 | $tcount = $schema->resultset('Track')->search( |
266 | {}, |
267 | { |
268 | group_by => [ qw/position title/ ] |
269 | } |
270 | ); |
271 | is($tcount->count, 13, 'multiple column COUNT DISTINCT using column syntax ok'); |
f2de4889 |
272 | } |
584e74ed |
273 | |
f9db5527 |
274 | my $tag_rs = $schema->resultset('Tag')->search( |
6aeb9185 |
275 | [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]); |
276 | |
277 | my $rel_rs = $tag_rs->search_related('cd'); |
278 | |
d2f21b37 |
279 | is($rel_rs->count, 5, 'Related search ok'); |
6aeb9185 |
280 | |
d2f21b37 |
281 | is($or_rs->next->cdid, $rel_rs->next->cdid, 'Related object ok'); |
a4731ae0 |
282 | $or_rs->reset; |
283 | $rel_rs->reset; |
a953d8d9 |
284 | |
4c4ccf29 |
285 | my $tag = $schema->resultset('Tag')->search( |
286 | [ { 'me.tag' => 'Blue' } ], { cols=>[qw/tagid/] } )->next; |
287 | |
d2f21b37 |
288 | ok($tag->has_column_loaded('tagid'), 'Has tagid loaded'); |
289 | ok(!$tag->has_column_loaded('tag'), 'Has not tag loaded'); |
4c4ccf29 |
290 | |
a953d8d9 |
291 | ok($schema->storage(), 'Storage available'); |
292 | |
16b4fd26 |
293 | { |
294 | my $rs = $schema->resultset("Artist")->search({ |
295 | -and => [ |
296 | artistid => { '>=', 1 }, |
297 | artistid => { '<', 3 } |
298 | ] |
299 | }); |
300 | |
301 | $rs->update({ name => 'Test _cond_for_update_delete' }); |
302 | |
303 | my $art; |
304 | |
305 | $art = $schema->resultset("Artist")->find(1); |
306 | is($art->name, 'Test _cond_for_update_delete', 'updated first artist name'); |
307 | |
308 | $art = $schema->resultset("Artist")->find(2); |
309 | is($art->name, 'Test _cond_for_update_delete', 'updated second artist name'); |
310 | } |
311 | |
825135d8 |
312 | # test source_name |
313 | { |
314 | # source_name should be set for normal modules |
315 | is($schema->source('CD')->source_name, 'CD', 'source_name is set to moniker'); |
a4731ae0 |
316 | |
825135d8 |
317 | # test the result source that sets source_name explictly |
318 | ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists'); |
0009fa49 |
319 | |
825135d8 |
320 | my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' }); |
d2f21b37 |
321 | is(@artsn, 4, "Four artists returned"); |
b1fb2c94 |
322 | |
323 | # make sure subclasses that don't set source_name are ok |
93405cf0 |
324 | ok($schema->source('ArtistSubclass'), 'ArtistSubclass exists'); |
825135d8 |
325 | } |
bab77431 |
326 | |
9c2c91ea |
327 | my $newbook = $schema->resultset( 'Bookmark' )->find(1); |
328 | |
d6df786a |
329 | lives_ok (sub { my $newlink = $newbook->link}, "stringify to false value doesn't cause error"); |
9c2c91ea |
330 | |
825135d8 |
331 | # test cascade_delete through many_to_many relations |
332 | { |
333 | my $art_del = $schema->resultset("Artist")->find({ artistid => 1 }); |
d6df786a |
334 | lives_ok (sub { $art_del->delete }, 'Cascading delete on Ordered has_many works' ); # real test in ordered.t |
d2f21b37 |
335 | is( $schema->resultset("CD")->search({artist => 1}), 0, 'Cascading through has_many top level.'); |
336 | is( $schema->resultset("CD_to_Producer")->search({cd => 1}), 0, 'Cascading through has_many children.'); |
825135d8 |
337 | } |
bab77431 |
338 | |
825135d8 |
339 | # test column_info |
340 | { |
341 | $schema->source("Artist")->{_columns}{'artistid'} = {}; |
d9916234 |
342 | $schema->source("Artist")->column_info_from_storage(1); |
bab77431 |
343 | |
825135d8 |
344 | my $typeinfo = $schema->source("Artist")->column_info('artistid'); |
345 | is($typeinfo->{data_type}, 'INTEGER', 'column_info ok'); |
346 | $schema->source("Artist")->column_info('artistid'); |
347 | ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info flag set'); |
348 | } |
bab77431 |
349 | |
a48e92d7 |
350 | # test source_info |
351 | { |
352 | my $expected = { |
353 | "source_info_key_A" => "source_info_value_A", |
354 | "source_info_key_B" => "source_info_value_B", |
355 | "source_info_key_C" => "source_info_value_C", |
356 | }; |
357 | |
358 | my $sinfo = $schema->source("Artist")->source_info; |
359 | |
360 | is_deeply($sinfo, $expected, 'source_info data works'); |
361 | } |
362 | |
825135d8 |
363 | # test remove_columns |
364 | { |
4738027b |
365 | is_deeply( |
366 | [$schema->source('CD')->columns], |
367 | [qw/cdid artist title year genreid single_track/], |
368 | 'initial columns', |
369 | ); |
370 | |
371 | $schema->source('CD')->remove_columns('coolyear'); #should not delete year |
372 | is_deeply( |
373 | [$schema->source('CD')->columns], |
374 | [qw/cdid artist title year genreid single_track/], |
375 | 'nothing removed when removing a non-existent column', |
376 | ); |
377 | |
378 | $schema->source('CD')->remove_columns('genreid', 'year'); |
379 | is_deeply( |
380 | [$schema->source('CD')->columns], |
381 | [qw/cdid artist title single_track/], |
382 | 'removed two columns', |
383 | ); |
384 | |
385 | my $priv_columns = $schema->source('CD')->_columns; |
386 | ok(! exists $priv_columns->{'year'}, 'year purged from _columns'); |
387 | ok(! exists $priv_columns->{'genreid'}, 'genreid purged from _columns'); |
825135d8 |
388 | } |
bab77431 |
389 | |
ba4a6453 |
390 | # test get_inflated_columns with objects |
03a1819f |
391 | SKIP: { |
392 | skip "This test requires DateTime::Format::MySQL", 5 if $NO_DTFM; |
ba4a6453 |
393 | my $event = $schema->resultset('Event')->search->first; |
394 | my %edata = $event->get_inflated_columns; |
395 | is($edata{'id'}, $event->id, 'got id'); |
396 | isa_ok($edata{'starts_at'}, 'DateTime', 'start_at is DateTime object'); |
397 | isa_ok($edata{'created_on'}, 'DateTime', 'create_on DateTime object'); |
398 | is($edata{'starts_at'}, $event->starts_at, 'got start date'); |
399 | is($edata{'created_on'}, $event->created_on, 'got created date'); |
400 | } |
401 | |
ade8df5b |
402 | # test resultsource->table return value when setting |
403 | { |
404 | my $class = $schema->class('Event'); |
ade8df5b |
405 | my $table = $class->table($class->table); |
406 | is($table, $class->table, '->table($table) returns $table'); |
407 | } |
0e80c4ca |
408 | |
409 | #make sure insert doesn't use set_column |
410 | { |
411 | my $en_row = $schema->resultset('Encoded')->new_result({encoded => 'wilma'}); |
412 | is($en_row->encoded, 'amliw', 'new encodes'); |
413 | $en_row->insert; |
414 | is($en_row->encoded, 'amliw', 'insert does not encode again'); |
415 | } |