Convert the tests with multiple DBDs to new optdeps system
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 10_07mssql_common.t
CommitLineData
046e344c 1use strict;
05d322c8 2use warnings;
3a89a69f 3use Test::More;
4use Test::Exception;
ffd4ce36 5use DBIx::Class::Schema::Loader::Optional::Dependencies;
ff4b0152 6use DBIx::Class::Schema::Loader::Utils qw/warnings_exist_silent sigwarn_silencer/;
c4a69b87 7use Try::Tiny;
8use File::Path 'rmtree';
9use DBIx::Class::Schema::Loader 'make_schema_at';
1ad8e8c3 10use namespace::clean;
5975bbe6 11use Scope::Guard ();
05d322c8 12
13# use this if you keep a copy of DBD::Sybase linked to FreeTDS somewhere else
14BEGIN {
494e0205 15 if (my $lib_dirs = $ENV{DBICTEST_MSSQL_PERL5LIB}) {
16 unshift @INC, $_ for split /:/, $lib_dirs;
17 }
05d322c8 18}
19
c4a69b87 20use lib qw(t/lib);
21
22use dbixcsl_common_tests ();
23use dbixcsl_test_dir '$tdir';
24
25use constant EXTRA_DUMP_DIR => "$tdir/mssql_extra_dump";
26
5975bbe6 27# for extra tests cleanup
28my $schema;
c4a69b87 29
7336f5dc 30my (%dsns, $common_version);
c4a69b87 31
ffd4ce36 32my %env2optdep = (
33 MSSQL => 'test_rdbms_mssql_sybase',
34 MSSQL_ODBC => 'test_rdbms_mssql_odbc',
35 MSSQL_ADO => 'test_rdbms_mssql_ado',
36);
494e0205 37
ffd4ce36 38plan skip_all => 'requirements not satisfied: ' . (join ' OR ', map
39 { "[ @{[ DBIx::Class::Schema::Loader::Optional::Dependencies->req_missing_for( $_ ) ]} ]" }
40 values %env2optdep
41) unless scalar grep
42 { DBIx::Class::Schema::Loader::Optional::Dependencies->req_ok_for( $_ ) }
43 values %env2optdep
44;
45
46for my $type (keys %env2optdep) {
47 my %conninfo;
48 @conninfo{qw(dsn user password)} = map { $ENV{"DBICTEST_${type}_$_"} } qw(DSN USER PASS);
49 next unless $conninfo{dsn};
50
51 my $dep_group = $env2optdep{$type};
52 if (!DBIx::Class::Schema::Loader::Optional::Dependencies->req_ok_for($dep_group)) {
53 diag "Testing with DBICTEST_${type}_DSN needs " . DBIx::Class::Schema::Loader::Optional::Dependencies->req_missing_for($dep_group);
494e0205 54 next;
55 }
56
ffd4ce36 57 $dsns{$type} = \%conninfo;
494e0205 58
59 require DBI;
ffd4ce36 60 my $dbh = DBI->connect (@{$dsns{$type}}{qw/dsn user password/}, { RaiseError => 1, PrintError => 0} );
494e0205 61 my $srv_ver = eval {
62 $dbh->get_info(18)
63 ||
64 $dbh->selectrow_hashref('master.dbo.xp_msver ProductVersion')->{Character_Value}
65 } || 0;
66
67 my ($maj_srv_ver) = $srv_ver =~ /^(\d+)/;
68
69 if (! defined $common_version or $common_version > $maj_srv_ver ) {
70 $common_version = $maj_srv_ver;
71 }
8dcf4292 72}
73
8dcf4292 74my $mssql_2008_new_data_types = {
494e0205 75 date => { data_type => 'date' },
76 time => { data_type => 'time' },
77 'time(0)'=> { data_type => 'time', size => 0 },
78 'time(1)'=> { data_type => 'time', size => 1 },
79 'time(2)'=> { data_type => 'time', size => 2 },
80 'time(3)'=> { data_type => 'time', size => 3 },
81 'time(4)'=> { data_type => 'time', size => 4 },
82 'time(5)'=> { data_type => 'time', size => 5 },
83 'time(6)'=> { data_type => 'time', size => 6 },
84 'time(7)'=> { data_type => 'time' },
85 datetimeoffset => { data_type => 'datetimeoffset' },
86 'datetimeoffset(0)' => { data_type => 'datetimeoffset', size => 0 },
87 'datetimeoffset(1)' => { data_type => 'datetimeoffset', size => 1 },
88 'datetimeoffset(2)' => { data_type => 'datetimeoffset', size => 2 },
89 'datetimeoffset(3)' => { data_type => 'datetimeoffset', size => 3 },
90 'datetimeoffset(4)' => { data_type => 'datetimeoffset', size => 4 },
91 'datetimeoffset(5)' => { data_type => 'datetimeoffset', size => 5 },
92 'datetimeoffset(6)' => { data_type => 'datetimeoffset', size => 6 },
93 'datetimeoffset(7)' => { data_type => 'datetimeoffset' },
94 datetime2 => { data_type => 'datetime2' },
95 'datetime2(0)' => { data_type => 'datetime2', size => 0 },
96 'datetime2(1)' => { data_type => 'datetime2', size => 1 },
97 'datetime2(2)' => { data_type => 'datetime2', size => 2 },
98 'datetime2(3)' => { data_type => 'datetime2', size => 3 },
99 'datetime2(4)' => { data_type => 'datetime2', size => 4 },
100 'datetime2(5)' => { data_type => 'datetime2', size => 5 },
101 'datetime2(6)' => { data_type => 'datetime2', size => 6 },
102 'datetime2(7)' => { data_type => 'datetime2' },
103
104 hierarchyid => { data_type => 'hierarchyid' },
8dcf4292 105};
046e344c 106
107my $tester = dbixcsl_common_tests->new(
b1e43108 108 vendor => 'mssql',
046e344c 109 auto_inc_pk => 'INTEGER IDENTITY NOT NULL PRIMARY KEY',
41968729 110 default_function_def => 'DATETIME DEFAULT getdate()',
7336f5dc 111 connect_info => [ map { $dsns{$_} } sort keys %dsns ],
b1d11550 112 preserve_case_mode_is_exclusive => 1,
113 quote_char => [ qw/[ ]/ ],
8dcf4292 114 basic_date_datatype => ($common_version >= 10) ? 'DATE' : 'SMALLDATETIME',
f8640ecc 115 default_on_clause => 'NO ACTION',
deedd576 116 data_types => {
81ade4d9 117 # http://msdn.microsoft.com/en-us/library/ms187752.aspx
118
119 # numeric types
120 'int identity' => { data_type => 'integer', is_auto_increment => 1 },
121 bigint => { data_type => 'bigint' },
122 int => { data_type => 'integer' },
123 integer => { data_type => 'integer' },
124 smallint => { data_type => 'smallint' },
125 tinyint => { data_type => 'tinyint' },
126 money => { data_type => 'money' },
127 smallmoney => { data_type => 'smallmoney' },
128 bit => { data_type => 'bit' },
8c41c3ce 129 real => { data_type => 'real' },
130 'float(14)' => { data_type => 'real' },
131 'float(24)' => { data_type => 'real' },
81ade4d9 132 'float(25)' => { data_type => 'double precision' },
133 'float(53)' => { data_type => 'double precision' },
134 float => { data_type => 'double precision' },
135 'double precision'
136 => { data_type => 'double precision' },
afcd3c32 137 'numeric(6)' => { data_type => 'numeric', size => [6,0] },
81ade4d9 138 'numeric(6,3)' => { data_type => 'numeric', size => [6,3] },
afcd3c32 139 'decimal(6)' => { data_type => 'decimal', size => [6,0] },
81ade4d9 140 'decimal(6,3)' => { data_type => 'decimal', size => [6,3] },
141 'dec(6,3)' => { data_type => 'decimal', size => [6,3] },
142 numeric => { data_type => 'numeric' },
143 decimal => { data_type => 'decimal' },
144 dec => { data_type => 'decimal' },
145
146 # datetime types
81ade4d9 147 datetime => { data_type => 'datetime' },
6e566cc4 148 # test rewriting getdate() to current_timestamp
149 'datetime default getdate()'
701cd3e3 150 => { data_type => 'datetime', default_value => \'current_timestamp',
151 original => { default_value => \'getdate()' } },
81ade4d9 152 smalldatetime => { data_type => 'smalldatetime' },
8dcf4292 153
154 ($common_version >= 10) ? %$mssql_2008_new_data_types : (),
81ade4d9 155
156 # string types
157 char => { data_type => 'char', size => 1 },
158 'char(2)' => { data_type => 'char', size => 2 },
c7e6dc1f 159 character => { data_type => 'char', size => 1 },
160 'character(2)' => { data_type => 'char', size => 2 },
81ade4d9 161 'varchar(2)' => { data_type => 'varchar', size => 2 },
b48f3f80 162
81ade4d9 163 nchar => { data_type => 'nchar', size => 1 },
164 'nchar(2)' => { data_type => 'nchar', size => 2 },
165 'nvarchar(2)' => { data_type => 'nvarchar', size => 2 },
166
167 # binary types
8c41c3ce 168 'binary' => { data_type => 'binary', size => 1 },
169 'binary(2)' => { data_type => 'binary', size => 2 },
170 'varbinary(2)' => { data_type => 'varbinary', size => 2 },
81ade4d9 171
172 # blob types
173 'varchar(max)' => { data_type => 'text' },
174 text => { data_type => 'text' },
b48f3f80 175
81ade4d9 176 'nvarchar(max)' => { data_type => 'ntext' },
177 ntext => { data_type => 'ntext' },
b48f3f80 178
81ade4d9 179 'varbinary(max)' => { data_type => 'image' },
180 image => { data_type => 'image' },
181
182 # other types
183 timestamp => { data_type => 'timestamp', inflate_datetime => 0 },
16773d6d 184 rowversion => { data_type => 'rowversion' },
825c42a3 185 uniqueidentifier => { data_type => 'uniqueidentifier' },
81ade4d9 186 sql_variant => { data_type => 'sql_variant' },
187 xml => { data_type => 'xml' },
deedd576 188 },
3a89a69f 189 extra => {
190 create => [
191 q{
192 CREATE TABLE [mssql_loader_test1.dot] (
193 id INT IDENTITY NOT NULL PRIMARY KEY,
194 dat VARCHAR(8)
195 )
196 },
197 q{
198 CREATE TABLE mssql_loader_test3 (
199 id INT IDENTITY NOT NULL PRIMARY KEY
200 )
201 },
202 q{
203 CREATE VIEW mssql_loader_test4 AS
204 SELECT * FROM mssql_loader_test3
205 },
020f3c3a 206 # test capitalization of cols in unique constraints and rels
ccce0e82 207 q{ SET QUOTED_IDENTIFIER ON },
208 q{ SET ANSI_NULLS ON },
deedd576 209 q{
020f3c3a 210 CREATE TABLE [MSSQL_Loader_Test5] (
211 [Id] INT IDENTITY NOT NULL PRIMARY KEY,
ccce0e82 212 [FooCol] INT NOT NULL,
213 [BarCol] INT NOT NULL,
214 UNIQUE ([FooCol], [BarCol])
deedd576 215 )
216 },
020f3c3a 217 q{
218 CREATE TABLE [MSSQL_Loader_Test6] (
219 [Five_Id] INT REFERENCES [MSSQL_Loader_Test5] ([Id])
220 )
221 },
f8640ecc 222 # 8 through 12 are used for the multi-schema tests and 13 through 16 are used for multi-db tests
223 q{
224 create table mssql_loader_test17 (
225 id int identity primary key
226 )
227 },
228 q{
229 create table mssql_loader_test18 (
230 id int identity primary key,
231 seventeen_id int,
232 foreign key (seventeen_id) references mssql_loader_test17(id)
233 on delete set default on update set null
234 )
235 },
3a89a69f 236 ],
237 pre_drop_ddl => [
238 'CREATE TABLE mssql_loader_test3 (id INT IDENTITY NOT NULL PRIMARY KEY)',
239 'DROP VIEW mssql_loader_test4',
240 ],
241 drop => [
242 '[mssql_loader_test1.dot]',
deedd576 243 'mssql_loader_test3',
060f5ecd 244 'MSSQL_Loader_Test6',
245 'MSSQL_Loader_Test5',
f8640ecc 246 'mssql_loader_test17',
247 'mssql_loader_test18',
3a89a69f 248 ],
f8640ecc 249 count => 14 + 30 * 2 + 26 * 2, # extra + multi-schema + mutli-db
3a89a69f 250 run => sub {
c4a69b87 251 my ($monikers, $classes, $self);
252 ($schema, $monikers, $classes, $self) = @_;
253
254 my $connect_info = [@$self{qw/dsn user password/}];
3a89a69f 255
256# Test that the table above (with '.' in name) gets loaded correctly.
257 ok((my $rs = eval {
c4a69b87 258 $schema->resultset('MssqlLoaderTest1Dot') }),
3a89a69f 259 'got a resultset for table with dot in name');
260
261 ok((my $from = eval { $rs->result_source->from }),
262 'got an $rsrc->from for table with dot in name');
263
264 is ref($from), 'SCALAR', '->table with dot in name is a scalar ref';
265
266 is eval { $$from }, "[mssql_loader_test1.dot]",
267 '->table with dot in name has correct name';
268
deedd576 269# Test capitalization of columns and unique constraints
270 ok ((my $rsrc = $schema->resultset($monikers->{mssql_loader_test5})->result_source),
271 'got result_source');
272
c4a69b87 273 if ($schema->loader->preserve_case) {
060f5ecd 274 is_deeply [ $rsrc->columns ], [qw/Id FooCol BarCol/],
275 'column name case is preserved with case-sensitive collation';
020f3c3a 276
060f5ecd 277 my %uniqs = $rsrc->unique_constraints;
278 delete $uniqs{primary};
3a89a69f 279
060f5ecd 280 is_deeply ((values %uniqs)[0], [qw/FooCol BarCol/],
281 'column name case is preserved in unique constraint with case-sensitive collation');
282 }
283 else {
284 is_deeply [ $rsrc->columns ], [qw/id foocol barcol/],
285 'column names are lowercased for case-insensitive collation';
286
287 my %uniqs = $rsrc->unique_constraints;
288 delete $uniqs{primary};
3a89a69f 289
060f5ecd 290 is_deeply ((values %uniqs)[0], [qw/foocol barcol/],
291 'columns in unique constraint lowercased for case-insensitive collation');
292 }
3a89a69f 293
020f3c3a 294 lives_and {
060f5ecd 295 my $five_row = $schema->resultset($monikers->{mssql_loader_test5})->new_result({});
16773d6d 296
c4a69b87 297 if ($schema->loader->preserve_case) {
16773d6d 298 $five_row->foo_col(1);
299 $five_row->bar_col(2);
300 }
301 else {
302 $five_row->foocol(1);
303 $five_row->barcol(2);
304 }
060f5ecd 305 $five_row->insert;
306
16773d6d 307 my $six_row = $five_row->create_related('mssql_loader_test6s', {});
020f3c3a 308
309 is $six_row->five->id, 1;
310 } 'relationships for mixed-case tables/columns detected';
311
3a89a69f 312# Test that a bad view (where underlying table is gone) is ignored.
313 my $dbh = $schema->storage->dbh;
314 $dbh->do("DROP TABLE mssql_loader_test3");
315
1ad8e8c3 316 warnings_exist_silent { $schema->rescan }
c38ec663 317 qr/^Bad table or view 'mssql_loader_test4'/, 'bad view ignored';
3a89a69f 318
319 throws_ok {
320 $schema->resultset($monikers->{mssql_loader_test4})
321 } qr/Can't find source/,
322 'no source registered for bad view';
c4a69b87 323
f8640ecc 324 # test on delete/update fk clause introspection
325 ok ((my $rel_info = $schema->source('MssqlLoaderTest18')->relationship_info('seventeen')),
326 'got rel info');
327
328 is $rel_info->{attrs}{on_delete}, 'SET DEFAULT',
329 'ON DELETE clause introspected correctly';
330
331 is $rel_info->{attrs}{on_update}, 'SET NULL',
332 'ON UPDATE clause introspected correctly';
333
334 is $rel_info->{attrs}{is_deferrable}, 1,
335 'is_deferrable defaults to 1';
336
c4a69b87 337 SKIP: {
338 my $dbh = $schema->storage->dbh;
339
340 try {
5975bbe6 341 $dbh->do('CREATE SCHEMA [dbicsl-test]');
c4a69b87 342 }
343 catch {
5975bbe6 344 skip "no CREATE SCHEMA privileges", 30 * 2;
c4a69b87 345 };
346
347 $dbh->do(<<"EOF");
348 CREATE TABLE [dbicsl-test].mssql_loader_test8 (
349 id INT IDENTITY PRIMARY KEY,
350 value VARCHAR(100)
351 )
352EOF
353 $dbh->do(<<"EOF");
354 CREATE TABLE [dbicsl-test].mssql_loader_test9 (
355 id INT IDENTITY PRIMARY KEY,
356 value VARCHAR(100),
5975bbe6 357 eight_id INTEGER NOT NULL,
358 CONSTRAINT loader_test9_uniq UNIQUE (eight_id),
c4a69b87 359 FOREIGN KEY (eight_id) REFERENCES [dbicsl-test].mssql_loader_test8 (id)
360 )
361EOF
362 $dbh->do('CREATE SCHEMA [dbicsl.test]');
363 $dbh->do(<<"EOF");
5975bbe6 364 CREATE TABLE [dbicsl.test].mssql_loader_test9 (
365 pk INT IDENTITY PRIMARY KEY,
366 value VARCHAR(100),
367 eight_id INTEGER NOT NULL,
368 CONSTRAINT loader_test9_uniq UNIQUE (eight_id),
369 FOREIGN KEY (eight_id) REFERENCES [dbicsl-test].mssql_loader_test8 (id)
370 )
371EOF
372 $dbh->do(<<"EOF");
c4a69b87 373 CREATE TABLE [dbicsl.test].mssql_loader_test10 (
374 id INT IDENTITY PRIMARY KEY,
375 value VARCHAR(100),
376 mssql_loader_test8_id INTEGER,
377 FOREIGN KEY (mssql_loader_test8_id) REFERENCES [dbicsl-test].mssql_loader_test8 (id)
378 )
379EOF
380 $dbh->do(<<"EOF");
381 CREATE TABLE [dbicsl.test].mssql_loader_test11 (
382 id INT IDENTITY PRIMARY KEY,
383 value VARCHAR(100),
384 ten_id INTEGER NOT NULL UNIQUE,
385 FOREIGN KEY (ten_id) REFERENCES [dbicsl.test].mssql_loader_test10 (id)
386 )
387EOF
388 $dbh->do(<<"EOF");
389 CREATE TABLE [dbicsl-test].mssql_loader_test12 (
390 id INT IDENTITY PRIMARY KEY,
391 value VARCHAR(100),
392 mssql_loader_test11_id INTEGER,
393 FOREIGN KEY (mssql_loader_test11_id) REFERENCES [dbicsl.test].mssql_loader_test11 (id)
394 )
395EOF
396
5975bbe6 397 my $guard = Scope::Guard->new(\&cleanup_schemas);
c4a69b87 398
399 foreach my $db_schema (['dbicsl-test', 'dbicsl.test'], '%') {
400 lives_and {
401 rmtree EXTRA_DUMP_DIR;
402
403 my @warns;
404 local $SIG{__WARN__} = sub {
405 push @warns, $_[0] unless $_[0] =~ /\bcollides\b/;
406 };
407
408 make_schema_at(
409 'MSSQLMultiSchema',
410 {
411 naming => 'current',
412 db_schema => $db_schema,
413 dump_directory => EXTRA_DUMP_DIR,
414 quiet => 1,
415 },
416 $connect_info,
417 );
418
419 diag join "\n", @warns if @warns;
420
421 is @warns, 0;
422 } 'dumped schema for "dbicsl-test" and "dbicsl.test" schemas with no warnings';
423
424 my ($test_schema, $rsrc, $rs, $row, %uniqs, $rel_info);
425
426 lives_and {
427 ok $test_schema = MSSQLMultiSchema->connect(@$connect_info);
428 } 'connected test schema';
429
430 lives_and {
4c2e2ce9 431 ok $rsrc = $test_schema->source('MssqlLoaderTest8');
c4a69b87 432 } 'got source for table in schema name with dash';
433
434 is try { $rsrc->column_info('id')->{is_auto_increment} }, 1,
435 'column in schema name with dash';
436
437 is try { $rsrc->column_info('value')->{data_type} }, 'varchar',
438 'column in schema name with dash';
439
440 is try { $rsrc->column_info('value')->{size} }, 100,
441 'column in schema name with dash';
442
443 lives_and {
4c2e2ce9 444 ok $rs = $test_schema->resultset('MssqlLoaderTest8');
c4a69b87 445 } 'got resultset for table in schema name with dash';
446
447 lives_and {
448 ok $row = $rs->create({ value => 'foo' });
449 } 'executed SQL on table in schema name with dash';
450
5975bbe6 451 $rel_info = try { $rsrc->relationship_info('dbicsl_dash_test_mssql_loader_test9') };
c4a69b87 452
453 is_deeply $rel_info->{cond}, {
454 'foreign.eight_id' => 'self.id'
455 }, 'relationship in schema name with dash';
456
457 is $rel_info->{attrs}{accessor}, 'single',
458 'relationship in schema name with dash';
459
460 is $rel_info->{attrs}{join_type}, 'LEFT',
461 'relationship in schema name with dash';
462
463 lives_and {
5975bbe6 464 ok $rsrc = $test_schema->source('DbicslDashTestMssqlLoaderTest9');
c4a69b87 465 } 'got source for table in schema name with dash';
466
467 %uniqs = try { $rsrc->unique_constraints };
468
469 is keys %uniqs, 2,
470 'got unique and primary constraint in schema name with dash';
471
5975bbe6 472 delete $uniqs{primary};
473
474 is_deeply ((values %uniqs)[0], ['eight_id'],
475 'correct unique constraint in schema name with dash');
476
c4a69b87 477 lives_and {
4c2e2ce9 478 ok $rsrc = $test_schema->source('MssqlLoaderTest10');
c4a69b87 479 } 'got source for table in schema name with dot';
480
481 is try { $rsrc->column_info('id')->{is_auto_increment} }, 1,
482 'column in schema name with dot introspected correctly';
483
484 is try { $rsrc->column_info('value')->{data_type} }, 'varchar',
485 'column in schema name with dot introspected correctly';
486
487 is try { $rsrc->column_info('value')->{size} }, 100,
488 'column in schema name with dot introspected correctly';
489
490 lives_and {
4c2e2ce9 491 ok $rs = $test_schema->resultset('MssqlLoaderTest10');
c4a69b87 492 } 'got resultset for table in schema name with dot';
493
494 lives_and {
495 ok $row = $rs->create({ value => 'foo' });
496 } 'executed SQL on table in schema name with dot';
497
498 $rel_info = try { $rsrc->relationship_info('mssql_loader_test11') };
499
500 is_deeply $rel_info->{cond}, {
501 'foreign.ten_id' => 'self.id'
502 }, 'relationship in schema name with dot';
503
504 is $rel_info->{attrs}{accessor}, 'single',
505 'relationship in schema name with dot';
506
507 is $rel_info->{attrs}{join_type}, 'LEFT',
508 'relationship in schema name with dot';
509
510 lives_and {
4c2e2ce9 511 ok $rsrc = $test_schema->source('MssqlLoaderTest11');
c4a69b87 512 } 'got source for table in schema name with dot';
513
514 %uniqs = try { $rsrc->unique_constraints };
515
516 is keys %uniqs, 2,
517 'got unique and primary constraint in schema name with dot';
518
5975bbe6 519 delete $uniqs{primary};
520
521 is_deeply ((values %uniqs)[0], ['ten_id'],
522 'correct unique constraint in schema name with dot');
523
c4a69b87 524 lives_and {
4c2e2ce9 525 ok $test_schema->source('MssqlLoaderTest10')
c4a69b87 526 ->has_relationship('mssql_loader_test8');
527 } 'cross-schema relationship in multi-db_schema';
528
529 lives_and {
4c2e2ce9 530 ok $test_schema->source('MssqlLoaderTest8')
c4a69b87 531 ->has_relationship('mssql_loader_test10s');
532 } 'cross-schema relationship in multi-db_schema';
533
534 lives_and {
4c2e2ce9 535 ok $test_schema->source('MssqlLoaderTest12')
c4a69b87 536 ->has_relationship('mssql_loader_test11');
537 } 'cross-schema relationship in multi-db_schema';
538
539 lives_and {
4c2e2ce9 540 ok $test_schema->source('MssqlLoaderTest11')
c4a69b87 541 ->has_relationship('mssql_loader_test12s');
542 } 'cross-schema relationship in multi-db_schema';
543 }
544 }
545
546 SKIP: {
b826c589 547 # for ADO
ff4b0152 548 local $SIG{__WARN__} = sigwarn_silencer(
549 qr/Changed database context/
550 );
b826c589 551
c4a69b87 552 my $dbh = $schema->storage->dbh;
553
554 try {
555 $dbh->do('USE master');
556 $dbh->do('CREATE DATABASE dbicsl_test1');
557 }
558 catch {
4c2e2ce9 559 diag "no CREATE DATABASE privileges: '$_'";
5975bbe6 560 skip "no CREATE DATABASE privileges", 26 * 2;
c4a69b87 561 };
562
563 $dbh->do('CREATE DATABASE dbicsl_test2');
564
565 $dbh->do('USE dbicsl_test1');
566
567 $dbh->do(<<'EOF');
568 CREATE TABLE mssql_loader_test13 (
569 id INT IDENTITY PRIMARY KEY,
570 value VARCHAR(100)
571 )
572EOF
573 $dbh->do(<<'EOF');
574 CREATE TABLE mssql_loader_test14 (
575 id INT IDENTITY PRIMARY KEY,
576 value VARCHAR(100),
5975bbe6 577 thirteen_id INTEGER REFERENCES mssql_loader_test13 (id),
578 CONSTRAINT loader_test14_uniq UNIQUE (thirteen_id)
c4a69b87 579 )
580EOF
581
c4a69b87 582 $dbh->do('USE dbicsl_test2');
583
5975bbe6 584 $dbh->do(<<'EOF');
585 CREATE TABLE mssql_loader_test14 (
586 pk INT IDENTITY PRIMARY KEY,
587 value VARCHAR(100),
588 thirteen_id INTEGER,
589 CONSTRAINT loader_test14_uniq UNIQUE (thirteen_id)
590 )
591EOF
592
c4a69b87 593 $dbh->do(<<"EOF");
594 CREATE TABLE mssql_loader_test15 (
595 id INT IDENTITY PRIMARY KEY,
596 value VARCHAR(100)
597 )
598EOF
599 $dbh->do(<<"EOF");
600 CREATE TABLE mssql_loader_test16 (
601 id INT IDENTITY PRIMARY KEY,
602 value VARCHAR(100),
603 fifteen_id INTEGER UNIQUE REFERENCES mssql_loader_test15 (id)
604 )
605EOF
606
5975bbe6 607 my $guard = Scope::Guard->new(\&cleanup_databases);
c4a69b87 608
5975bbe6 609 foreach my $db_schema ({ dbicsl_test1 => '%', dbicsl_test2 => '%' }, { '%' => '%' }) {
610 lives_and {
611 my @warns;
612 local $SIG{__WARN__} = sub {
613 push @warns, $_[0] unless $_[0] =~ /\bcollides\b/;
614 };
494e0205 615
5975bbe6 616 make_schema_at(
617 'MSSQLMultiDatabase',
618 {
619 naming => 'current',
620 db_schema => $db_schema,
5975bbe6 621 dump_directory => EXTRA_DUMP_DIR,
622 quiet => 1,
623 },
624 $connect_info,
625 );
c4a69b87 626
5975bbe6 627 diag join "\n", @warns if @warns;
c4a69b87 628
5975bbe6 629 is @warns, 0;
630 } "dumped schema for databases 'dbicsl_test1' and 'dbicsl_test2' with no warnings";
c4a69b87 631
5975bbe6 632 my $test_schema;
c4a69b87 633
5975bbe6 634 lives_and {
635 ok $test_schema = MSSQLMultiDatabase->connect(@$connect_info);
636 } 'connected test schema';
c4a69b87 637
5975bbe6 638 my ($rsrc, $rs, $row, $rel_info, %uniqs);
c4a69b87 639
5975bbe6 640 lives_and {
4c2e2ce9 641 ok $rsrc = $test_schema->source('MssqlLoaderTest13');
5975bbe6 642 } 'got source for table in database one';
c4a69b87 643
5975bbe6 644 is try { $rsrc->column_info('id')->{is_auto_increment} }, 1,
645 'column in database one';
c4a69b87 646
5975bbe6 647 is try { $rsrc->column_info('value')->{data_type} }, 'varchar',
648 'column in database one';
c4a69b87 649
5975bbe6 650 is try { $rsrc->column_info('value')->{size} }, 100,
651 'column in database one';
c4a69b87 652
5975bbe6 653 lives_and {
4c2e2ce9 654 ok $rs = $test_schema->resultset('MssqlLoaderTest13');
5975bbe6 655 } 'got resultset for table in database one';
c4a69b87 656
5975bbe6 657 lives_and {
658 ok $row = $rs->create({ value => 'foo' });
659 } 'executed SQL on table in database one';
c4a69b87 660
5975bbe6 661 $rel_info = try { $rsrc->relationship_info('mssql_loader_test14') };
c4a69b87 662
5975bbe6 663 is_deeply $rel_info->{cond}, {
664 'foreign.thirteen_id' => 'self.id'
665 }, 'relationship in database one';
c4a69b87 666
5975bbe6 667 is $rel_info->{attrs}{accessor}, 'single',
668 'relationship in database one';
c4a69b87 669
5975bbe6 670 is $rel_info->{attrs}{join_type}, 'LEFT',
671 'relationship in database one';
c4a69b87 672
5975bbe6 673 lives_and {
674 ok $rsrc = $test_schema->source('DbicslTest1MssqlLoaderTest14');
675 } 'got source for table in database one';
c4a69b87 676
5975bbe6 677 %uniqs = try { $rsrc->unique_constraints };
c4a69b87 678
5975bbe6 679 is keys %uniqs, 2,
680 'got unique and primary constraint in database one';
c4a69b87 681
5975bbe6 682 delete $uniqs{primary};
c4a69b87 683
5975bbe6 684 is_deeply ((values %uniqs)[0], ['thirteen_id'],
685 'correct unique constraint in database one');
c4a69b87 686
5975bbe6 687 lives_and {
4c2e2ce9 688 ok $rsrc = $test_schema->source('MssqlLoaderTest15');
5975bbe6 689 } 'got source for table in database two';
c4a69b87 690
5975bbe6 691 is try { $rsrc->column_info('id')->{is_auto_increment} }, 1,
692 'column in database two introspected correctly';
c4a69b87 693
5975bbe6 694 is try { $rsrc->column_info('value')->{data_type} }, 'varchar',
695 'column in database two introspected correctly';
c4a69b87 696
5975bbe6 697 is try { $rsrc->column_info('value')->{size} }, 100,
698 'column in database two introspected correctly';
c4a69b87 699
5975bbe6 700 lives_and {
4c2e2ce9 701 ok $rs = $test_schema->resultset('MssqlLoaderTest15');
5975bbe6 702 } 'got resultset for table in database two';
c4a69b87 703
5975bbe6 704 lives_and {
705 ok $row = $rs->create({ value => 'foo' });
706 } 'executed SQL on table in database two';
c4a69b87 707
5975bbe6 708 $rel_info = try { $rsrc->relationship_info('mssql_loader_test16') };
c4a69b87 709
5975bbe6 710 is_deeply $rel_info->{cond}, {
711 'foreign.fifteen_id' => 'self.id'
712 }, 'relationship in database two';
c4a69b87 713
5975bbe6 714 is $rel_info->{attrs}{accessor}, 'single',
715 'relationship in database two';
716
717 is $rel_info->{attrs}{join_type}, 'LEFT',
718 'relationship in database two';
719
720 lives_and {
4c2e2ce9 721 ok $rsrc = $test_schema->source('MssqlLoaderTest16');
5975bbe6 722 } 'got source for table in database two';
c4a69b87 723
5975bbe6 724 %uniqs = try { $rsrc->unique_constraints };
725
726 is keys %uniqs, 2,
727 'got unique and primary constraint in database two';
c4a69b87 728
5975bbe6 729 delete $uniqs{primary};
730
731 is_deeply ((values %uniqs)[0], ['fifteen_id'],
732 'correct unique constraint in database two');
733 }
c4a69b87 734 }
3a89a69f 735 },
736 },
046e344c 737);
738
8dcf4292 739$tester->run_tests();
740
5975bbe6 741sub cleanup_schemas {
742 return if $ENV{SCHEMA_LOADER_TESTS_NOCLEANUP};
743
744 # switch back to default database
745 $schema->storage->disconnect;
746 my $dbh = $schema->storage->dbh;
747
748 foreach my $table ('[dbicsl-test].mssql_loader_test12',
749 '[dbicsl.test].mssql_loader_test11',
750 '[dbicsl.test].mssql_loader_test10',
751 '[dbicsl.test].mssql_loader_test9',
752 '[dbicsl-test].mssql_loader_test9',
753 '[dbicsl-test].mssql_loader_test8') {
754 try {
755 $dbh->do("DROP TABLE $table");
756 }
757 catch {
758 diag "Error dropping table: $_";
759 };
760 }
c4a69b87 761
5975bbe6 762 foreach my $db_schema (qw/dbicsl-test dbicsl.test/) {
763 try {
764 $dbh->do(qq{DROP SCHEMA [$db_schema]});
765 }
766 catch {
767 diag "Error dropping test schema $db_schema: $_";
768 };
769 }
c4a69b87 770
5975bbe6 771 rmtree EXTRA_DUMP_DIR;
772}
c4a69b87 773
5975bbe6 774sub cleanup_databases {
775 return if $ENV{SCHEMA_LOADER_TESTS_NOCLEANUP};
c4a69b87 776
b826c589 777 # for ADO
ff4b0152 778 local $SIG{__WARN__} = sigwarn_silencer(
779 qr/Changed database context/
780 );
b826c589 781
5975bbe6 782 my $dbh = $schema->storage->dbh;
c4a69b87 783
5975bbe6 784 $dbh->do('USE dbicsl_test1');
c4a69b87 785
5975bbe6 786 foreach my $table ('mssql_loader_test14',
787 'mssql_loader_test13') {
788 try {
789 $dbh->do("DROP TABLE $table");
790 }
791 catch {
792 diag "Error dropping table: $_";
793 };
794 }
c4a69b87 795
5975bbe6 796 $dbh->do('USE dbicsl_test2');
c4a69b87 797
5975bbe6 798 foreach my $table ('mssql_loader_test16',
799 'mssql_loader_test15',
800 'mssql_loader_test14') {
801 try {
802 $dbh->do("DROP TABLE $table");
803 }
804 catch {
805 diag "Error dropping table: $_";
806 };
807 }
c4a69b87 808
5975bbe6 809 $dbh->do('USE master');
810
811 foreach my $database (qw/dbicsl_test1 dbicsl_test2/) {
812 try {
813 $dbh->do(qq{DROP DATABASE $database});
c4a69b87 814 }
5975bbe6 815 catch {
816 diag "Error dropping test database '$database': $_";
817 };
c4a69b87 818 }
5975bbe6 819
820 rmtree EXTRA_DUMP_DIR;
c4a69b87 821}
060f5ecd 822# vim:et sts=4 sw=4 tw=0: