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