Add import-time-skip support to OptDeps, switch most tests over to that
[dbsrgits/DBIx-Class.git] / t / 72pg.t
CommitLineData
cb551b07 1use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_rdbms_pg';
2
70350518 3use strict;
4617b792 4use warnings;
70350518 5
6use Test::More;
9ba627e3 7use Test::Exception;
bbdda281 8use Sub::Name;
bb961936 9use Config;
199fbc45 10use DBIx::Class::Optional::Dependencies ();
70350518 11use lib qw(t/lib);
12use DBICTest;
b5ce6748 13use SQL::Abstract 'is_literal_value';
bb961936 14use DBIx::Class::_Util 'is_exception';
70350518 15
0567538f 16my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
17
52c53388 18### load any test classes that are defined further down in the file via BEGIN blocks
70a201a5 19our @test_classes; #< array that will be pushed into by test classes defined in this file
20DBICTest::Schema->load_classes( map {s/.+:://;$_} @test_classes ) if @test_classes;
efd38994 21
52c53388 22### pre-connect tests (keep each test separate as to make sure rebless() runs)
bab40dee 23 {
24 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
eabde904 25
bab40dee 26 ok (!$s->storage->_dbh, 'definitely not connected');
eabde904 27
bab40dee 28 # Check that datetime_parser returns correctly before we explicitly connect.
29 SKIP: {
68de9438 30 skip (
31 "Pg parser detection test needs " . DBIx::Class::Optional::Dependencies->req_missing_for ('test_dt_pg'),
32 2
33 ) unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_dt_pg');
114780ee 34
bab40dee 35 my $store = ref $s->storage;
36 is($store, 'DBIx::Class::Storage::DBI', 'Started with generic storage');
114780ee 37
bab40dee 38 my $parser = $s->storage->datetime_parser;
39 is( $parser, 'DateTime::Format::Pg', 'datetime_parser is as expected');
40 }
114780ee 41
bab40dee 42 ok (!$s->storage->_dbh, 'still not connected');
43 }
bbdda281 44
bab40dee 45 {
46 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
47 # make sure sqlt_type overrides work (::Storage::DBI::Pg does this)
48 ok (!$s->storage->_dbh, 'definitely not connected');
49 is ($s->storage->sqlt_type, 'PostgreSQL', 'sqlt_type correct pre-connection');
50 ok (!$s->storage->_dbh, 'still not connected');
51 }
0567538f 52
97277745 53# test LIMIT support
54{
55 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
56 drop_test_schema($schema);
57 create_test_schema($schema);
58 for (1..6) {
59 $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
60 }
61 my $it = $schema->resultset('Artist')->search( {},
62 { rows => 3,
63 offset => 2,
64 order_by => 'artistid' }
65 );
66 is( $it->count, 3, "LIMIT count ok" ); # ask for 3 rows out of 6 artists
67 is( $it->next->name, "Artist 3", "iterator->next ok" );
68 $it->next;
69 $it->next;
70 $it->next;
71 is( $it->next, undef, "next past end of resultset ok" );
e5372da4 72
73 # Limit with select-lock
74 lives_ok {
75 $schema->txn_do (sub {
76 isa_ok (
77 $schema->resultset('Artist')->find({artistid => 1}, {for => 'update', rows => 1}),
78 'DBICTest::Schema::Artist',
79 );
80 });
81 } 'Limited FOR UPDATE select works';
97277745 82}
83
bbdda281 84# check if we indeed do support stuff
85my $test_server_supports_insert_returning = do {
af1f4f84 86
87 my $si = DBICTest::Schema->connect($dsn, $user, $pass)->storage->_server_info;
88 die "Unparseable Pg server version: $si->{dbms_version}\n"
89 unless $si->{normalized_dbms_version};
90
91 $si->{normalized_dbms_version} < 8.002 ? 0 : 1;
bbdda281 92};
93is (
94 DBICTest::Schema->connect($dsn, $user, $pass)->storage->_use_insert_returning,
95 $test_server_supports_insert_returning,
96 'insert returning capability guessed correctly'
97);
98
99my $schema;
100for my $use_insert_returning ($test_server_supports_insert_returning
101 ? (0,1)
102 : (0)
103) {
104
6892eb09 105 no warnings qw/once redefine/;
106 my $old_connection = DBICTest::Schema->can('connection');
bbdda281 107 local *DBICTest::Schema::connection = subname 'DBICTest::Schema::connection' => sub {
6892eb09 108 my $s = shift->$old_connection(@_);
bbdda281 109 $s->storage->_use_insert_returning ($use_insert_returning);
110 $s;
111 };
112
113### test capability override
114 {
115 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
116
117 ok (!$s->storage->_dbh, 'definitely not connected');
118
119 ok (
120 ! ($s->storage->_use_insert_returning xor $use_insert_returning),
121 'insert returning capability set correctly',
122 );
123 ok (!$s->storage->_dbh, 'still not connected (capability override works)');
124 }
125
70a201a5 126### connect, create postgres-specific test schema
c3af542a 127
bab40dee 128 $schema = DBICTest::Schema->connect($dsn, $user, $pass);
1f5aae08 129 $schema->storage->ensure_connected;
130
bab40dee 131 drop_test_schema($schema);
132 create_test_schema($schema);
609c5f1b 133
70a201a5 134### begin main tests
4617b792 135
372da819 136# run a BIG bunch of tests for last-insert-id / Auto-PK / sequence
137# discovery
bab40dee 138 run_apk_tests($schema); #< older set of auto-pk tests
139 run_extended_apk_tests($schema); #< new extended set of auto-pk tests
70a201a5 140
c58303cd 141
142######## test the pg-specific syntax from https://rt.cpan.org/Ticket/Display.html?id=99503
143 lives_ok {
144 is(
145 $schema->resultset('Artist')->search({ artistid => { -in => \ '(select 4) union (select 5)' } })->count,
146 2,
147 'Two expected artists found on subselect union within IN',
148 );
149 };
150
bab40dee 151### type_info tests
52c53388 152
bab40dee 153 my $test_type_info = {
154 'artistid' => {
155 'data_type' => 'integer',
156 'is_nullable' => 0,
157 'size' => 4,
158 },
159 'name' => {
160 'data_type' => 'character varying',
161 'is_nullable' => 1,
162 'size' => 100,
163 'default_value' => undef,
164 },
165 'rank' => {
166 'data_type' => 'integer',
167 'is_nullable' => 0,
168 'size' => 4,
169 'default_value' => 13,
52c53388 170
bab40dee 171 },
172 'charfield' => {
173 'data_type' => 'character',
174 'is_nullable' => 1,
175 'size' => 10,
176 'default_value' => undef,
177 },
178 'arrayfield' => {
179 'data_type' => 'integer[]',
180 'is_nullable' => 1,
181 'size' => undef,
182 'default_value' => undef,
183 },
184 };
52c53388 185
bab40dee 186 my $type_info = $schema->storage->columns_info_for('dbic_t_schema.artist');
187 my $artistid_defval = delete $type_info->{artistid}->{default_value};
70a201a5 188
f45dc928 189 # The curor info is too radically different from what is in the column_info
190 # call - just punt it (DBD::SQLite tests the codepath plenty enough)
191 unless (DBIx::Class::_ENV_::STRESSTEST_COLUMN_INFO_UNAWARE_STORAGE) {
192 like(
193 $artistid_defval,
194 qr/^nextval\('([^\.]*\.){0,1}artist_artistid_seq'::(?:text|regclass)\)/,
195 'columns_info_for - sequence matches Pg get_autoinc_seq expectations'
196 );
a953d8d9 197
f45dc928 198 is_deeply($type_info, $test_type_info,
199 'columns_info_for - column data types');
200 }
a953d8d9 201
bab40dee 202####### Array tests
70a201a5 203
bab40dee 204 BEGIN {
205 package DBICTest::Schema::ArrayTest;
206 push @main::test_classes, __PACKAGE__;
70a201a5 207
bab40dee 208 use strict;
209 use warnings;
41519379 210 use base 'DBICTest::BaseResult';
70a201a5 211
bab40dee 212 __PACKAGE__->table('dbic_t_schema.array_test');
213 __PACKAGE__->add_columns(qw/id arrayfield/);
214 __PACKAGE__->column_info_from_storage(1);
215 __PACKAGE__->set_primary_key('id');
70a201a5 216
bab40dee 217 }
218 SKIP: {
0647e0cc 219 skip "Need DBD::Pg 2.9.2 or newer for array tests", 4 if $DBD::Pg::VERSION < 2.009002;
70a201a5 220
41519379 221 my $arr_rs = $schema->resultset('ArrayTest');
222
bab40dee 223 lives_ok {
41519379 224 $arr_rs->create({
bab40dee 225 arrayfield => [1, 2],
226 });
227 } 'inserting arrayref as pg array data';
70a201a5 228
bab40dee 229 lives_ok {
41519379 230 $arr_rs->update({
bab40dee 231 arrayfield => [3, 4],
232 });
233 } 'updating arrayref as pg array data';
ac45262b 234
41519379 235 $arr_rs->create({
0647e0cc 236 arrayfield => [5, 6],
9ba627e3 237 });
c224117b 238
f6faeab8 239 lives_ok {
240 $schema->populate('ArrayTest', [
241 [ qw/arrayfield/ ],
242 [ [0,0] ],
243 ]);
244 } 'inserting arrayref using void ctx populate';
245
41519379 246 # Search using arrays
247 lives_ok {
248 is_deeply (
249 $arr_rs->search({ arrayfield => { -value => [3,4] } })->first->arrayfield,
250 [3,4],
251 'Array value matches'
252 );
253 } 'searching by arrayref';
a780a0ff 254
bab40dee 255 lives_ok {
41519379 256 is_deeply (
257 $arr_rs->search({ arrayfield => { '=' => { -value => [3,4] }} })->first->arrayfield,
49eeb48d 258 [3,4],
41519379 259 'Array value matches explicit equal'
260 );
261 } 'searching by arrayref (explicit equal sign)';
a780a0ff 262
41519379 263 lives_ok {
264 is_deeply (
265 $arr_rs->search({ arrayfield => { '>' => { -value => [3,1] }} })->first->arrayfield,
266 [3,4],
267 'Array value matches greater than'
268 );
269 } 'searching by arrayref (greater than)';
270
271 lives_ok {
272 is (
273 $arr_rs->search({ arrayfield => { '>' => { -value => [3,7] }} })->count,
274 1,
275 'Greater than search found [5,6]',
276 );
277 } 'searching by arrayref (greater than)';
278
279 # Find using arrays
280 lives_ok {
281 is_deeply (
282 $arr_rs->find({ arrayfield => { -value => [3,4] } })->arrayfield,
283 [3,4],
284 'Array value matches implicit equal'
285 );
286 } 'find by arrayref';
287
288 lives_ok {
289 is_deeply (
290 $arr_rs->find({ arrayfield => { '=' => { -value => [3,4] }} })->arrayfield,
291 [3,4],
292 'Array value matches explicit equal'
293 );
294 } 'find by arrayref (equal)';
295
296 # test inferred condition for creation
4ca1fd6f 297 for my $cond (
41519379 298 { -value => [3,4] },
299 \[ '= ?' => [arrayfield => [3, 4]] ],
300 ) {
5f35ba0f 301 local $TODO = 'No introspection of complex literal conditions :('
302 if is_literal_value $cond;
303
304
41519379 305 my $arr_rs_cond = $arr_rs->search({ arrayfield => $cond });
306
307 my $row = $arr_rs_cond->create({});
a780a0ff 308 is_deeply ($row->arrayfield, [3,4], 'Array value taken from $rs condition');
309 $row->discard_changes;
310 is_deeply ($row->arrayfield, [3,4], 'Array value made it to storage');
311 }
bab40dee 312 }
9ba627e3 313
70a201a5 314########## Case check
315
bab40dee 316 BEGIN {
317 package DBICTest::Schema::Casecheck;
318 push @main::test_classes, __PACKAGE__;
70a201a5 319
bab40dee 320 use strict;
321 use warnings;
322 use base 'DBIx::Class::Core';
70a201a5 323
bab40dee 324 __PACKAGE__->table('dbic_t_schema.casecheck');
325 __PACKAGE__->add_columns(qw/id name NAME uc_name/);
326 __PACKAGE__->column_info_from_storage(1);
327 __PACKAGE__->set_primary_key('id');
328 }
70a201a5 329
bab40dee 330 my $name_info = $schema->source('Casecheck')->column_info( 'name' );
331 is( $name_info->{size}, 1, "Case sensitive matching info for 'name'" );
ae515736 332
bab40dee 333 my $NAME_info = $schema->source('Casecheck')->column_info( 'NAME' );
334 is( $NAME_info->{size}, 2, "Case sensitive matching info for 'NAME'" );
ae515736 335
bab40dee 336 my $uc_name_info = $schema->source('Casecheck')->column_info( 'uc_name' );
337 is( $uc_name_info->{size}, 3, "Case insensitive matching info for 'uc_name'" );
ae515736 338
70a201a5 339
ecccae8a 340## Test ResultSet->update
341my $artist = $schema->resultset('Artist')->first;
342my $cds = $artist->cds_unordered->search({
343 year => { '!=' => 2010 }
344}, { prefetch => 'liner_notes' });
67b79ae1 345lives_ok { $cds->update({ year => '2010' }) } 'Update on prefetched rs';
70a201a5 346
347## Test SELECT ... FOR UPDATE
bab40dee 348 SKIP: {
bb961936 349 skip "Your system does not support unsafe signals (d_sigaction) - unable to run deadlock test", 1
350 unless eval { $Config{d_sigaction} and require POSIX };
bab40dee 351
352 my ($timed_out, $artist2);
353
354 for my $t (
355 {
356 # Make sure that an error was raised, and that the update failed
357 update_lock => 1,
358 test_sub => sub {
359 ok($timed_out, "update from second schema times out");
360 ok($artist2->is_column_changed('name'), "'name' column is still dirty from second schema");
361 },
52c53388 362 },
bab40dee 363 {
364 # Make sure that an error was NOT raised, and that the update succeeded
365 update_lock => 0,
366 test_sub => sub {
367 ok(! $timed_out, "update from second schema DOES NOT timeout");
368 ok(! $artist2->is_column_changed('name'), "'name' column is NOT dirty from second schema");
369 },
52c53388 370 },
bab40dee 371 ) {
372 # create a new schema
373 my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
374 $schema2->source("Artist")->name("dbic_t_schema.artist");
375
376 $schema->txn_do( sub {
d2408067 377 my $rs = $schema->resultset('Artist')->search(
bab40dee 378 {
379 artistid => 1
380 },
381 $t->{update_lock} ? { for => 'update' } : {}
d2408067 382 );
383 ok ($rs->count, 'Count works');
384
385 my $artist = $rs->next;
bab40dee 386 is($artist->artistid, 1, "select returns artistid = 1");
387
388 $timed_out = 0;
bb961936 389
bab40dee 390 eval {
bb961936 391 # can not use %SIG assignment directly - we need sigaction below
392 # localization to a block still works however
393 local $SIG{ALRM};
394
395 POSIX::sigaction( POSIX::SIGALRM() => POSIX::SigAction->new(
396 sub { die "DBICTestTimeout" },
397 ));
398
bab40dee 399 $artist2 = $schema2->resultset('Artist')->find(1);
400 $artist2->name('fooey');
731c2d8b 401
402 # FIXME - this needs to go away in lieu of a non-retrying runner
403 # ( i.e. after solving RT#47005 )
404 local *DBIx::Class::Storage::DBI::_ping = sub { 1 }, DBIx::Class::_ENV_::OLD_MRO && Class::C3->reinitialize()
405 if DBIx::Class::_Util::modver_gt_or_eq( 'DBD::Pg' => '3.5.0' );
406
407 alarm(1);
bab40dee 408 $artist2->update;
bab40dee 409 };
bb961936 410
411 alarm(0);
412
413 if (is_exception($@)) {
414 $timed_out = $@ =~ /DBICTestTimeout/
415 or die $@;
416 }
bab40dee 417 });
418
419 $t->{test_sub}->();
420 }
421 }
95ba7ee4 422
70a201a5 423
372da819 424######## other older Auto-pk tests
70a201a5 425
bab40dee 426 $schema->source("SequenceTest")->name("dbic_t_schema.sequence_test");
427 for (1..5) {
428 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo' });
429 is($st->pkid1, $_, "Auto-PK for sequence without default: First primary key");
430 is($st->pkid2, $_ + 9, "Auto-PK for sequence without default: Second primary key");
431 is($st->nonpkid, $_ + 19, "Auto-PK for sequence without default: Non-primary key");
432 }
433 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo', pkid1 => 55 });
434 is($st->pkid1, 55, "Auto-PK for sequence without default: First primary key set manually");
4d4dc518 435
436
38d5ea9f 437######## test non-serial auto-pk
4d4dc518 438
bbdda281 439 if ($schema->storage->_use_insert_returning) {
bab40dee 440 $schema->source('TimestampPrimaryKey')->name('dbic_t_schema.timestamp_primary_key_test');
441 my $row = $schema->resultset('TimestampPrimaryKey')->create({});
442 ok $row->id;
443 }
d093d3eb 444
be860760 445######## test with_deferred_fk_checks
446
bab40dee 447 $schema->source('CD')->name('dbic_t_schema.cd');
448 $schema->source('Track')->name('dbic_t_schema.track');
449 lives_ok {
450 $schema->storage->with_deferred_fk_checks(sub {
451 $schema->resultset('Track')->create({
452 trackid => 999, cd => 999, position => 1, title => 'deferred FK track'
453 });
454 $schema->resultset('CD')->create({
455 artist => 1, cdid => 999, year => '2003', title => 'deferred FK cd'
456 });
be860760 457 });
bab40dee 458 } 'with_deferred_fk_checks code survived';
be860760 459
bab40dee 460 is eval { $schema->resultset('Track')->find(999)->title }, 'deferred FK track',
8273e845 461 'code in with_deferred_fk_checks worked';
be860760 462
bab40dee 463 throws_ok {
464 $schema->resultset('Track')->create({
465 trackid => 1, cd => 9999, position => 1, title => 'Track1'
466 });
467 } qr/constraint/i, 'with_deferred_fk_checks is off';
468}
be860760 469
2fbf50ff 470done_testing;
609c5f1b 471
5935c90a 472END {
f66c9ba8 473 return unless $schema;
5935c90a 474 drop_test_schema($schema);
65d35121 475 eapk_drop_all($schema);
476 undef $schema;
5935c90a 477};
70a201a5 478
479
480######### SUBROUTINES
481
482sub create_test_schema {
2fbf50ff 483 my $schema = shift;
484 $schema->storage->dbh_do(sub {
485 my (undef,$dbh) = @_;
70a201a5 486
2fbf50ff 487 local $dbh->{Warn} = 0;
70a201a5 488
2fbf50ff 489 my $std_artist_table = <<EOS;
70a201a5 490(
491 artistid serial PRIMARY KEY
492 , name VARCHAR(100)
493 , rank INTEGER NOT NULL DEFAULT '13'
494 , charfield CHAR(10)
495 , arrayfield INTEGER[]
496)
497EOS
498
881def48 499 $dbh->do("CREATE SCHEMA dbic_t_schema");
500 $dbh->do("CREATE TABLE dbic_t_schema.artist $std_artist_table");
4d4dc518 501
502 $dbh->do(<<EOS);
503CREATE TABLE dbic_t_schema.timestamp_primary_key_test (
be860760 504 id timestamp default current_timestamp
4d4dc518 505)
506EOS
2fbf50ff 507 $dbh->do(<<EOS);
be860760 508CREATE TABLE dbic_t_schema.cd (
509 cdid int PRIMARY KEY,
510 artist int,
511 title varchar(255),
512 year varchar(4),
513 genreid int,
514 single_track int
515)
516EOS
517 $dbh->do(<<EOS);
518CREATE TABLE dbic_t_schema.track (
519 trackid int,
520 cd int REFERENCES dbic_t_schema.cd(cdid) DEFERRABLE,
521 position int,
522 title varchar(255),
523 last_updated_on date,
3d98c75e 524 last_updated_at date
be860760 525)
526EOS
527
528 $dbh->do(<<EOS);
881def48 529CREATE TABLE dbic_t_schema.sequence_test (
70a201a5 530 pkid1 integer
531 , pkid2 integer
532 , nonpkid integer
533 , name VARCHAR(100)
534 , CONSTRAINT pk PRIMARY KEY(pkid1, pkid2)
535)
536EOS
2fbf50ff 537 $dbh->do("CREATE SEQUENCE pkid1_seq START 1 MAXVALUE 999999 MINVALUE 0");
538 $dbh->do("CREATE SEQUENCE pkid2_seq START 10 MAXVALUE 999999 MINVALUE 0");
539 $dbh->do("CREATE SEQUENCE nonpkid_seq START 20 MAXVALUE 999999 MINVALUE 0");
540 $dbh->do(<<EOS);
881def48 541CREATE TABLE dbic_t_schema.casecheck (
70a201a5 542 id serial PRIMARY KEY
543 , "name" VARCHAR(1)
544 , "NAME" VARCHAR(2)
545 , "UC_NAME" VARCHAR(3)
70a201a5 546)
547EOS
2fbf50ff 548 $dbh->do(<<EOS);
881def48 549CREATE TABLE dbic_t_schema.array_test (
70a201a5 550 id serial PRIMARY KEY
551 , arrayfield INTEGER[]
552)
553EOS
881def48 554 $dbh->do("CREATE SCHEMA dbic_t_schema_2");
555 $dbh->do("CREATE TABLE dbic_t_schema_2.artist $std_artist_table");
556 $dbh->do("CREATE SCHEMA dbic_t_schema_3");
557 $dbh->do("CREATE TABLE dbic_t_schema_3.artist $std_artist_table");
558 $dbh->do('set search_path=dbic_t_schema,public');
559 $dbh->do("CREATE SCHEMA dbic_t_schema_4");
560 $dbh->do("CREATE SCHEMA dbic_t_schema_5");
2fbf50ff 561 $dbh->do(<<EOS);
881def48 562 CREATE TABLE dbic_t_schema_4.artist
70a201a5 563 (
564 artistid integer not null default nextval('artist_artistid_seq'::regclass) PRIMARY KEY
565 , name VARCHAR(100)
566 , rank INTEGER NOT NULL DEFAULT '13'
567 , charfield CHAR(10)
568 , arrayfield INTEGER[]
569 );
570EOS
881def48 571 $dbh->do('set search_path=public,dbic_t_schema,dbic_t_schema_3');
2fbf50ff 572 $dbh->do('create sequence public.artist_artistid_seq'); #< in the public schema
573 $dbh->do(<<EOS);
881def48 574 CREATE TABLE dbic_t_schema_5.artist
70a201a5 575 (
576 artistid integer not null default nextval('public.artist_artistid_seq'::regclass) PRIMARY KEY
577 , name VARCHAR(100)
578 , rank INTEGER NOT NULL DEFAULT '13'
579 , charfield CHAR(10)
580 , arrayfield INTEGER[]
581 );
582EOS
881def48 583 $dbh->do('set search_path=dbic_t_schema,public');
2fbf50ff 584 });
70a201a5 585}
586
587
588
589sub drop_test_schema {
52c53388 590 my ( $schema, $warn_exceptions ) = @_;
2fbf50ff 591
592 $schema->storage->dbh_do(sub {
593 my (undef,$dbh) = @_;
594
595 local $dbh->{Warn} = 0;
596
597 for my $stat (
881def48 598 'DROP SCHEMA dbic_t_schema_5 CASCADE',
e78c769d 599 'DROP SEQUENCE public.artist_artistid_seq CASCADE',
881def48 600 'DROP SCHEMA dbic_t_schema_4 CASCADE',
601 'DROP SCHEMA dbic_t_schema CASCADE',
e78c769d 602 'DROP SEQUENCE pkid1_seq CASCADE',
603 'DROP SEQUENCE pkid2_seq CASCADE',
604 'DROP SEQUENCE nonpkid_seq CASCADE',
881def48 605 'DROP SCHEMA dbic_t_schema_2 CASCADE',
606 'DROP SCHEMA dbic_t_schema_3 CASCADE',
2fbf50ff 607 ) {
608 eval { $dbh->do ($stat) };
52c53388 609 diag $@ if $@ && $warn_exceptions;
2fbf50ff 610 }
611 });
3ff5b740 612}
7603d2a5 613
372da819 614
ee9f372c 615### auto-pk / last_insert_id / sequence discovery
616sub run_apk_tests {
617 my $schema = shift;
618
619 # This is in Core now, but it's here just to test that it doesn't break
620 $schema->class('Artist')->load_components('PK::Auto');
621 cmp_ok( $schema->resultset('Artist')->count, '==', 0, 'this should start with an empty artist table');
622
623 # test that auto-pk also works with the defined search path by
624 # un-schema-qualifying the table name
625 apk_t_set($schema,'artist');
626
627 my $unq_new;
628 lives_ok {
629 $unq_new = $schema->resultset('Artist')->create({ name => 'baz' });
630 } 'insert into unqualified, shadowed table succeeds';
631
632 is($unq_new && $unq_new->artistid, 1, "and got correct artistid");
633
634 my @test_schemas = ( [qw| dbic_t_schema_2 1 |],
635 [qw| dbic_t_schema_3 1 |],
636 [qw| dbic_t_schema_4 2 |],
637 [qw| dbic_t_schema_5 1 |],
638 );
639 foreach my $t ( @test_schemas ) {
640 my ($sch_name, $start_num) = @$t;
641 #test with dbic_t_schema_2
642 apk_t_set($schema,"$sch_name.artist");
643 my $another_new;
644 lives_ok {
645 $another_new = $schema->resultset('Artist')->create({ name => 'Tollbooth Willy'});
646 is( $another_new->artistid,$start_num, "got correct artistid for $sch_name")
647 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
648 } "$sch_name liid 1 did not die"
649 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
650 lives_ok {
651 $another_new = $schema->resultset('Artist')->create({ name => 'Adam Sandler'});
652 is( $another_new->artistid,$start_num+1, "got correct artistid for $sch_name")
653 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
654 } "$sch_name liid 2 did not die"
655 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
656
657 }
658
659 lives_ok {
660 apk_t_set($schema,'dbic_t_schema.artist');
661 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
662 is($new->artistid, 4, "Auto-PK worked");
663 $new = $schema->resultset('Artist')->create({ name => 'bar' });
664 is($new->artistid, 5, "Auto-PK worked");
665 } 'old auto-pk tests did not die either';
666}
667
ee9f372c 668# sets the artist table name and clears sequence name cache
669sub apk_t_set {
670 my ( $s, $n ) = @_;
671 $s->source("Artist")->name($n);
672 $s->source('Artist')->column_info('artistid')->{sequence} = undef; #< clear sequence name cache
673}
674
372da819 675
5935c90a 676######## EXTENDED AUTO-PK TESTS
677
f295a73c 678my @eapk_id_columns;
5935c90a 679BEGIN {
680 package DBICTest::Schema::ExtAPK;
681 push @main::test_classes, __PACKAGE__;
682
683 use strict;
684 use warnings;
d88ecca6 685 use base 'DBIx::Class::Core';
5935c90a 686
f295a73c 687 __PACKAGE__->table('apk');
5935c90a 688
f295a73c 689 @eapk_id_columns = qw( id1 id2 id3 id4 );
5935c90a 690 __PACKAGE__->add_columns(
691 map { $_ => { data_type => 'integer', is_auto_increment => 1 } }
f295a73c 692 @eapk_id_columns
5935c90a 693 );
694
f295a73c 695 __PACKAGE__->set_primary_key('id2'); #< note the SECOND column is
696 #the primary key
5935c90a 697}
698
f295a73c 699my @eapk_schemas;
700BEGIN{ @eapk_schemas = map "dbic_apk_$_", 0..5 }
ae645c61 701my %seqs; #< hash of schema.table.col => currval of its (DBIC) primary key sequence
5935c90a 702
372da819 703sub run_extended_apk_tests {
11da4e66 704 my $schema = shift;
372da819 705
f295a73c 706 #save the search path and reset it at the end
49aa7e87 707 my $search_path_save = eapk_get_search_path($schema);
f295a73c 708
52c53388 709 eapk_drop_all($schema);
bab40dee 710 %seqs = ();
5935c90a 711
f295a73c 712 # make the test schemas and sequences
11da4e66 713 $schema->storage->dbh_do(sub {
f295a73c 714 my ( undef, $dbh ) = @_;
715
716 $dbh->do("CREATE SCHEMA $_")
717 for @eapk_schemas;
718
719 $dbh->do("CREATE SEQUENCE $eapk_schemas[5].fooseq");
ae645c61 720 $dbh->do("SELECT setval('$eapk_schemas[5].fooseq',400)");
721 $seqs{"$eapk_schemas[1].apk.id2"} = 400;
722
fb7be534 723 $dbh->do("CREATE SEQUENCE $eapk_schemas[4].fooseq");
ae645c61 724 $dbh->do("SELECT setval('$eapk_schemas[4].fooseq',300)");
725 $seqs{"$eapk_schemas[3].apk.id2"} = 300;
726
93a6e8fa 727 $dbh->do("CREATE SEQUENCE $eapk_schemas[3].fooseq");
ae645c61 728 $dbh->do("SELECT setval('$eapk_schemas[3].fooseq',200)");
729 $seqs{"$eapk_schemas[4].apk.id2"} = 200;
f295a73c 730
78c9596c 731 $dbh->do("SET search_path = ".join ',', reverse @eapk_schemas );
11da4e66 732 });
372da819 733
f295a73c 734 # clear our search_path cache
735 $schema->storage->{_pg_search_path} = undef;
736
737 eapk_create( $schema,
738 with_search_path => [0,1],
739 );
740 eapk_create( $schema,
741 with_search_path => [1,0,'public'],
742 nextval => "$eapk_schemas[5].fooseq",
743 );
744 eapk_create( $schema,
745 with_search_path => ['public',0,1],
746 qualify_table => 2,
747 );
fb7be534 748 eapk_create( $schema,
749 with_search_path => [3,1,0,'public'],
750 nextval => "$eapk_schemas[4].fooseq",
751 );
93a6e8fa 752 eapk_create( $schema,
753 with_search_path => [3,1,0,'public'],
754 nextval => "$eapk_schemas[3].fooseq",
755 qualify_table => 4,
756 );
372da819 757
78c9596c 758 eapk_poke( $schema );
f295a73c 759 eapk_poke( $schema, 0 );
eb80e8d5 760 eapk_poke( $schema, 2 );
93a6e8fa 761 eapk_poke( $schema, 4 );
f295a73c 762 eapk_poke( $schema, 1 );
eb80e8d5 763 eapk_poke( $schema, 0 );
f295a73c 764 eapk_poke( $schema, 1 );
78c9596c 765 eapk_poke( $schema );
93a6e8fa 766 eapk_poke( $schema, 4 );
fb7be534 767 eapk_poke( $schema, 3 );
eb80e8d5 768 eapk_poke( $schema, 1 );
769 eapk_poke( $schema, 2 );
770 eapk_poke( $schema, 0 );
f295a73c 771
772 # set our search path back
773 eapk_set_search_path( $schema, @$search_path_save );
774}
775
776# do a DBIC create on the apk table in the given schema number (which is an
777# index of @eapk_schemas)
778
f295a73c 779sub eapk_poke {
780 my ($s, $schema_num) = @_;
372da819 781
f295a73c 782 my $schema_name = defined $schema_num
783 ? $eapk_schemas[$schema_num]
784 : '';
785
78c9596c 786 my $schema_name_actual = $schema_name || eapk_find_visible_schema($s);
f295a73c 787
8ce84173 788 $s->source('ExtAPK')->name($schema_name ? $schema_name.'.apk' : 'apk');
f295a73c 789 #< clear sequence name cache
790 $s->source('ExtAPK')->column_info($_)->{sequence} = undef
791 for @eapk_id_columns;
792
793 no warnings 'uninitialized';
794 lives_ok {
795 my $new;
796 for my $inc (1,2,3) {
ae645c61 797 $new = $schema->resultset('ExtAPK')->create({ id1 => 1});
691f3663 798 my $proper_seqval = ++$seqs{"$schema_name_actual.apk.id2"};
799 is( $new->id2, $proper_seqval, "$schema_name_actual.apk.id2 correct inc $inc" )
800 or eapk_seq_diag($s,$schema_name);
801 $new->discard_changes;
ae645c61 802 is( $new->id1, 1 );
803 for my $id ('id3','id4') {
f295a73c 804 my $proper_seqval = ++$seqs{"$schema_name_actual.apk.$id"};
93a6e8fa 805 is( $new->$id, $proper_seqval, "$schema_name_actual.apk.$id correct inc $inc" )
fb7be534 806 or eapk_seq_diag($s,$schema_name);
f295a73c 807 }
808 }
809 } "create in schema '$schema_name' lives"
fb7be534 810 or eapk_seq_diag($s,$schema_name);
372da819 811}
812
f295a73c 813# print diagnostic info on which sequences were found in the ExtAPK
814# class
815sub eapk_seq_diag {
816 my $s = shift;
78c9596c 817 my $schema = shift || eapk_find_visible_schema($s);
f295a73c 818
819 diag "$schema.apk sequences: ",
820 join(', ',
821 map "$_:".($s->source('ExtAPK')->column_info($_)->{sequence} || '<none>'),
822 @eapk_id_columns
823 );
824}
825
49aa7e87 826# get the postgres search path as an arrayref
827sub eapk_get_search_path {
828 my ( $s ) = @_;
829 # cache the search path as ['schema','schema',...] in the storage
830 # obj
831
832 return $s->storage->dbh_do(sub {
833 my (undef, $dbh) = @_;
834 my @search_path;
835 my ($sp_string) = $dbh->selectrow_array('SHOW search_path');
836 while ( $sp_string =~ s/("[^"]+"|[^,]+),?// ) {
837 unless( defined $1 and length $1 ) {
838 die "search path sanity check failed: '$1'";
839 }
840 push @search_path, $1;
841 }
842 \@search_path
843 });
844}
f295a73c 845sub eapk_set_search_path {
846 my ($s,@sp) = @_;
847 my $sp = join ',',@sp;
848 $s->storage->dbh_do( sub { $_[1]->do("SET search_path = $sp") } );
849}
850
851# create the apk table in the given schema, can set whether the table name is qualified, what the nextval is for the second ID
5935c90a 852sub eapk_create {
853 my ($schema, %a) = @_;
854
372da819 855 $schema->storage->dbh_do(sub {
5935c90a 856 my (undef,$dbh) = @_;
372da819 857
5935c90a 858 my $searchpath_save;
859 if ( $a{with_search_path} ) {
860 ($searchpath_save) = $dbh->selectrow_array('SHOW search_path');
861
f295a73c 862 my $search_path = join ',',map {/\D/ ? $_ : $eapk_schemas[$_]} @{$a{with_search_path}};
5935c90a 863
864 $dbh->do("SET search_path = $search_path");
865 }
866
f295a73c 867 my $table_name = $a{qualify_table}
868 ? ($eapk_schemas[$a{qualify_table}] || die). ".apk"
869 : 'apk';
e25fe566 870 local $_[1]->{Warn} = 0;
f295a73c 871
872 my $id_def = $a{nextval}
ae645c61 873 ? "integer not null default nextval('$a{nextval}'::regclass)"
874 : 'serial';
5935c90a 875 $dbh->do(<<EOS);
f295a73c 876CREATE TABLE $table_name (
877 id1 serial
878 , id2 $id_def
ae645c61 879 , id3 serial primary key
5935c90a 880 , id4 serial
881)
882EOS
372da819 883
5935c90a 884 if( $searchpath_save ) {
885 $dbh->do("SET search_path = $searchpath_save");
886 }
372da819 887 });
888}
889
5935c90a 890sub eapk_drop_all {
52c53388 891 my ( $schema, $warn_exceptions ) = @_;
372da819 892
893 $schema->storage->dbh_do(sub {
894 my (undef,$dbh) = @_;
895
896 local $dbh->{Warn} = 0;
5935c90a 897
898 # drop the test schemas
f295a73c 899 for (@eapk_schemas ) {
11da4e66 900 eval{ $dbh->do("DROP SCHEMA $_ CASCADE") };
52c53388 901 diag $@ if $@ && $warn_exceptions;
11da4e66 902 }
903
372da819 904
372da819 905 });
906}
78c9596c 907
908sub eapk_find_visible_schema {
909 my ($s) = @_;
910
911 my ($schema) =
912 $s->storage->dbh_do(sub {
913 $_[1]->selectrow_array(<<EOS);
914SELECT n.nspname
915FROM pg_catalog.pg_namespace n
916JOIN pg_catalog.pg_class c ON c.relnamespace = n.oid
917WHERE c.relname = 'apk'
918 AND pg_catalog.pg_table_is_visible(c.oid)
919EOS
920 });
921 return $schema;
922}