Move sqlt dephandling to Optional::Deps
[dbsrgits/DBIx-Class.git] / t / 99dbic_sqlt_parser.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 DBICTest::Schema;
9 use Scalar::Util ();
10
11 BEGIN {
12   require DBIx::Class;
13   plan skip_all =>
14       'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('deploy')
15     unless DBIx::Class::Optional::Dependencies->req_ok_for ('deploy')
16 }
17
18 # Test for SQLT-related leaks
19 {
20   my $s = DBICTest::Schema->clone;
21   create_schema ({ schema => $s });
22   Scalar::Util::weaken ($s);
23
24   ok (!$s, 'Schema not leaked');
25 }
26
27
28 my $schema = DBICTest->init_schema();
29 # Dummy was yanked out by the sqlt hook test
30 # CustomSql tests the horrific/deprecated ->name(\$sql) hack
31 # YearXXXXCDs are views
32 #
33 my @sources = grep
34   { $_ !~ /^ (?: Dummy | CustomSql | Year\d{4}CDs ) $/x }
35   $schema->sources
36 ;
37
38 my $idx_exceptions = {
39     'Artwork'       => -1,
40     'ForceForeign'  => -1,
41     'LinerNotes'    => -1,
42     'TwoKeys'       => -1, # TwoKeys has the index turned off on the rel def
43 };
44
45 {
46   my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { } } });
47
48   foreach my $source_name (@sources) {
49     my $table = get_table($sqlt_schema, $schema, $source_name);
50
51     my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints);
52     $fk_count += $idx_exceptions->{$source_name} || 0;
53     my @indices = $table->get_indices;
54
55     my $index_count = scalar(@indices);
56     is($index_count, $fk_count, "correct number of indices for $source_name with no args");
57
58     for my $index (@indices) {
59         my $source = $schema->source($source_name);
60         my $pk_test = join("\x00", $source->primary_columns);
61         my $idx_test = join("\x00", $index->fields);
62         isnt ( $pk_test, $idx_test, "no additional index for the primary columns exists in $source_name");
63     }
64   }
65 }
66
67 {
68   my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 1 } } });
69
70   foreach my $source_name (@sources) {
71     my $table = get_table($sqlt_schema, $schema, $source_name);
72
73     my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints);
74     $fk_count += $idx_exceptions->{$source_name} || 0;
75     my @indices = $table->get_indices;
76     my $index_count = scalar(@indices);
77     is($index_count, $fk_count, "correct number of indices for $source_name with add_fk_index => 1");
78   }
79 }
80
81 {
82   my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 0 } } });
83
84   foreach my $source (@sources) {
85     my $table = get_table($sqlt_schema, $schema, $source);
86
87     my @indices = $table->get_indices;
88     my $index_count = scalar(@indices);
89     is($index_count, 0, "correct number of indices for $source with add_fk_index => 0");
90   }
91 }
92
93 {
94     {
95         package # hide from PAUSE
96             DBICTest::Schema::NoViewDefinition;
97
98         use base qw/DBICTest::BaseResult/;
99
100         __PACKAGE__->table_class('DBIx::Class::ResultSource::View');
101         __PACKAGE__->table('noviewdefinition');
102
103         1;
104     }
105
106     my $schema_invalid_view = $schema->clone;
107     $schema_invalid_view->register_class('NoViewDefinition', 'DBICTest::Schema::NoViewDefinition');
108
109     throws_ok { create_schema({ schema => $schema_invalid_view }) }
110         qr/view noviewdefinition is missing a view_definition/,
111         'parser detects views with a view_definition';
112 }
113
114 lives_ok (sub {
115   my $sqlt_schema = create_schema ({
116     schema => $schema,
117     args => {
118       parser_args => {
119         sources => ['CD']
120       },
121     },
122   });
123
124   is_deeply (
125     [$sqlt_schema->get_tables ],
126     ['cd'],
127     'sources limitng with relationships works',
128   );
129
130 });
131
132 done_testing;
133
134 sub create_schema {
135   my $args = shift;
136
137   my $schema = $args->{schema};
138   my $additional_sqltargs = $args->{args} || {};
139
140   my $sqltargs = {
141     add_drop_table => 1, 
142     ignore_constraint_names => 1,
143     ignore_index_names => 1,
144     %{$additional_sqltargs}
145   };
146
147   my $sqlt = SQL::Translator->new( $sqltargs );
148
149   $sqlt->parser('SQL::Translator::Parser::DBIx::Class');
150   return $sqlt->translate({ data => $schema }) || die $sqlt->error;
151 }
152
153 sub get_table {
154     my ($sqlt_schema, $schema, $source) = @_;
155
156     my $table_name = $schema->source($source)->from;
157     $table_name    = $$table_name if ref $table_name;
158
159     return $sqlt_schema->get_table($table_name);
160 }