failing test case and more resultset refactorage
[dbsrgits/DBIx-Class.git] / t / run / 01core.tl
1 sub run_tests {
2 my $schema = shift;
3
4 plan tests => 57;
5
6 # figure out if we've got a version of sqlite that is older than 3.2.6, in
7 # which case COUNT(DISTINCT()) doesn't work
8 my $is_broken_sqlite = 0;
9 my ($sqlite_major_ver,$sqlite_minor_ver,$sqlite_patch_ver) =
10     split /\./, $schema->storage->dbh->get_info(18);
11 if( $schema->storage->dbh->get_info(17) eq 'SQLite' &&
12     ( ($sqlite_major_ver < 3) ||
13       ($sqlite_major_ver == 3 && $sqlite_minor_ver < 2) ||
14       ($sqlite_major_ver == 3 && $sqlite_minor_ver == 2 && $sqlite_patch_ver < 6) ) ) {
15     $is_broken_sqlite = 1;
16 }
17
18
19 my @art = $schema->resultset("Artist")->search({ }, { order_by => 'name DESC'});
20
21 cmp_ok(@art, '==', 3, "Three artists returned");
22
23 my $art = $art[0];
24
25 is($art->name, 'We Are Goth', "Correct order too");
26
27 $art->name('We Are In Rehab');
28
29 is($art->name, 'We Are In Rehab', "Accessor update ok");
30
31 is($art->get_column("name"), 'We Are In Rehab', 'And via get_column');
32
33 ok($art->update, 'Update run');
34
35 my $record_jp = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => 'cds' })->next;
36
37 ok($record_jp, "prefetch on same rel okay");
38
39 my $record_fn = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search({'cds.cdid' => '1'}, {join => 'artist_undirected_maps'})->next;
40
41 ok($record_fn, "funny join is okay");
42
43 @art = $schema->resultset("Artist")->search({ name => 'We Are In Rehab' });
44
45 cmp_ok(@art, '==', 1, "Changed artist returned by search");
46
47 cmp_ok($art[0]->artistid, '==', 3,'Correct artist too');
48
49 $art->delete;
50
51 @art = $schema->resultset("Artist")->search({ });
52
53 cmp_ok(@art, '==', 2, 'And then there were two');
54
55 ok(!$art->in_storage, "It knows it's dead");
56
57 eval { $art->delete; };
58
59 ok($@, "Can't delete twice: $@");
60
61 is($art->name, 'We Are In Rehab', 'But the object is still live');
62
63 $art->insert;
64
65 ok($art->in_storage, "Re-created");
66
67 @art = $schema->resultset("Artist")->search({ });
68
69 cmp_ok(@art, '==', 3, 'And now there are three again');
70
71 my $new = $schema->resultset("Artist")->create({ artistid => 4 });
72
73 cmp_ok($new->artistid, '==', 4, 'Create produced record ok');
74
75 @art = $schema->resultset("Artist")->search({ });
76
77 cmp_ok(@art, '==', 4, "Oh my god! There's four of them!");
78
79 $new->set_column('name' => 'Man With A Fork');
80
81 is($new->name, 'Man With A Fork', 'set_column ok');
82
83 $new->discard_changes;
84
85 ok(!defined $new->name, 'Discard ok');
86
87 $new->name('Man With A Spoon');
88
89 $new->update;
90
91 $new_again = $schema->resultset("Artist")->find(4);
92
93 is($new_again->name, 'Man With A Spoon', 'Retrieved correctly');
94
95 is($new_again->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
96
97 is($schema->resultset("Artist")->count, 4, 'count ok');
98
99 # test find_or_new
100 {
101   my $existing_obj = $schema->resultset('Artist')->find_or_new({
102     artistid => 4,
103   });
104
105   is($existing_obj->name, 'Man With A Spoon', 'find_or_new: found existing artist');
106   ok($existing_obj->in_storage, 'existing artist is in storage');
107
108   my $new_obj = $schema->resultset('Artist')->find_or_new({
109     artistid => 5,
110     name     => 'find_or_new',
111   });
112
113   is($new_obj->name, 'find_or_new', 'find_or_new: instantiated a new artist');
114   ok(! $new_obj->in_storage, 'new artist is not in storage');
115 }
116
117 my $cd = $schema->resultset("CD")->find(1);
118 my %cols = $cd->get_columns;
119
120 cmp_ok(keys %cols, '==', 4, 'get_columns number of columns ok');
121
122 is($cols{title}, 'Spoonful of bees', 'get_columns values ok');
123
124 %cols = ( title => 'Forkful of bees', year => 2005);
125 $cd->set_columns(\%cols);
126
127 is($cd->title, 'Forkful of bees', 'set_columns ok');
128
129 is($cd->year, 2005, 'set_columns ok');
130
131 $cd->discard_changes;
132
133 # check whether ResultSource->columns returns columns in order originally supplied
134 my @cd = $schema->source("CD")->columns;
135
136 is_deeply( \@cd, [qw/cdid artist title year/], 'column order');
137
138 $cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { columns => ['title'] })->next;
139 is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly');
140
141 $cd = $schema->resultset("CD")->search(undef, { include_columns => [ 'artist.name' ], join => [ 'artist' ] })->find(1);
142
143 is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
144 is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
145
146 # update_or_insert
147 $new = $schema->resultset("Track")->new( {
148   trackid => 100,
149   cd => 1,
150   position => 1,
151   title => 'Insert or Update',
152 } );
153 $new->update_or_insert;
154 ok($new->in_storage, 'update_or_insert insert ok');
155
156 # test in update mode
157 $new->pos(5);
158 $new->update_or_insert;
159 is( $schema->resultset("Track")->find(100)->pos, 5, 'update_or_insert update ok');
160
161 eval { $schema->class("Track")->load_components('DoesNotExist'); };
162
163 ok $@, $@;
164
165 is($schema->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdata usage ok');
166
167 my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ];
168
169 my $or_rs = $schema->resultset("CD")->search($search, { join => 'tags',
170                                                   order_by => 'cdid' });
171
172 cmp_ok($or_rs->count, '==', 5, 'Search with OR ok');
173
174 my $distinct_rs = $schema->resultset("CD")->search($search, { join => 'tags', distinct => 1 });
175 cmp_ok($distinct_rs->all, '==', 4, 'DISTINCT search with OR ok');
176
177 SKIP: {
178   skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
179     if $is_broken_sqlite;
180
181   my $tcount = $schema->resultset("Track")->search(
182     {},
183     {       
184        select => {count => {distinct => ['position', 'title']}},
185            as => ['count']
186     }
187   );
188   cmp_ok($tcount->next->get_column('count'), '==', 13, 'multiple column COUNT DISTINCT ok');
189
190 }
191 my $tag_rs = $schema->resultset('Tag')->search(
192                [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
193
194 my $rel_rs = $tag_rs->search_related('cd');
195
196 cmp_ok($rel_rs->count, '==', 5, 'Related search ok');
197
198 cmp_ok($or_rs->next->cdid, '==', $rel_rs->next->cdid, 'Related object ok');
199 $or_rs->reset;
200 $rel_rs->reset;
201
202 my $tag = $schema->resultset('Tag')->search(
203                [ { 'me.tag' => 'Blue' } ], { cols=>[qw/tagid/] } )->next;
204
205 cmp_ok($tag->has_column_loaded('tagid'), '==', 1, 'Has tagid loaded');
206 cmp_ok($tag->has_column_loaded('tag'), '==', 0, 'Has not tag  loaded');
207
208 ok($schema->storage(), 'Storage available');
209
210 {
211   my $rs = $schema->resultset("Artist")->search({
212     -and => [
213       artistid => { '>=', 1 },
214       artistid => { '<', 3 }
215     ]
216   });
217
218   $rs->update({ name => 'Test _cond_for_update_delete' });
219
220   my $art;
221
222   $art = $schema->resultset("Artist")->find(1);
223   is($art->name, 'Test _cond_for_update_delete', 'updated first artist name');
224
225   $art = $schema->resultset("Artist")->find(2);
226   is($art->name, 'Test _cond_for_update_delete', 'updated second artist name');
227 }
228
229 # test source_name
230 {
231   # source_name should be set for normal modules
232   is($schema->source('CD')->source_name, 'CD', 'source_name is set to moniker');
233
234   # test the result source that sets source_name explictly
235   ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists');
236
237   my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' });
238   cmp_ok(@artsn, '==', 4, "Four artists returned");
239 }
240
241 # test cascade_delete through many_to_many relations
242 {
243   my $art_del = $schema->resultset("Artist")->find({ artistid => 1 });
244   $art_del->delete;
245   cmp_ok( $schema->resultset("CD")->search({artist => 1}), '==', 0, 'Cascading through has_many top level.');
246   cmp_ok( $schema->resultset("CD_to_Producer")->search({cd => 1}), '==', 0, 'Cascading through has_many children.');
247 }
248
249 # test column_info
250 {
251   $schema->source("Artist")->{_columns}{'artistid'} = {};
252
253   my $typeinfo = $schema->source("Artist")->column_info('artistid');
254   is($typeinfo->{data_type}, 'INTEGER', 'column_info ok');
255   $schema->source("Artist")->column_info('artistid');
256   ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info flag set');
257 }
258
259 # test remove_columns
260 {
261   is_deeply([$schema->source('CD')->columns], [qw/cdid artist title year/]);
262   $schema->source('CD')->remove_columns('year');
263   is_deeply([$schema->source('CD')->columns], [qw/cdid artist title/]);
264 }
265
266 }
267
268 1;