Allow changing attributes on schema cloning
[dbsrgits/DBIx-Class.git] / t / 86sqlt.t
CommitLineData
70350518 1use strict;
2use warnings;
3
637ca936 4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
637ca936 7
fed15b91 8use Scalar::Util 'blessed';
9
7f6f5b69 10BEGIN {
2527233b 11 require DBIx::Class;
7f6f5b69 12 plan skip_all =>
2527233b 13 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('deploy')
14 unless DBIx::Class::Optional::Dependencies->req_ok_for ('deploy')
7f6f5b69 15}
637ca936 16
c66a805c 17my $custom_deployment_statements_called = 0;
18
19sub DBICTest::Schema::deployment_statements {
20 $custom_deployment_statements_called = 1;
21 my $self = shift;
22 return $self->next::method(@_);
23}
24
0fd7e9a3 25my $schema = DBICTest->init_schema (no_deploy => 1);
26
30ae562b 27
28# Check deployment statements ctx sensitivity
29{
30 my $not_first_table_creation_re = qr/CREATE TABLE fourkeys_to_twokeys/;
31
30ae562b 32 my $statements = $schema->deployment_statements;
33 like (
34 $statements,
35 $not_first_table_creation_re,
36 'All create statements returned in 1 string in scalar ctx'
37 );
38
39 my @statements = $schema->deployment_statements;
40 cmp_ok (scalar @statements, '>', 1, 'Multiple statement lines in array ctx');
41
42 my $i = 0;
43 while ($i <= $#statements) {
44 last if $statements[$i] =~ $not_first_table_creation_re;
45 $i++;
46 }
47
48 ok (
49 ($i > 0) && ($i <= $#statements),
50 "Creation statement was found somewherere within array ($i)"
51 );
52}
53
fed15b91 54{
55 # use our own throw-away schema, since we'll be deploying twice
56 my $schema = DBICTest->init_schema (no_deploy => 1);
57
58 my $deploy_hook_called = 0;
59 $custom_deployment_statements_called = 0;
60
61 # add a temporary sqlt_deploy_hook to a source
62 no warnings 'once';
63 local *DBICTest::Track::sqlt_deploy_hook = sub {
64 my ($self, $sqlt_table) = @_;
65
66 $deploy_hook_called = 1;
67
68 is (blessed ($self), 'DBIx::Class::ResultSource::Table', 'Source object passed to plain hook');
30ae562b 69
fed15b91 70 is (
71 $sqlt_table->schema->translator->producer_type,
72 join ('::', 'SQL::Translator::Producer', $schema->storage->sqlt_type),
73 'Production type passed to translator object',
74 );
75 };
76
77 $schema->deploy; # do not remove, this fires the is() test in the callback above
78 ok($deploy_hook_called, 'deploy hook got called');
79 ok($custom_deployment_statements_called, '->deploy used the schemas deploy_statements method');
80}
30ae562b 81
427c4089 82{
83 my $deploy_hook_called = 0;
fed15b91 84 $custom_deployment_statements_called = 0;
0fd7e9a3 85
427c4089 86 # replace the sqlt calback with a custom version ading an index
87 $schema->source('Track')->sqlt_deploy_callback(sub {
88 my ($self, $sqlt_table) = @_;
0fd7e9a3 89
427c4089 90 $deploy_hook_called = 1;
0fd7e9a3 91
427c4089 92 is (
93 $sqlt_table->schema->translator->producer_type,
94 join ('::', 'SQL::Translator::Producer', $schema->storage->sqlt_type),
95 'Production type passed to translator object',
96 );
0fd7e9a3 97
427c4089 98 if ($schema->storage->sqlt_type eq 'SQLite' ) {
99 $sqlt_table->add_index( name => 'track_title', fields => ['title'] )
100 or die $sqlt_table->error;
101 }
102
103 $self->default_sqlt_deploy_hook($sqlt_table);
104 });
105
106 $schema->deploy; # do not remove, this fires the is() test in the callback above
107 ok($deploy_hook_called, 'deploy hook got called');
c66a805c 108 ok($custom_deployment_statements_called, '->deploy used the schemas deploy_statements method');
427c4089 109}
637ca936 110
637ca936 111
661fc8eb 112my $translator = SQL::Translator->new(
113 parser_args => {
114 'DBIx::Schema' => $schema,
115 },
116 producer_args => {},
637ca936 117);
118
e377d723 119{
120 my $warn = '';
121 local $SIG{__WARN__} = sub { $warn = shift };
637ca936 122
e377d723 123 my $relinfo = $schema->source('Artist')->relationship_info ('cds');
124 local $relinfo->{attrs}{on_delete} = 'restrict';
637ca936 125
f89bb832 126
e377d723 127 $translator->parser('SQL::Translator::Parser::DBIx::Class');
128 $translator->producer('SQLite');
256e87b0 129
e377d723 130 my $output = $translator->translate();
131
132 ok($output, "SQLT produced someoutput")
133 or diag($translator->error);
134
0fd7e9a3 135
48850f9a 136 like (
137 $warn,
138 qr/SQLT attribute .+? was supplied for relationship .+? which does not appear to be a foreign constraint/,
139 'Warn about dubious on_delete/on_update attributes',
140 );
e377d723 141}
256e87b0 142
b1edf9f9 143# Note that the constraints listed here are the only ones that are tested -- if
144# more exist in the Schema than are listed here and all listed constraints are
c75b18e9 145# correct, the test will still pass. If you add a class with UNIQUE or FOREIGN
146# KEY constraints to DBICTest::Schema, add tests here if you think the existing
147# test coverage is not sufficient
b1edf9f9 148
149my %fk_constraints = (
661fc8eb 150
151 # TwoKeys
b1edf9f9 152 twokeys => [
153 {
154 'display' => 'twokeys->cd',
bb0f01d0 155 'name' => 'twokeys_fk_cd', 'index_name' => 'twokeys_idx_cd',
b1edf9f9 156 'selftable' => 'twokeys', 'foreigntable' => 'cd',
157 'selfcols' => ['cd'], 'foreigncols' => ['cdid'],
9c1f7965 158 'noindex' => 1,
13de943d 159 on_delete => '', on_update => '', deferrable => 0,
b1edf9f9 160 },
161 {
162 'display' => 'twokeys->artist',
bb0f01d0 163 'name' => 'twokeys_fk_artist', 'index_name' => 'twokeys_idx_artist',
b1edf9f9 164 'selftable' => 'twokeys', 'foreigntable' => 'artist',
165 'selfcols' => ['artist'], 'foreigncols' => ['artistid'],
e394339b 166 on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 167 },
168 ],
661fc8eb 169
170 # FourKeys_to_TwoKeys
b1edf9f9 171 fourkeys_to_twokeys => [
172 {
173 'display' => 'fourkeys_to_twokeys->twokeys',
f34cb1fd 174 'name' => 'fourkeys_to_twokeys_fk_t_artist_t_cd', 'index_name' => 'fourkeys_to_twokeys_idx_t_artist_t_cd',
b1edf9f9 175 'selftable' => 'fourkeys_to_twokeys', 'foreigntable' => 'twokeys',
176 'selfcols' => ['t_artist', 't_cd'], 'foreigncols' => ['artist', 'cd'],
e394339b 177 on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 178 },
179 {
f34cb1fd 180 'display' => 'fourkeys_to_twokeys->fourkeys', 'index_name' => 'fourkeys_to_twokeys_idx_f_foo_f_bar_f_hello_f_goodbye',
d1b264d3 181 'name' => 'fourkeys_to_twokeys_fk_f_foo_f_bar_f_hello_f_goodbye',
b1edf9f9 182 'selftable' => 'fourkeys_to_twokeys', 'foreigntable' => 'fourkeys',
183 'selfcols' => [qw(f_foo f_bar f_hello f_goodbye)],
184 'foreigncols' => [qw(foo bar hello goodbye)],
e394339b 185 on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 186 },
187 ],
661fc8eb 188
189 # CD_to_Producer
b1edf9f9 190 cd_to_producer => [
191 {
192 'display' => 'cd_to_producer->cd',
bb0f01d0 193 'name' => 'cd_to_producer_fk_cd', 'index_name' => 'cd_to_producer_idx_cd',
b1edf9f9 194 'selftable' => 'cd_to_producer', 'foreigntable' => 'cd',
195 'selfcols' => ['cd'], 'foreigncols' => ['cdid'],
e394339b 196 on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 197 },
198 {
199 'display' => 'cd_to_producer->producer',
bb0f01d0 200 'name' => 'cd_to_producer_fk_producer', 'index_name' => 'cd_to_producer_idx_producer',
b1edf9f9 201 'selftable' => 'cd_to_producer', 'foreigntable' => 'producer',
202 'selfcols' => ['producer'], 'foreigncols' => ['producerid'],
e394339b 203 on_delete => '', on_update => '', deferrable => 1,
b1edf9f9 204 },
205 ],
661fc8eb 206
207 # Self_ref_alias
b1edf9f9 208 self_ref_alias => [
209 {
210 'display' => 'self_ref_alias->self_ref for self_ref',
bb0f01d0 211 'name' => 'self_ref_alias_fk_self_ref', 'index_name' => 'self_ref_alias_idx_self_ref',
b1edf9f9 212 'selftable' => 'self_ref_alias', 'foreigntable' => 'self_ref',
213 'selfcols' => ['self_ref'], 'foreigncols' => ['id'],
e394339b 214 on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 215 },
216 {
217 'display' => 'self_ref_alias->self_ref for alias',
bb0f01d0 218 'name' => 'self_ref_alias_fk_alias', 'index_name' => 'self_ref_alias_idx_alias',
b1edf9f9 219 'selftable' => 'self_ref_alias', 'foreigntable' => 'self_ref',
220 'selfcols' => ['alias'], 'foreigncols' => ['id'],
e394339b 221 on_delete => '', on_update => '', deferrable => 1,
b1edf9f9 222 },
223 ],
661fc8eb 224
225 # CD
b1edf9f9 226 cd => [
227 {
228 'display' => 'cd->artist',
bb0f01d0 229 'name' => 'cd_fk_artist', 'index_name' => 'cd_idx_artist',
b1edf9f9 230 'selftable' => 'cd', 'foreigntable' => 'artist',
231 'selfcols' => ['artist'], 'foreigncols' => ['artistid'],
a0dd8679 232 on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 233 },
234 ],
661fc8eb 235
236 # Artist_undirected_map
b1edf9f9 237 artist_undirected_map => [
238 {
239 'display' => 'artist_undirected_map->artist for id1',
bb0f01d0 240 'name' => 'artist_undirected_map_fk_id1', 'index_name' => 'artist_undirected_map_idx_id1',
b1edf9f9 241 'selftable' => 'artist_undirected_map', 'foreigntable' => 'artist',
242 'selfcols' => ['id1'], 'foreigncols' => ['artistid'],
e377d723 243 on_delete => 'RESTRICT', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 244 },
245 {
246 'display' => 'artist_undirected_map->artist for id2',
bb0f01d0 247 'name' => 'artist_undirected_map_fk_id2', 'index_name' => 'artist_undirected_map_idx_id2',
b1edf9f9 248 'selftable' => 'artist_undirected_map', 'foreigntable' => 'artist',
249 'selfcols' => ['id2'], 'foreigncols' => ['artistid'],
b230b4be 250 on_delete => '', on_update => '', deferrable => 1,
b1edf9f9 251 },
252 ],
661fc8eb 253
254 # Track
b1edf9f9 255 track => [
256 {
257 'display' => 'track->cd',
bb0f01d0 258 'name' => 'track_fk_cd', 'index_name' => 'track_idx_cd',
b1edf9f9 259 'selftable' => 'track', 'foreigntable' => 'cd',
260 'selfcols' => ['cd'], 'foreigncols' => ['cdid'],
e394339b 261 on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 262 },
263 ],
661fc8eb 264
265 # TreeLike
b1edf9f9 266 treelike => [
267 {
268 'display' => 'treelike->treelike for parent',
61177e44 269 'name' => 'treelike_fk_parent', 'index_name' => 'treelike_idx_parent',
b1edf9f9 270 'selftable' => 'treelike', 'foreigntable' => 'treelike',
61177e44 271 'selfcols' => ['parent'], 'foreigncols' => ['id'],
e394339b 272 on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 273 },
274 ],
275
276 # TwoKeyTreeLike
277 twokeytreelike => [
278 {
279 'display' => 'twokeytreelike->twokeytreelike for parent1,parent2',
bb0f01d0 280 'name' => 'twokeytreelike_fk_parent1_parent2', 'index_name' => 'twokeytreelike_idx_parent1_parent2',
b1edf9f9 281 'selftable' => 'twokeytreelike', 'foreigntable' => 'twokeytreelike',
282 'selfcols' => ['parent1', 'parent2'], 'foreigncols' => ['id1','id2'],
e394339b 283 on_delete => '', on_update => '', deferrable => 1,
b1edf9f9 284 },
285 ],
ae515736 286
661fc8eb 287 # Tags
b1edf9f9 288 tags => [
289 {
290 'display' => 'tags->cd',
bb0f01d0 291 'name' => 'tags_fk_cd', 'index_name' => 'tags_idx_cd',
b1edf9f9 292 'selftable' => 'tags', 'foreigntable' => 'cd',
293 'selfcols' => ['cd'], 'foreigncols' => ['cdid'],
e394339b 294 on_delete => 'CASCADE', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 295 },
296 ],
661fc8eb 297
298 # Bookmark
b1edf9f9 299 bookmark => [
300 {
301 'display' => 'bookmark->link',
bb0f01d0 302 'name' => 'bookmark_fk_link', 'index_name' => 'bookmark_idx_link',
b1edf9f9 303 'selftable' => 'bookmark', 'foreigntable' => 'link',
304 'selfcols' => ['link'], 'foreigncols' => ['id'],
def17c59 305 on_delete => 'SET NULL', on_update => 'CASCADE', deferrable => 1,
b1edf9f9 306 },
307 ],
a0024650 308 # ForceForeign
309 forceforeign => [
310 {
311 'display' => 'forceforeign->artist',
bb0f01d0 312 'name' => 'forceforeign_fk_artist', 'index_name' => 'forceforeign_idx_artist',
a0024650 313 'selftable' => 'forceforeign', 'foreigntable' => 'artist',
8871d4ad 314 'selfcols' => ['artist'], 'foreigncols' => ['artistid'],
827a808f 315 'noindex' => 1,
e394339b 316 on_delete => '', on_update => '', deferrable => 1,
a0024650 317 },
318 ],
b1edf9f9 319);
320
321my %unique_constraints = (
322 # CD
323 cd => [
324 {
325 'display' => 'cd artist and title unique',
0da8b7da 326 'name' => 'cd_artist_title',
b1edf9f9 327 'table' => 'cd', 'cols' => ['artist', 'title'],
328 },
329 ],
330
331 # Producer
332 producer => [
333 {
334 'display' => 'producer name unique',
0da8b7da 335 'name' => 'prod_name', # explicit name
b1edf9f9 336 'table' => 'producer', 'cols' => ['name'],
337 },
338 ],
339
340 # TwoKeyTreeLike
341 twokeytreelike => [
342 {
343 'display' => 'twokeytreelike name unique',
0da8b7da 344 'name' => 'tktlnameunique', # explicit name
b1edf9f9 345 'table' => 'twokeytreelike', 'cols' => ['name'],
346 },
347 ],
348
349 # Employee
350# Constraint is commented out in DBICTest/Schema/Employee.pm
351# employee => [
352# {
353# 'display' => 'employee position and group_id unique',
0da8b7da 354# 'name' => 'position_group',
b1edf9f9 355# 'table' => 'employee', cols => ['position', 'group_id'],
356# },
357# ],
7b90bb13 358);
359
17cab2f0 360my %indexes = (
c385ecea 361 artist => [
362 {
363 'fields' => ['name']
364 },
f89bb832 365 ],
366 track => [
367 {
368 'fields' => ['title']
369 }
370 ],
c385ecea 371);
372
637ca936 373my $tschema = $translator->schema();
d6c79cb3 374# Test that the $schema->sqlt_deploy_hook was called okay and that it removed
458e0292 375# the 'dummy' table
376ok( !defined($tschema->get_table('dummy')), "Dummy table was removed by hook");
d6c79cb3 377
1f5bf324 378# Test that the Artist resultsource sqlt_deploy_hook was called okay and added
379# an index
380SKIP: {
381 skip ('Artist sqlt_deploy_hook is only called with an SQLite backend', 1)
382 if $schema->storage->sqlt_type ne 'SQLite';
383
384 ok( ( grep
385 { $_->name eq 'artist_name_hookidx' }
386 $tschema->get_table('artist')->get_indices
387 ), 'sqlt_deploy_hook fired within a resultsource');
388}
389
b1edf9f9 390# Test that nonexistent constraints are not found
391my $constraint = get_constraint('FOREIGN KEY', 'cd', ['title'], 'cd', ['year']);
392ok( !defined($constraint), 'nonexistent FOREIGN KEY constraint not found' );
393$constraint = get_constraint('UNIQUE', 'cd', ['artist']);
394ok( !defined($constraint), 'nonexistent UNIQUE constraint not found' );
a0024650 395$constraint = get_constraint('FOREIGN KEY', 'forceforeign', ['cd'], 'cd', ['cdid']);
396ok( !defined($constraint), 'forced nonexistent FOREIGN KEY constraint not found' );
b1edf9f9 397
398for my $expected_constraints (keys %fk_constraints) {
399 for my $expected_constraint (@{ $fk_constraints{$expected_constraints} }) {
400 my $desc = $expected_constraint->{display};
401 my $constraint = get_constraint(
402 'FOREIGN KEY',
403 $expected_constraint->{selftable}, $expected_constraint->{selfcols},
404 $expected_constraint->{foreigntable}, $expected_constraint->{foreigncols},
405 );
406 ok( defined($constraint), "FOREIGN KEY constraint matching `$desc' found" );
407 test_fk($expected_constraint, $constraint);
661fc8eb 408 }
637ca936 409}
410
b1edf9f9 411for my $expected_constraints (keys %unique_constraints) {
412 for my $expected_constraint (@{ $unique_constraints{$expected_constraints} }) {
413 my $desc = $expected_constraint->{display};
414 my $constraint = get_constraint(
415 'UNIQUE', $expected_constraint->{table}, $expected_constraint->{cols},
416 );
417 ok( defined($constraint), "UNIQUE constraint matching `$desc' found" );
0da8b7da 418 test_unique($expected_constraint, $constraint);
b1edf9f9 419 }
637ca936 420}
421
17cab2f0 422for my $table_index (keys %indexes) {
423 for my $expected_index ( @{ $indexes{$table_index} } ) {
c385ecea 424 ok ( get_index($table_index, $expected_index), "Got a matching index on $table_index table");
425 }
426}
427
b1edf9f9 428# Returns the Constraint object for the specified constraint type, table and
429# columns from the SQL::Translator schema, or undef if no matching constraint
430# is found.
431#
432# NB: $type is either 'FOREIGN KEY' or 'UNIQUE'. In UNIQUE constraints the last
433# two parameters are not used.
434sub get_constraint {
435 my ($type, $table_name, $cols, $f_table, $f_cols) = @_;
436 $f_table ||= ''; # For UNIQUE constraints, reference_table is ''
437 $f_cols ||= [];
438
439 my $table = $tschema->get_table($table_name);
440
441 my %fields = map { $_ => 1 } @$cols;
442 my %f_fields = map { $_ => 1 } @$f_cols;
443
a7e65bb5 444 die "No $table_name" unless $table;
b1edf9f9 445 CONSTRAINT:
446 for my $constraint ( $table->get_constraints ) {
447 next unless $constraint->type eq $type;
448 next unless $constraint->reference_table eq $f_table;
449
450 my %rev_fields = map { $_ => 1 } $constraint->fields;
451 my %rev_f_fields = map { $_ => 1 } $constraint->reference_fields;
452
453 # Check that the given fields are a subset of the constraint's fields
454 for my $field ($constraint->fields) {
455 next CONSTRAINT unless $fields{$field};
456 }
457 if ($type eq 'FOREIGN KEY') {
458 for my $f_field ($constraint->reference_fields) {
459 next CONSTRAINT unless $f_fields{$f_field};
661fc8eb 460 }
b1edf9f9 461 }
661fc8eb 462
b1edf9f9 463 # Check that the constraint's fields are a subset of the given fields
464 for my $field (@$cols) {
465 next CONSTRAINT unless $rev_fields{$field};
466 }
467 if ($type eq 'FOREIGN KEY') {
468 for my $f_field (@$f_cols) {
469 next CONSTRAINT unless $rev_f_fields{$f_field};
661fc8eb 470 }
471 }
b1edf9f9 472
473 return $constraint; # everything passes, found the constraint
661fc8eb 474 }
b1edf9f9 475 return undef; # didn't find a matching constraint
7b90bb13 476}
477
c385ecea 478sub get_index {
479 my ($table_name, $index) = @_;
480
481 my $table = $tschema->get_table($table_name);
482
483 CAND_INDEX:
484 for my $cand_index ( $table->get_indices ) {
485
486 next CAND_INDEX if $index->{name} && $cand_index->name ne $index->{name}
487 || $index->{type} && $cand_index->type ne $index->{type};
488
489 my %idx_fields = map { $_ => 1 } $cand_index->fields;
490
491 for my $field ( @{ $index->{fields} } ) {
492 next CAND_INDEX unless $idx_fields{$field};
493 }
494
495 %idx_fields = map { $_ => 1 } @{$index->{fields}};
496 for my $field ( $cand_index->fields) {
497 next CAND_INDEX unless $idx_fields{$field};
498 }
499
500 return $cand_index;
501 }
502
503 return undef; # No matching idx
504}
505
b1edf9f9 506# Test parameters in a FOREIGN KEY constraint other than columns
507sub test_fk {
508 my ($expected, $got) = @_;
509 my $desc = $expected->{display};
0da8b7da 510 is( $got->name, $expected->{name},
827a808f 511 "name parameter correct for '$desc'" );
b1edf9f9 512 is( $got->on_delete, $expected->{on_delete},
827a808f 513 "on_delete parameter correct for '$desc'" );
b1edf9f9 514 is( $got->on_update, $expected->{on_update},
827a808f 515 "on_update parameter correct for '$desc'" );
13de943d 516 is( $got->deferrable, $expected->{deferrable},
827a808f 517 "is_deferrable parameter correct for '$desc'" );
0da8b7da 518
519 my $index = get_index( $got->table, { fields => $expected->{selfcols} } );
9c1f7965 520
521 if ($expected->{noindex}) {
827a808f 522 ok( !defined $index, "index doesn't for '$desc'" );
9c1f7965 523 } else {
827a808f 524 ok( defined $index, "index exists for '$desc'" );
525 is( $index->name, $expected->{index_name}, "index has correct name for '$desc'" );
9c1f7965 526 }
0da8b7da 527}
528
529sub test_unique {
530 my ($expected, $got) = @_;
531 my $desc = $expected->{display};
532 is( $got->name, $expected->{name},
827a808f 533 "name parameter correct for '$desc'" );
637ca936 534}
0fd7e9a3 535
536done_testing;