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