Commit | Line | Data |
70350518 |
1 | use strict; |
246fa39d |
2 | use warnings; |
70350518 |
3 | |
4 | use Test::More; |
034d0be4 |
5 | use Test::Exception; |
70350518 |
6 | use lib qw(t/lib); |
7 | use DBICTest; |
246fa39d |
8 | use DBIC::SqlMakerTest; |
9 | use DBIC::DebugObj; |
70350518 |
10 | |
a47e1233 |
11 | my $schema = DBICTest->init_schema(); |
87f0da6a |
12 | |
365d06b7 |
13 | # Check the defined unique constraints |
14 | is_deeply( |
15 | [ sort $schema->source('CD')->unique_constraint_names ], |
16 | [ qw/cd_artist_title primary/ ], |
17 | 'CD source has an automatically named unique constraint' |
18 | ); |
19 | is_deeply( |
20 | [ sort $schema->source('Producer')->unique_constraint_names ], |
21 | [ qw/primary prod_name/ ], |
22 | 'Producer source has a named unique constraint' |
23 | ); |
24 | is_deeply( |
25 | [ sort $schema->source('Track')->unique_constraint_names ], |
26 | [ qw/primary track_cd_position track_cd_title/ ], |
27 | 'Track source has three unique constraints' |
28 | ); |
034d0be4 |
29 | is_deeply( |
30 | [ sort $schema->source('Tag')->unique_constraint_names ], |
31 | [ qw/primary tagid_cd tagid_cd_tag tags_tagid_tag tags_tagid_tag_cd/ ], |
32 | 'Tag source has five unique constraints (from add_unique_constraings)' |
33 | ); |
87f0da6a |
34 | |
35 | my $artistid = 1; |
36 | my $title = 'UNIQUE Constraint'; |
37 | |
38 | my $cd1 = $schema->resultset('CD')->find_or_create({ |
39 | artist => $artistid, |
40 | title => $title, |
41 | year => 2005, |
42 | }); |
43 | |
44 | my $cd2 = $schema->resultset('CD')->find( |
45 | { |
46 | artist => $artistid, |
47 | title => $title, |
48 | }, |
368a5228 |
49 | { key => 'cd_artist_title' } |
87f0da6a |
50 | ); |
51 | |
52 | is($cd2->get_column('artist'), $cd1->get_column('artist'), 'find by specific key: artist is correct'); |
53 | is($cd2->title, $cd1->title, 'title is correct'); |
54 | is($cd2->year, $cd1->year, 'year is correct'); |
55 | |
368a5228 |
56 | my $cd3 = $schema->resultset('CD')->find($artistid, $title, { key => 'cd_artist_title' }); |
c9bb4b2f |
57 | |
58 | is($cd3->get_column('artist'), $cd1->get_column('artist'), 'find by specific key, ordered columns: artist is correct'); |
59 | is($cd3->title, $cd1->title, 'title is correct'); |
60 | is($cd3->year, $cd1->year, 'year is correct'); |
61 | |
62 | my $cd4 = $schema->resultset('CD')->update_or_create( |
87f0da6a |
63 | { |
64 | artist => $artistid, |
65 | title => $title, |
66 | year => 2007, |
67 | }, |
68 | ); |
69 | |
c9bb4b2f |
70 | ok(! $cd4->is_changed, 'update_or_create without key: row is clean'); |
71 | is($cd4->cdid, $cd2->cdid, 'cdid is correct'); |
72 | is($cd4->get_column('artist'), $cd2->get_column('artist'), 'artist is correct'); |
73 | is($cd4->title, $cd2->title, 'title is correct'); |
74 | is($cd4->year, 2007, 'updated year is correct'); |
87f0da6a |
75 | |
c9bb4b2f |
76 | my $cd5 = $schema->resultset('CD')->update_or_create( |
87f0da6a |
77 | { |
78 | artist => $artistid, |
79 | title => $title, |
80 | year => 2007, |
81 | }, |
368a5228 |
82 | { key => 'cd_artist_title' } |
87f0da6a |
83 | ); |
84 | |
c9bb4b2f |
85 | ok(! $cd5->is_changed, 'update_or_create by specific key: row is clean'); |
86 | is($cd5->cdid, $cd2->cdid, 'cdid is correct'); |
87 | is($cd5->get_column('artist'), $cd2->get_column('artist'), 'artist is correct'); |
88 | is($cd5->title, $cd2->title, 'title is correct'); |
89 | is($cd5->year, 2007, 'updated year is correct'); |
87f0da6a |
90 | |
c9bb4b2f |
91 | my $cd6 = $schema->resultset('CD')->update_or_create( |
87f0da6a |
92 | { |
93 | cdid => $cd2->cdid, |
94 | artist => 1, |
95 | title => $cd2->title, |
96 | year => 2005, |
97 | }, |
98 | { key => 'primary' } |
99 | ); |
100 | |
c9bb4b2f |
101 | ok(! $cd6->is_changed, 'update_or_create by PK: row is clean'); |
102 | is($cd6->cdid, $cd2->cdid, 'cdid is correct'); |
103 | is($cd6->get_column('artist'), $cd2->get_column('artist'), 'artist is correct'); |
104 | is($cd6->title, $cd2->title, 'title is correct'); |
105 | is($cd6->year, 2005, 'updated year is correct'); |
87f0da6a |
106 | |
c9bb4b2f |
107 | my $cd7 = $schema->resultset('CD')->find_or_create( |
8dc40f3e |
108 | { |
109 | artist => $artistid, |
110 | title => $title, |
111 | year => 2010, |
112 | }, |
368a5228 |
113 | { key => 'cd_artist_title' } |
8dc40f3e |
114 | ); |
115 | |
c9bb4b2f |
116 | is($cd7->cdid, $cd1->cdid, 'find_or_create by specific key: cdid is correct'); |
117 | is($cd7->get_column('artist'), $cd1->get_column('artist'), 'artist is correct'); |
118 | is($cd7->title, $cd1->title, 'title is correct'); |
119 | is($cd7->year, $cd1->year, 'year is correct'); |
8dc40f3e |
120 | |
121 | my $artist = $schema->resultset('Artist')->find($artistid); |
c9bb4b2f |
122 | my $cd8 = $artist->find_or_create_related('cds', |
8dc40f3e |
123 | { |
8dc40f3e |
124 | title => $title, |
125 | year => 2020, |
126 | }, |
368a5228 |
127 | { key => 'cd_artist_title' } |
8dc40f3e |
128 | ); |
129 | |
c9bb4b2f |
130 | is($cd8->cdid, $cd1->cdid, 'find_or_create related by specific key: cdid is correct'); |
131 | is($cd8->get_column('artist'), $cd1->get_column('artist'), 'artist is correct'); |
132 | is($cd8->title, $cd1->title, 'title is correct'); |
133 | is($cd8->year, $cd1->year, 'year is correct'); |
8dc40f3e |
134 | |
d180c0f3 |
135 | my $cd9 = $artist->cds->update_or_create( |
045120e6 |
136 | { |
d180c0f3 |
137 | cdid => $cd1->cdid, |
045120e6 |
138 | title => $title, |
139 | year => 2021, |
140 | }, |
368a5228 |
141 | { key => 'cd_artist_title' } |
045120e6 |
142 | ); |
143 | |
c9bb4b2f |
144 | ok(! $cd9->is_changed, 'update_or_create by specific key: row is clean'); |
145 | is($cd9->cdid, $cd1->cdid, 'cdid is correct'); |
146 | is($cd9->get_column('artist'), $cd1->get_column('artist'), 'artist is correct'); |
147 | is($cd9->title, $cd1->title, 'title is correct'); |
148 | is($cd9->year, 2021, 'year is correct'); |
045120e6 |
149 | |
dcfb635f |
150 | # Table with two unique constraints, and we're satisying one of them |
365d06b7 |
151 | my $track = $schema->resultset('Track')->find( |
152 | { |
153 | cd => 1, |
154 | position => 3, |
155 | }, |
156 | { order_by => 'position' } |
157 | ); |
158 | |
159 | is($track->get_column('cd'), 1, 'track cd is correct'); |
160 | is($track->get_column('position'), 3, 'track position is correct'); |
89034887 |
161 | |
162 | # Test a table with a unique constraint but no primary key |
163 | my $row = $schema->resultset('NoPrimaryKey')->update_or_create( |
164 | { |
165 | foo => 1, |
166 | bar => 2, |
167 | baz => 3, |
168 | }, |
169 | { key => 'foo_bar' } |
170 | ); |
d180c0f3 |
171 | |
8070a151 |
172 | ok(! $row->is_changed, 'update_or_create on table without primary key: row is clean'); |
89034887 |
173 | is($row->foo, 1, 'foo is correct'); |
174 | is($row->bar, 2, 'bar is correct'); |
175 | is($row->baz, 3, 'baz is correct'); |
d180c0f3 |
176 | |
177 | # Test a unique condition with extra information in the where attr |
178 | { |
179 | my $artist = $schema->resultset('Artist')->find({ artistid => 1 }); |
180 | my $cd = $artist->cds->find_or_new( |
181 | { |
182 | cdid => 1, |
183 | title => 'Not The Real Title', |
184 | year => 3000, |
185 | }, |
186 | { key => 'primary' } |
187 | ); |
188 | |
189 | ok($cd->in_storage, 'find correctly grepped the key across a relationship'); |
190 | is($cd->cdid, 1, 'cdid is correct'); |
191 | } |
9ffa8fd7 |
192 | |
193 | # Test update_or_new |
194 | { |
195 | my $cd1 = $schema->resultset('CD')->update_or_new( |
196 | { |
197 | artist => $artistid, |
198 | title => "SuperHits $$", |
199 | year => 2007, |
200 | }, |
201 | { key => 'cd_artist_title' } |
202 | ); |
203 | |
63bb9738 |
204 | is($cd1->in_storage, 0, 'CD is not in storage yet after update_or_new'); |
9ffa8fd7 |
205 | $cd1->insert; |
206 | ok($cd1->in_storage, 'CD got added to strage after update_or_new && insert'); |
207 | |
208 | my $cd2 = $schema->resultset('CD')->update_or_new( |
209 | { |
210 | artist => $artistid, |
211 | title => "SuperHits $$", |
212 | year => 2008, |
213 | }, |
214 | { key => 'cd_artist_title' } |
215 | ); |
216 | ok($cd2->in_storage, 'Updating year using update_or_new was successful'); |
217 | is($cd2->id, $cd1->id, 'Got the same CD using update_or_new'); |
246fa39d |
218 | } |
219 | |
220 | # make sure the ident condition is assembled sanely |
221 | { |
222 | my $artist = $schema->resultset('Artist')->next; |
223 | |
224 | my ($sql, @bind); |
225 | $schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)), |
226 | $schema->storage->debug(1); |
227 | |
228 | $artist->discard_changes; |
229 | |
230 | is_same_sql_bind ( |
231 | $sql, |
232 | \@bind, |
233 | 'SELECT me.artistid, me.name, me.rank, me.charfield FROM artist me WHERE me.artistid = ?', |
234 | [qw/'1'/], |
235 | ); |
236 | |
237 | $schema->storage->debug(0); |
238 | $schema->storage->debugobj(undef); |
239 | } |
240 | |
034d0be4 |
241 | { |
242 | throws_ok { |
243 | eval <<'MOD' or die $@; |
244 | package # hide from PAUSE |
245 | DBICTest::Schema::UniqueConstraintWarningTest; |
246 | |
247 | use base qw/DBIx::Class::Core/; |
248 | |
249 | __PACKAGE__->table('dummy'); |
250 | |
251 | __PACKAGE__->add_column(qw/ foo bar /); |
252 | |
253 | __PACKAGE__->add_unique_constraint( |
254 | constraint1 => [qw/ foo /], |
255 | constraint2 => [qw/ bar /], |
256 | ); |
257 | |
258 | 1; |
259 | MOD |
260 | } qr/\Qadd_unique_constraint() does not accept multiple constraints, use add_unique_constraints() instead\E/, |
261 | 'add_unique_constraint throws when more than one constraint specified'; |
262 | } |
263 | |
264 | |
246fa39d |
265 | done_testing; |
034d0be4 |
266 | |