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