Fix RT#58554 (make sure FOR X is always the last part of a select)
[dbsrgits/DBIx-Class.git] / t / 72pg.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Test::Exception;
6 use Sub::Name;
7 use lib qw(t/lib);
8 use DBICTest;
9
10
11 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
12
13 plan skip_all => <<EOM unless $dsn && $user;
14 Set \$ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test
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')
20 EOM
21
22 ### load any test classes that are defined further down in the file via BEGIN blocks
23
24 our @test_classes; #< array that will be pushed into by test classes defined in this file
25 DBICTest::Schema->load_classes( map {s/.+:://;$_} @test_classes ) if @test_classes;
26
27 ###  pre-connect tests (keep each test separate as to make sure rebless() runs)
28   {
29     my $s = DBICTest::Schema->connect($dsn, $user, $pass);
30
31     ok (!$s->storage->_dbh, 'definitely not connected');
32
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 $@;
37
38         my $store = ref $s->storage;
39         is($store, 'DBIx::Class::Storage::DBI', 'Started with generic storage');
40
41         my $parser = $s->storage->datetime_parser;
42         is( $parser, 'DateTime::Format::Pg', 'datetime_parser is as expected');
43     }
44
45     ok (!$s->storage->_dbh, 'still not connected');
46   }
47
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   }
55
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   # 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';
85 }
86
87 # check if we indeed do support stuff
88 my $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 };
98 is (
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
104 my $schema;
105 for 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
130 ### connect, create postgres-specific test schema
131
132   $schema = DBICTest::Schema->connect($dsn, $user, $pass);
133   $schema->storage->ensure_connected;
134
135   drop_test_schema($schema);
136   create_test_schema($schema);
137
138 ### begin main tests
139
140 # run a BIG bunch of tests for last-insert-id / Auto-PK / sequence
141 # discovery
142   run_apk_tests($schema); #< older set of auto-pk tests
143   run_extended_apk_tests($schema); #< new extended set of auto-pk tests
144
145 ### type_info tests
146
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,
164
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   };
179
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');
187
188
189
190
191 ####### Array tests
192
193   BEGIN {
194     package DBICTest::Schema::ArrayTest;
195     push @main::test_classes, __PACKAGE__;
196
197     use strict;
198     use warnings;
199     use base 'DBIx::Class::Core';
200
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');
205
206   }
207   SKIP: {
208     skip "Need DBD::Pg 2.9.2 or newer for array tests", 4 if $DBD::Pg::VERSION < 2.009002;
209
210     lives_ok {
211       $schema->resultset('ArrayTest')->create({
212         arrayfield => [1, 2],
213       });
214     } 'inserting arrayref as pg array data';
215
216     lives_ok {
217       $schema->resultset('ArrayTest')->update({
218         arrayfield => [3, 4],
219       });
220     } 'updating arrayref as pg array data';
221
222     $schema->resultset('ArrayTest')->create({
223       arrayfield => [5, 6],
224     });
225
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   }
234
235
236
237 ########## Case check
238
239   BEGIN {
240     package DBICTest::Schema::Casecheck;
241     push @main::test_classes, __PACKAGE__;
242
243     use strict;
244     use warnings;
245     use base 'DBIx::Class::Core';
246
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   }
252
253   my $name_info = $schema->source('Casecheck')->column_info( 'name' );
254   is( $name_info->{size}, 1, "Case sensitive matching info for 'name'" );
255
256   my $NAME_info = $schema->source('Casecheck')->column_info( 'NAME' );
257   is( $NAME_info->{size}, 2, "Case sensitive matching info for 'NAME'" );
258
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'" );
261
262
263 ## Test ResultSet->update
264 my $artist = $schema->resultset('Artist')->first;
265 my $cds = $artist->cds_unordered->search({
266     year => { '!=' => 2010 }
267 }, { prefetch => 'liner_notes' });
268 TODO: {
269     todo_skip 'update resultset with a prefetch over a might_have rel', 1;
270     $cds->update({ year => '2010' });
271 }
272
273
274 ## Test SELECT ... FOR UPDATE
275
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           },
294         },
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           },
302         },
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 {
309           my $rs = $schema->resultset('Artist')->search(
310               {
311                   artistid => 1
312               },
313               $t->{update_lock} ? { for => 'update' } : {}
314           );
315           ok ($rs->count, 'Count works');
316
317           my $artist = $rs->next;
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   }
335
336
337 ######## other older Auto-pk tests
338
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");
348
349
350 ######## test non-serial auto-pk
351
352   if ($schema->storage->_use_insert_returning) {
353     $schema->source('TimestampPrimaryKey')->name('dbic_t_schema.timestamp_primary_key_test');
354     my $row = $schema->resultset('TimestampPrimaryKey')->create({});
355     ok $row->id;
356   }
357
358 ######## test with_deferred_fk_checks
359
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       });
370     });
371   } 'with_deferred_fk_checks code survived';
372
373   is eval { $schema->resultset('Track')->find(999)->title }, 'deferred FK track',
374      'code in with_deferred_fk_checks worked'; 
375
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 }
382
383 done_testing;
384
385 END {
386     return unless $schema;
387     drop_test_schema($schema);
388     eapk_drop_all( $schema)
389 };
390
391
392 ######### SUBROUTINES
393
394 sub create_test_schema {
395     my $schema = shift;
396     $schema->storage->dbh_do(sub {
397       my (undef,$dbh) = @_;
398
399       local $dbh->{Warn} = 0;
400
401       my $std_artist_table = <<EOS;
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 )
409 EOS
410
411       $dbh->do("CREATE SCHEMA dbic_t_schema");
412       $dbh->do("CREATE TABLE dbic_t_schema.artist $std_artist_table");
413
414       $dbh->do(<<EOS);
415 CREATE TABLE dbic_t_schema.timestamp_primary_key_test (
416   id timestamp default current_timestamp
417 )
418 EOS
419       $dbh->do(<<EOS);
420 CREATE 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 )
428 EOS
429       $dbh->do(<<EOS);
430 CREATE 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 )
439 EOS
440
441       $dbh->do(<<EOS);
442 CREATE TABLE dbic_t_schema.sequence_test (
443     pkid1 integer
444     , pkid2 integer
445     , nonpkid integer
446     , name VARCHAR(100)
447     , CONSTRAINT pk PRIMARY KEY(pkid1, pkid2)
448 )
449 EOS
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);
454 CREATE TABLE dbic_t_schema.casecheck (
455     id serial PRIMARY KEY
456     , "name" VARCHAR(1)
457     , "NAME" VARCHAR(2)
458     , "UC_NAME" VARCHAR(3)
459 )
460 EOS
461       $dbh->do(<<EOS);
462 CREATE TABLE dbic_t_schema.array_test (
463     id serial PRIMARY KEY
464     , arrayfield INTEGER[]
465 )
466 EOS
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");
474       $dbh->do(<<EOS);
475  CREATE TABLE dbic_t_schema_4.artist
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  );
483 EOS
484       $dbh->do('set search_path=public,dbic_t_schema,dbic_t_schema_3');
485       $dbh->do('create sequence public.artist_artistid_seq'); #< in the public schema
486       $dbh->do(<<EOS);
487  CREATE TABLE dbic_t_schema_5.artist
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  );
495 EOS
496       $dbh->do('set search_path=dbic_t_schema,public');
497   });
498 }
499
500
501
502 sub drop_test_schema {
503     my ( $schema, $warn_exceptions ) = @_;
504
505     $schema->storage->dbh_do(sub {
506         my (undef,$dbh) = @_;
507
508         local $dbh->{Warn} = 0;
509
510         for my $stat (
511                       'DROP SCHEMA dbic_t_schema_5 CASCADE',
512                       'DROP SEQUENCE public.artist_artistid_seq',
513                       'DROP SCHEMA dbic_t_schema_4 CASCADE',
514                       'DROP SCHEMA dbic_t_schema CASCADE',
515                       'DROP SEQUENCE pkid1_seq',
516                       'DROP SEQUENCE pkid2_seq',
517                       'DROP SEQUENCE nonpkid_seq',
518                       'DROP SCHEMA dbic_t_schema_2 CASCADE',
519                       'DROP SCHEMA dbic_t_schema_3 CASCADE',
520                      ) {
521             eval { $dbh->do ($stat) };
522             diag $@ if $@ && $warn_exceptions;
523         }
524     });
525 }
526
527
528 ###  auto-pk / last_insert_id / sequence discovery
529 sub 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
581 # sets the artist table name and clears sequence name cache
582 sub 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
588
589 ######## EXTENDED AUTO-PK TESTS
590
591 my @eapk_id_columns;
592 BEGIN {
593   package DBICTest::Schema::ExtAPK;
594   push @main::test_classes, __PACKAGE__;
595
596   use strict;
597   use warnings;
598   use base 'DBIx::Class::Core';
599
600   __PACKAGE__->table('apk');
601
602   @eapk_id_columns = qw( id1 id2 id3 id4 );
603   __PACKAGE__->add_columns(
604     map { $_ => { data_type => 'integer', is_auto_increment => 1 } }
605        @eapk_id_columns
606   );
607
608   __PACKAGE__->set_primary_key('id2'); #< note the SECOND column is
609                                        #the primary key
610 }
611
612 my @eapk_schemas;
613 BEGIN{ @eapk_schemas = map "dbic_apk_$_", 0..5 }
614 my %seqs; #< hash of schema.table.col => currval of its (DBIC) primary key sequence
615
616 sub run_extended_apk_tests {
617   my $schema = shift;
618
619   #save the search path and reset it at the end
620   my $search_path_save = eapk_get_search_path($schema);
621
622   eapk_drop_all($schema);
623   %seqs = ();
624
625   # make the test schemas and sequences
626   $schema->storage->dbh_do(sub {
627     my ( undef, $dbh ) = @_;
628
629     $dbh->do("CREATE SCHEMA $_")
630         for @eapk_schemas;
631
632     $dbh->do("CREATE SEQUENCE $eapk_schemas[5].fooseq");
633     $dbh->do("SELECT setval('$eapk_schemas[5].fooseq',400)");
634     $seqs{"$eapk_schemas[1].apk.id2"} = 400;
635
636     $dbh->do("CREATE SEQUENCE $eapk_schemas[4].fooseq");
637     $dbh->do("SELECT setval('$eapk_schemas[4].fooseq',300)");
638     $seqs{"$eapk_schemas[3].apk.id2"} = 300;
639
640     $dbh->do("CREATE SEQUENCE $eapk_schemas[3].fooseq");
641     $dbh->do("SELECT setval('$eapk_schemas[3].fooseq',200)");
642     $seqs{"$eapk_schemas[4].apk.id2"} = 200;
643
644     $dbh->do("SET search_path = ".join ',', reverse @eapk_schemas );
645   });
646
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              );
661   eapk_create( $schema,
662                with_search_path => [3,1,0,'public'],
663                nextval => "$eapk_schemas[4].fooseq",
664              );
665   eapk_create( $schema,
666                with_search_path => [3,1,0,'public'],
667                nextval => "$eapk_schemas[3].fooseq",
668                qualify_table => 4,
669              );
670
671   eapk_poke( $schema );
672   eapk_poke( $schema, 0 );
673   eapk_poke( $schema, 2 );
674   eapk_poke( $schema, 4 );
675   eapk_poke( $schema, 1 );
676   eapk_poke( $schema, 0 );
677   eapk_poke( $schema, 1 );
678   eapk_poke( $schema );
679   eapk_poke( $schema, 4 );
680   eapk_poke( $schema, 3 );
681   eapk_poke( $schema, 1 );
682   eapk_poke( $schema, 2 );
683   eapk_poke( $schema, 0 );
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
692 sub eapk_poke {
693   my ($s, $schema_num) = @_;
694
695   my $schema_name = defined $schema_num
696       ? $eapk_schemas[$schema_num]
697       : '';
698
699   my $schema_name_actual = $schema_name || eapk_find_visible_schema($s);
700
701   $s->source('ExtAPK')->name($schema_name ? $schema_name.'.apk' : 'apk');
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) {
710       $new = $schema->resultset('ExtAPK')->create({ id1 => 1});
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;
715       is( $new->id1, 1 );
716       for my $id ('id3','id4') {
717         my $proper_seqval = ++$seqs{"$schema_name_actual.apk.$id"};
718         is( $new->$id, $proper_seqval, "$schema_name_actual.apk.$id correct inc $inc" )
719             or eapk_seq_diag($s,$schema_name);
720       }
721     }
722   } "create in schema '$schema_name' lives"
723       or eapk_seq_diag($s,$schema_name);
724 }
725
726 # print diagnostic info on which sequences were found in the ExtAPK
727 # class
728 sub eapk_seq_diag {
729     my $s = shift;
730     my $schema = shift || eapk_find_visible_schema($s);
731
732     diag "$schema.apk sequences: ",
733         join(', ',
734              map "$_:".($s->source('ExtAPK')->column_info($_)->{sequence} || '<none>'),
735              @eapk_id_columns
736             );
737 }
738
739 # get the postgres search path as an arrayref
740 sub 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 }
758 sub 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
765 sub eapk_create {
766     my ($schema, %a) = @_;
767
768     $schema->storage->dbh_do(sub {
769         my (undef,$dbh) = @_;
770
771         my $searchpath_save;
772         if ( $a{with_search_path} ) {
773             ($searchpath_save) = $dbh->selectrow_array('SHOW search_path');
774
775             my $search_path = join ',',map {/\D/ ? $_ : $eapk_schemas[$_]} @{$a{with_search_path}};
776
777             $dbh->do("SET search_path = $search_path");
778         }
779
780         my $table_name = $a{qualify_table}
781             ? ($eapk_schemas[$a{qualify_table}] || die). ".apk"
782             : 'apk';
783         local $_[1]->{Warn} = 0;
784
785         my $id_def = $a{nextval}
786             ? "integer not null default nextval('$a{nextval}'::regclass)"
787             : 'serial';
788         $dbh->do(<<EOS);
789 CREATE TABLE $table_name (
790   id1 serial
791   , id2 $id_def
792   , id3 serial primary key
793   , id4 serial
794 )
795 EOS
796
797         if( $searchpath_save ) {
798             $dbh->do("SET search_path = $searchpath_save");
799         }
800     });
801 }
802
803 sub eapk_drop_all {
804     my ( $schema, $warn_exceptions ) = @_;
805
806     $schema->storage->dbh_do(sub {
807         my (undef,$dbh) = @_;
808
809         local $dbh->{Warn} = 0;
810
811         # drop the test schemas
812         for (@eapk_schemas ) {
813             eval{ $dbh->do("DROP SCHEMA $_ CASCADE") };
814             diag $@ if $@ && $warn_exceptions;
815         }
816
817
818     });
819 }
820
821 sub eapk_find_visible_schema {
822     my ($s) = @_;
823
824     my ($schema) =
825         $s->storage->dbh_do(sub {
826             $_[1]->selectrow_array(<<EOS);
827 SELECT n.nspname
828 FROM pg_catalog.pg_namespace n
829 JOIN pg_catalog.pg_class c ON c.relnamespace = n.oid
830 WHERE c.relname = 'apk'
831   AND pg_catalog.pg_table_is_visible(c.oid)
832 EOS
833         });
834     return $schema;
835 }