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