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