Prevent SQL::Translator::Producer::YAML from seeing our potential $dbh
[dbsrgits/DBIx-Class.git] / t / 99dbic_sqlt_parser.t
CommitLineData
0e2c6809 1use strict;
2use warnings;
206d1995 3
0e2c6809 4use Test::More;
a07ae2aa 5use Test::Warn;
8fd10683 6use Test::Exception;
06e15b8e 7use Scalar::Util ();
0e2c6809 8
4bea1fe7 9use lib qw(t/lib);
10use DBICTest;
11
0e2c6809 12BEGIN {
2527233b 13 require DBIx::Class;
7f6f5b69 14 plan skip_all =>
2527233b 15 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('deploy')
16 unless DBIx::Class::Optional::Dependencies->req_ok_for ('deploy')
0e2c6809 17}
18
06e15b8e 19# Test for SQLT-related leaks
20{
21 my $s = DBICTest::Schema->clone;
48775dd1 22
23 my @schemas = (
24 create_schema ({ schema => $s }),
a07ae2aa 25 create_schema ({ args => { parser_args => { dbic_schema => $s } } }),
48775dd1 26 );
27
a07ae2aa 28 for my $parser_args_key (qw(
29 DBIx::Class::Schema
30 DBIx::Schema
31 package
32 )) {
33 warnings_exist {
34 push @schemas, create_schema({
35 args => { parser_args => { $parser_args_key => $s } }
36 });
37 } qr/\Qparser_args => {\E.+?is deprecated/,
38 "deprecated crazy parser_arg '$parser_args_key' warned";
39 }
40
06e15b8e 41 Scalar::Util::weaken ($s);
42
43 ok (!$s, 'Schema not leaked');
02730621 44
48775dd1 45 isa_ok ($_, 'SQL::Translator::Schema', "SQLT schema object $_ produced")
46 for @schemas;
06e15b8e 47}
48
02730621 49# make sure classname-style works
50lives_ok { isa_ok (create_schema ({ schema => 'DBICTest::Schema' }), 'SQL::Translator::Schema', 'SQLT schema object produced') };
51
31399b48 52# make sure a connected instance passed via $args does not get the $dbh improperly serialized
53SKIP: {
54
55 # YAML is a build_requires dep of SQLT - it may or may not be here
56 eval { require YAML } or skip "Test requires YAML.pm", 1;
57
58 lives_ok {
59
60 my $s = DBICTest->init_schema(no_populate => 1);
61 ok ($s->storage->connected, '$schema instance connected');
62
63 # roundtrip through YAML
64 my $yaml_rt_schema = SQL::Translator->new(
65 parser => 'SQL::Translator::Parser::YAML'
66 )->translate(
67 data => SQL::Translator->new(
68 parser_args => { package => $s },
69 parser => 'SQL::Translator::Parser::DBIx::Class',
70 producer => 'SQL::Translator::Producer::YAML',
71 )->translate
72 );
73
74 isa_ok ( $yaml_rt_schema, 'SQL::Translator::Schema', 'SQLT schema object produced after YAML roundtrip');
75
76 ok ($s->storage->connected, '$schema instance still connected');
77 }
78
79 eval <<'EOE' or die $@;
80 END {
81 $^W = 1; # important, otherwise DBI won't trip the next fail()
82 $SIG{__WARN__} = sub {
83 fail "Unexpected global destruction warning"
84 if $_[0] =~ /is not a DBI/;
85 warn @_;
86 };
87 }
88EOE
89
90}
06e15b8e 91
6ddb4ac0 92my $schema = DBICTest->init_schema( no_deploy => 1 );
93
0fc7cd47 94# Dummy was yanked out by the sqlt hook test
8e8a8d91 95# CustomSql tests the horrific/deprecated ->name(\$sql) hack
e0cd97a4 96# YearXXXXCDs are views
8e8a8d91 97#
98my @sources = grep
d6c322f8 99 { $_ !~ /^ (?: Dummy | CustomSql | Year\d{4}CDs ) $/x }
8e8a8d91 100 $schema->sources
101;
0fc7cd47 102
f0ac764e 103my $idx_exceptions = {
104 'Artwork' => -1,
105 'ForceForeign' => -1,
106 'LinerNotes' => -1,
827a808f 107 'TwoKeys' => -1, # TwoKeys has the index turned off on the rel def
f0ac764e 108};
109
c49ff507 110{
206d1995 111 my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { } } });
0e2c6809 112
620df7e8 113 foreach my $source_name (@sources) {
114 my $table = get_table($sqlt_schema, $schema, $source_name);
0e2c6809 115
206d1995 116 my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints);
f0ac764e 117 $fk_count += $idx_exceptions->{$source_name} || 0;
206d1995 118 my @indices = $table->get_indices;
620df7e8 119
206d1995 120 my $index_count = scalar(@indices);
620df7e8 121 is($index_count, $fk_count, "correct number of indices for $source_name with no args");
c49ff507 122
620df7e8 123 for my $index (@indices) {
124 my $source = $schema->source($source_name);
3eaae0f2 125 my $pk_test = join("\x00", $source->primary_columns);
126 my $idx_test = join("\x00", $index->fields);
c1092055 127 isnt ( $pk_test, $idx_test, "no additional index for the primary columns exists in $source_name");
620df7e8 128 }
206d1995 129 }
0e2c6809 130}
131
c49ff507 132{
206d1995 133 my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 1 } } });
0e2c6809 134
f0ac764e 135 foreach my $source_name (@sources) {
136 my $table = get_table($sqlt_schema, $schema, $source_name);
0e2c6809 137
206d1995 138 my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints);
f0ac764e 139 $fk_count += $idx_exceptions->{$source_name} || 0;
206d1995 140 my @indices = $table->get_indices;
141 my $index_count = scalar(@indices);
f0ac764e 142 is($index_count, $fk_count, "correct number of indices for $source_name with add_fk_index => 1");
206d1995 143 }
0e2c6809 144}
145
c49ff507 146{
206d1995 147 my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 0 } } });
0e2c6809 148
206d1995 149 foreach my $source (@sources) {
150 my $table = get_table($sqlt_schema, $schema, $source);
0e2c6809 151
206d1995 152 my @indices = $table->get_indices;
153 my $index_count = scalar(@indices);
154 is($index_count, 0, "correct number of indices for $source with add_fk_index => 0");
155 }
0e2c6809 156}
157
c49ff507 158{
ab7e74aa 159 {
160 package # hide from PAUSE
161 DBICTest::Schema::NoViewDefinition;
162
163 use base qw/DBICTest::BaseResult/;
8f1617e2 164
ab7e74aa 165 __PACKAGE__->table_class('DBIx::Class::ResultSource::View');
166 __PACKAGE__->table('noviewdefinition');
8f1617e2 167
ab7e74aa 168 1;
8f1617e2 169 }
170
ab7e74aa 171 my $schema_invalid_view = $schema->clone;
172 $schema_invalid_view->register_class('NoViewDefinition', 'DBICTest::Schema::NoViewDefinition');
8f1617e2 173
8fd10683 174 throws_ok { create_schema({ schema => $schema_invalid_view }) }
175 qr/view noviewdefinition is missing a view_definition/,
176 'parser detects views with a view_definition';
8f1617e2 177}
178
a7f4b74c 179lives_ok (sub {
180 my $sqlt_schema = create_schema ({
181 schema => $schema,
182 args => {
183 parser_args => {
184 sources => ['CD']
185 },
186 },
187 });
188
189 is_deeply (
190 [$sqlt_schema->get_tables ],
191 ['cd'],
192 'sources limitng with relationships works',
193 );
194
195});
196
5b9ecfcc 197{
198 package DBICTest::PartialSchema;
199
200 use base qw/DBIx::Class::Schema/;
201
202 __PACKAGE__->load_classes(
203 { 'DBICTest::Schema' => [qw/
204 CD
205 Track
206 Tag
207 Producer
208 CD_to_Producer
209 /]}
210 );
211}
212
213{
214 my $partial_schema = DBICTest::PartialSchema->connect(DBICTest->_database);
215
216 lives_ok (sub {
217 my $sqlt_schema = do {
218
219 local $SIG{__WARN__} = sub {
220 warn @_
221 unless $_[0] =~ /Ignoring relationship .+ related resultsource .+ is not registered with this schema/
222 };
223
224 create_schema({ schema => $partial_schema });
225 };
226
227 my @tables = $sqlt_schema->get_tables;
228
229 is_deeply (
230 [sort map { $_->name } @tables],
231 [qw/cd cd_to_producer producer tags track/],
232 'partial dbic schema parsing ok',
233 );
234
235 # the primary key is currently unnamed in sqlt - adding below
236 my %constraints_for_table = (
237 producer => [qw/prod_name /],
238 tags => [qw/tagid_cd tagid_cd_tag tags_fk_cd tags_tagid_tag tags_tagid_tag_cd /],
239 track => [qw/track_cd_position track_cd_title track_fk_cd /],
240 cd => [qw/cd_artist_title cd_fk_single_track /],
241 cd_to_producer => [qw/cd_to_producer_fk_cd cd_to_producer_fk_producer /],
242 );
243
244 for my $table (@tables) {
245 my $tablename = $table->name;
246 my @constraints = $table->get_constraints;
247 is_deeply (
248 [ sort map { $_->name } @constraints ],
249
250 # the primary key (present on all loaded tables) is currently named '' in sqlt
251 # subject to future changes
252 [ '', @{$constraints_for_table{$tablename}} ],
253
254 "constraints of table '$tablename' ok",
255 );
256 }
257 }, 'partial schema tests successful');
258}
259
7f6f5b69 260done_testing;
261
0e2c6809 262sub create_schema {
206d1995 263 my $args = shift;
0e2c6809 264
206d1995 265 my $additional_sqltargs = $args->{args} || {};
0e2c6809 266
206d1995 267 my $sqltargs = {
8273e845 268 add_drop_table => 1,
206d1995 269 ignore_constraint_names => 1,
270 ignore_index_names => 1,
271 %{$additional_sqltargs}
272 };
0e2c6809 273
206d1995 274 my $sqlt = SQL::Translator->new( $sqltargs );
0e2c6809 275
206d1995 276 $sqlt->parser('SQL::Translator::Parser::DBIx::Class');
a07ae2aa 277 return $sqlt->translate(
278 $args->{schema} ? ( data => $args->{schema} ) : ()
279 ) || die $sqlt->error;
0e2c6809 280}
c2b7c5dc 281
282sub get_table {
283 my ($sqlt_schema, $schema, $source) = @_;
284
285 my $table_name = $schema->source($source)->from;
286 $table_name = $$table_name if ref $table_name;
287
288 return $sqlt_schema->get_table($table_name);
289}