Implemented "add_unique_constraints".
[dbsrgits/DBIx-Class.git] / t / 80unique.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 use DBIC::SqlMakerTest;
9 use DBIC::DebugObj;
10
11 my $schema = DBICTest->init_schema();
12
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 );
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 );
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   },
49   { key => 'cd_artist_title' }
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
56 my $cd3 = $schema->resultset('CD')->find($artistid, $title, { key => 'cd_artist_title' });
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(
63   {
64     artist => $artistid,
65     title  => $title,
66     year   => 2007,
67   },
68 );
69
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');
75
76 my $cd5 = $schema->resultset('CD')->update_or_create(
77   {
78     artist => $artistid,
79     title  => $title,
80     year   => 2007,
81   },
82   { key => 'cd_artist_title' }
83 );
84
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');
90
91 my $cd6 = $schema->resultset('CD')->update_or_create(
92   {
93     cdid   => $cd2->cdid,
94     artist => 1,
95     title  => $cd2->title,
96     year   => 2005,
97   },
98   { key => 'primary' }
99 );
100
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');
106
107 my $cd7 = $schema->resultset('CD')->find_or_create(
108   {
109     artist => $artistid,
110     title  => $title,
111     year   => 2010,
112   },
113   { key => 'cd_artist_title' }
114 );
115
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');
120
121 my $artist = $schema->resultset('Artist')->find($artistid);
122 my $cd8 = $artist->find_or_create_related('cds',
123   {
124     title  => $title,
125     year   => 2020,
126   },
127   { key => 'cd_artist_title' }
128 );
129
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');
134
135 my $cd9 = $artist->cds->update_or_create(
136   {
137     cdid   => $cd1->cdid,
138     title  => $title,
139     year   => 2021,
140   },
141   { key => 'cd_artist_title' }
142 );
143
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');
149
150 # Table with two unique constraints, and we're satisying one of them
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');
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 );
171
172 ok(! $row->is_changed, 'update_or_create on table without primary key: row is clean');
173 is($row->foo, 1, 'foo is correct');
174 is($row->bar, 2, 'bar is correct');
175 is($row->baz, 3, 'baz is correct');
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 }
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
204     is($cd1->in_storage, 0, 'CD is not in storage yet after update_or_new');
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');
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
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
265 done_testing;
266