.. And correct the number of tests
[dbsrgits/DBIx-Class.git] / t / helperrels / 26sqlt.t
1 use Test::More;
2 use lib qw(t/lib);
3 use DBICTest;
4 use DBICTest::HelperRels;
5
6 eval "use SQL::Translator";
7 plan skip_all => 'SQL::Translator required' if $@;
8
9 my $schema = DBICTest::Schema;
10
11 plan tests => 29;
12
13 my $translator           =  SQL::Translator->new( 
14     parser_args          => {
15         'DBIx::Schema'   => $schema,
16     },
17     producer_args   => {
18     },
19 );
20
21 $translator->parser('SQL::Translator::Parser::DBIx::Class');
22 $translator->producer('SQLite');
23
24 my $output = $translator->translate();
25
26 my @constraints = 
27  (
28   {'display' => 'twokeys->cd',
29    'selftable' => 'twokeys', 'foreigntable' => 'cd', 
30    'selfcols'  => ['cd'], 'foreigncols' => ['cdid'], 
31    'needed' => 1, on_delete => '', on_update => ''},
32   {'display' => 'twokeys->artist',
33    'selftable' => 'twokeys', 'foreigntable' => 'artist', 
34    'selfcols'  => ['artist'], 'foreigncols' => ['artistid'],
35    'needed' => 1, on_delete => '', on_update => ''},
36   {'display' => 'cd_to_producer->cd',
37    'selftable' => 'cd_to_producer', 'foreigntable' => 'cd', 
38    'selfcols'  => ['cd'], 'foreigncols' => ['cdid'],
39    'needed' => 1, on_delete => '', on_update => ''},
40   {'display' => 'cd_to_producer->producer',
41    'selftable' => 'cd_to_producer', 'foreigntable' => 'producer', 
42    'selfcols'  => ['producer'], 'foreigncols' => ['producerid'],
43    'needed' => 1, on_delete => '', on_update => ''},
44   {'display' => 'self_ref_alias -> self_ref for self_ref',
45    'selftable' => 'self_ref_alias', 'foreigntable' => 'self_ref', 
46    'selfcols'  => ['self_ref'], 'foreigncols' => ['id'],
47    'needed' => 1, on_delete => '', on_update => ''},
48   {'display' => 'self_ref_alias -> self_ref for alias',
49    'selftable' => 'self_ref_alias', 'foreigntable' => 'self_ref', 
50    'selfcols'  => ['alias'], 'foreigncols' => ['id'],
51    'needed' => 1, on_delete => '', on_update => ''},
52   {'display' => 'cd -> artist',
53    'selftable' => 'cd', 'foreigntable' => 'artist', 
54    'selfcols'  => ['artist'], 'foreigncols' => ['artistid'],
55    'needed' => 1, on_delete => '', on_update => ''},
56   {'display' => 'artist_undirected_map -> artist for id1',
57    'selftable' => 'artist_undirected_map', 'foreigntable' => 'artist', 
58    'selfcols'  => ['id1'], 'foreigncols' => ['artistid'],
59    'needed' => 1, on_delete => '', on_update => ''},
60   {'display' => 'artist_undirected_map -> artist for id2',
61    'selftable' => 'artist_undirected_map', 'foreigntable' => 'artist', 
62    'selfcols'  => ['id2'], 'foreigncols' => ['artistid'],
63    'needed' => 1, on_delete => '', on_update => ''},
64   {'display' => 'track->cd',
65    'selftable' => 'track', 'foreigntable' => 'cd', 
66    'selfcols'  => ['cd'], 'foreigncols' => ['cdid'],
67    'needed' => 2, on_delete => '', on_update => ''},
68   {'display' => 'treelike -> treelike for parent',
69    'selftable' => 'treelike', 'foreigntable' => 'treelike', 
70    'selfcols'  => ['parent'], 'foreigncols' => ['id'],
71    'needed' => 1, on_delete => '', on_update => ''},
72   {'display' => 'twokeytreelike -> twokeytreelike for parent1,parent2',
73    'selftable' => 'twokeytreelike', 'foreigntable' => 'twokeytreelike', 
74    'selfcols'  => ['parent1', 'parent2'], 'foreigncols' => ['id1','id2'],
75    'needed' => 1, on_delete => '', on_update => ''},
76   {'display' => 'tags -> cd',
77    'selftable' => 'tags', 'foreigntable' => 'cd', 
78    'selfcols'  => ['cd'], 'foreigncols' => ['cdid'],
79    'needed' => 1, on_delete => '', on_update => ''},
80   {'display' => 'bookmark -> link',
81    'selftable' => 'bookmark', 'foreigntable' => 'link', 
82    'selfcols'  => ['link'], 'foreigncols' => ['id'],
83    'needed' => 1, on_delete => '', on_update => ''},
84  );
85
86 my $tschema = $translator->schema();
87 for my $table ($tschema->get_tables) {
88     my $table_name = $table->name;
89     for my $c ( $table->get_constraints ) {
90         next unless $c->type eq 'FOREIGN KEY';
91
92         ok(check($table_name, scalar $c->fields, 
93               $c->reference_table, scalar $c->reference_fields, 
94               $c->on_delete, $c->on_update), "Constraint on $table_name matches an expected constraint");
95     }
96 }
97
98 my $i;
99 for ($i = 0; $i <= $#constraints; ++$i) {
100  ok(!$constraints[$i]->{'needed'}, "Constraint $constraints[$i]->{display}");
101 }
102
103 sub check {
104  my ($selftable, $selfcol, $foreigntable, $foreigncol, $ondel, $onupd) = @_;
105
106  $ondel = '' if (!defined($ondel));
107  $onupd = '' if (!defined($onupd));
108
109  my $i;
110  for ($i = 0; $i <= $#constraints; ++$i) {
111      if ($selftable eq $constraints[$i]->{'selftable'} &&
112          $foreigntable eq $constraints[$i]->{'foreigntable'} &&
113          ($ondel eq $constraints[$i]->{on_delete}) &&
114          ($onupd eq $constraints[$i]->{on_update})) {
115          # check columns
116
117          my $found = 0;
118          for (my $j = 0; $j <= $#$selfcol; ++$j) {
119              $found = 0;
120              for (my $k = 0; $k <= $#{$constraints[$i]->{'selfcols'}}; ++$k) {
121                  if ($selfcol->[$j] eq $constraints[$i]->{'selfcols'}->[$k] &&
122                      $foreigncol->[$j] eq $constraints[$i]->{'foreigncols'}->[$k]) {
123                      $found = 1;
124                      last;
125                  }
126              }
127              last unless $found;
128          }
129
130          if ($found) {
131              for (my $j = 0; $j <= $#{$constraints[$i]->{'selfcols'}}; ++$j) {
132                  $found = 0;
133                  for (my $k = 0; $k <= $#$selfcol; ++$k) {
134                      if ($selfcol->[$k] eq $constraints[$i]->{'selfcols'}->[$j] &&
135                          $foreigncol->[$k] eq $constraints[$i]->{'foreigncols'}->[$j]) {
136                          $found = 1;
137                          last;
138                      }
139                  }
140                  last unless $found;
141              }
142          }
143
144          if ($found) {
145              --$constraints[$i]->{needed};
146              return 1;
147          }
148      }
149  }
150  return 0;
151 }