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