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