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