10 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
12 plan skip_all => <<EOM unless $dsn && $user;
13 Set \$ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test
14 ( NOTE: This test drops and creates tables called 'artist', 'casecheck',
15 'array_test' and 'sequence_test' as well as following sequences:
16 'pkid1_seq', 'pkid2_seq' and 'nonpkid_seq''. as well as following
17 schemas: 'dbic_t_schema', 'dbic_t_schema_2', 'dbic_t_schema_3',
18 'dbic_t_schema_4', and 'dbic_t_schema_5'
22 ### load any test classes that are defined further down in the file
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;
30 my $s = DBICTest::Schema->connect($dsn, $user, $pass);
32 ok (!$s->storage->_dbh, 'definitely not connected');
34 # Check that datetime_parser returns correctly before we explicitly connect.
36 eval { require DateTime::Format::Pg };
37 skip "DateTime::Format::Pg required", 2 if $@;
39 my $store = ref $s->storage;
40 is($store, 'DBIx::Class::Storage::DBI', 'Started with generic storage');
42 my $parser = $s->storage->datetime_parser;
43 is( $parser, 'DateTime::Format::Pg', 'datetime_parser is as expected');
47 # make sure sqlt_type overrides work (::Storage::DBI::Pg does this)
48 is ($s->storage->sqlt_type, 'PostgreSQL', 'sqlt_type correct pre-connection');
51 ### connect, create postgres-specific test schema
53 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
54 my $dbh = $schema->storage->dbh;
56 drop_test_schema($schema, 'no warn');
57 create_test_schema($schema);
61 run_apk_tests($schema);
66 my $test_type_info = {
68 'data_type' => 'integer',
73 'data_type' => 'character varying',
76 'default_value' => undef,
79 'data_type' => 'integer',
82 'default_value' => 13,
86 'data_type' => 'character',
89 'default_value' => undef,
92 'data_type' => 'integer[]',
95 'default_value' => undef,
99 my $type_info = $schema->storage->columns_info_for('dbic_t_schema.artist');
100 my $artistid_defval = delete $type_info->{artistid}->{default_value};
101 like($artistid_defval,
102 qr/^nextval\('([^\.]*\.){0,1}artist_artistid_seq'::(?:text|regclass)\)/,
103 'columns_info_for - sequence matches Pg get_autoinc_seq expectations');
104 is_deeply($type_info, $test_type_info,
105 'columns_info_for - column data types');
113 package DBICTest::Schema::ArrayTest;
114 push @main::test_classes, __PACKAGE__;
118 use base 'DBIx::Class';
120 __PACKAGE__->load_components(qw/Core/);
121 __PACKAGE__->table('dbic_t_schema.array_test');
122 __PACKAGE__->add_columns(qw/id arrayfield/);
123 __PACKAGE__->column_info_from_storage(1);
124 __PACKAGE__->set_primary_key('id');
128 skip "Need DBD::Pg 2.9.2 or newer for array tests", 4 if $DBD::Pg::VERSION < 2.009002;
131 $schema->resultset('ArrayTest')->create({
132 arrayfield => [1, 2],
134 } 'inserting arrayref as pg array data';
137 $schema->resultset('ArrayTest')->update({
138 arrayfield => [3, 4],
140 } 'updating arrayref as pg array data';
142 $schema->resultset('ArrayTest')->create({
143 arrayfield => [5, 6],
148 $count = $schema->resultset('ArrayTest')->search({
149 arrayfield => \[ '= ?' => [arrayfield => [3, 4]] ], #Todo anything less ugly than this?
151 } 'comparing arrayref to pg array data does not blow up';
152 is($count, 1, 'comparing arrayref to pg array data gives correct result');
157 ########## Case check
160 package DBICTest::Schema::Casecheck;
161 push @main::test_classes, __PACKAGE__;
165 use base 'DBIx::Class';
167 __PACKAGE__->load_components(qw/Core/);
168 __PACKAGE__->table('dbic_t_schema.casecheck');
169 __PACKAGE__->add_columns(qw/id name NAME uc_name storecolumn/);
170 __PACKAGE__->column_info_from_storage(1);
171 __PACKAGE__->set_primary_key('id');
174 my ($self, $name, $value) = @_;
175 $value = '#'.$value if($name eq "storecolumn");
176 $self->maybe::next::method($name, $value);
180 # store_column is called once for create() for non sequence columns
181 ok(my $storecolumn = $schema->resultset('Casecheck')->create({'storecolumn' => 'a'}));
182 is($storecolumn->storecolumn, '#a'); # was '##a'
184 my $name_info = $schema->source('Casecheck')->column_info( 'name' );
185 is( $name_info->{size}, 1, "Case sensitive matching info for 'name'" );
187 my $NAME_info = $schema->source('Casecheck')->column_info( 'NAME' );
188 is( $NAME_info->{size}, 2, "Case sensitive matching info for 'NAME'" );
190 my $uc_name_info = $schema->source('Casecheck')->column_info( 'uc_name' );
191 is( $uc_name_info->{size}, 3, "Case insensitive matching info for 'uc_name'" );
196 ## Test SELECT ... FOR UPDATE
198 my $HaveSysSigAction = eval "require Sys::SigAction" && !$@;
199 if( $HaveSysSigAction ) {
200 Sys::SigAction->import( 'set_sig_handler' );
203 skip "Sys::SigAction is not available", 3 unless $HaveSysSigAction;
204 # create a new schema
205 my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
206 $schema2->source("Artist")->name("dbic_t_schema.artist");
208 $schema->txn_do( sub {
209 my $artist = $schema->resultset('Artist')->search(
217 is($artist->artistid, 1, "select for update returns artistid = 1");
219 my $artist_from_schema2;
222 my $h = set_sig_handler( 'ALRM', sub { die "DBICTestTimeout" } );
224 $artist_from_schema2 = $schema2->resultset('Artist')->find(1);
225 $artist_from_schema2->name('fooey');
226 $artist_from_schema2->update;
230 $error_ok = $e =~ /DBICTestTimeout/;
233 # Make sure that an error was raised, and that the update failed
234 ok($error_ok, "update from second schema times out");
235 ok($artist_from_schema2->is_column_changed('name'), "'name' column is still dirty from second schema");
240 skip "Sys::SigAction is not available", 3 unless $HaveSysSigAction;
241 # create a new schema
242 my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
243 $schema2->source("Artist")->name("dbic_t_schema.artist");
245 $schema->txn_do( sub {
246 my $artist = $schema->resultset('Artist')->search(
251 is($artist->artistid, 1, "select for update returns artistid = 1");
253 my $artist_from_schema2;
256 my $h = set_sig_handler( 'ALRM', sub { die "DBICTestTimeout" } );
258 $artist_from_schema2 = $schema2->resultset('Artist')->find(1);
259 $artist_from_schema2->name('fooey');
260 $artist_from_schema2->update;
264 $error_ok = $e =~ /DBICTestTimeout/;
267 # Make sure that an error was NOT raised, and that the update succeeded
268 ok(! $error_ok, "update from second schema DOES NOT timeout");
269 ok(! $artist_from_schema2->is_column_changed('name'), "'name' column is NOT dirty from second schema");
274 ######## other Auto-pk tests
276 $schema->source("SequenceTest")->name("dbic_t_schema.sequence_test");
278 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo' });
279 is($st->pkid1, $_, "Oracle Auto-PK without trigger: First primary key");
280 is($st->pkid2, $_ + 9, "Oracle Auto-PK without trigger: Second primary key");
281 is($st->nonpkid, $_ + 19, "Oracle Auto-PK without trigger: Non-primary key");
283 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo', pkid1 => 55 });
284 is($st->pkid1, 55, "Oracle Auto-PK without trigger: First primary key set manually");
289 END { drop_test_schema($schema) }
292 ######### SUBROUTINES
294 sub create_test_schema {
296 $schema->storage->dbh_do(sub {
297 my (undef,$dbh) = @_;
299 local $dbh->{Warn} = 0;
301 my $std_artist_table = <<EOS;
303 artistid serial PRIMARY KEY
305 , rank INTEGER NOT NULL DEFAULT '13'
307 , arrayfield INTEGER[]
311 $dbh->do("CREATE SCHEMA dbic_t_schema");
312 $dbh->do("CREATE TABLE dbic_t_schema.artist $std_artist_table");
314 CREATE TABLE dbic_t_schema.sequence_test (
319 , CONSTRAINT pk PRIMARY KEY(pkid1, pkid2)
322 $dbh->do("CREATE SEQUENCE pkid1_seq START 1 MAXVALUE 999999 MINVALUE 0");
323 $dbh->do("CREATE SEQUENCE pkid2_seq START 10 MAXVALUE 999999 MINVALUE 0");
324 $dbh->do("CREATE SEQUENCE nonpkid_seq START 20 MAXVALUE 999999 MINVALUE 0");
326 CREATE TABLE dbic_t_schema.casecheck (
327 id serial PRIMARY KEY
330 , "UC_NAME" VARCHAR(3)
331 , "storecolumn" VARCHAR(10)
335 CREATE TABLE dbic_t_schema.array_test (
336 id serial PRIMARY KEY
337 , arrayfield INTEGER[]
340 $dbh->do("CREATE SCHEMA dbic_t_schema_2");
341 $dbh->do("CREATE TABLE dbic_t_schema_2.artist $std_artist_table");
342 $dbh->do("CREATE SCHEMA dbic_t_schema_3");
343 $dbh->do("CREATE TABLE dbic_t_schema_3.artist $std_artist_table");
344 $dbh->do('set search_path=dbic_t_schema,public');
345 $dbh->do("CREATE SCHEMA dbic_t_schema_4");
346 $dbh->do("CREATE SCHEMA dbic_t_schema_5");
348 CREATE TABLE dbic_t_schema_4.artist
350 artistid integer not null default nextval('artist_artistid_seq'::regclass) PRIMARY KEY
352 , rank INTEGER NOT NULL DEFAULT '13'
354 , arrayfield INTEGER[]
357 $dbh->do('set search_path=public,dbic_t_schema,dbic_t_schema_3');
358 $dbh->do('create sequence public.artist_artistid_seq'); #< in the public schema
360 CREATE TABLE dbic_t_schema_5.artist
362 artistid integer not null default nextval('public.artist_artistid_seq'::regclass) PRIMARY KEY
364 , rank INTEGER NOT NULL DEFAULT '13'
366 , arrayfield INTEGER[]
369 $dbh->do('set search_path=dbic_t_schema,public');
375 sub drop_test_schema {
376 my ( $schema, $no_warn ) = @_;
378 $schema->storage->dbh_do(sub {
379 my (undef,$dbh) = @_;
381 local $dbh->{Warn} = 0;
384 'DROP SCHEMA dbic_t_schema_5 CASCADE',
385 'DROP SEQUENCE public.artist_artistid_seq',
386 'DROP SCHEMA dbic_t_schema_4 CASCADE',
387 'DROP SCHEMA dbic_t_schema CASCADE',
388 'DROP SEQUENCE pkid1_seq',
389 'DROP SEQUENCE pkid2_seq',
390 'DROP SEQUENCE nonpkid_seq',
391 'DROP SCHEMA dbic_t_schema_2 CASCADE',
392 'DROP SCHEMA dbic_t_schema_3 CASCADE',
394 eval { $dbh->do ($stat) };
395 diag $@ if $@ && !$no_warn;
400 ### auto-pk / last_insert_id / sequence discovery
404 # This is in Core now, but it's here just to test that it doesn't break
405 $schema->class('Artist')->load_components('PK::Auto');
406 cmp_ok( $schema->resultset('Artist')->count, '==', 0, 'this should start with an empty artist table');
408 # test that auto-pk also works with the defined search path by
409 # un-schema-qualifying the table name
410 apk_t_set($schema,'artist');
414 $unq_new = $schema->resultset('Artist')->create({ name => 'baz' });
415 } 'insert into unqualified, shadowed table succeeds';
417 is($unq_new && $unq_new->artistid, 1, "and got correct artistid");
419 my @test_schemas = ( [qw| dbic_t_schema_2 1 |],
420 [qw| dbic_t_schema_3 1 |],
421 [qw| dbic_t_schema_4 2 |],
422 [qw| dbic_t_schema_5 1 |],
424 foreach my $t ( @test_schemas ) {
425 my ($sch_name, $start_num) = @$t;
426 #test with dbic_t_schema_2
427 apk_t_set($schema,"$sch_name.artist");
430 $another_new = $schema->resultset('Artist')->create({ name => 'Tollbooth Willy'});
431 is( $another_new->artistid,$start_num, "got correct artistid for $sch_name")
432 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
433 } "$sch_name liid 1 did not die"
434 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
436 $another_new = $schema->resultset('Artist')->create({ name => 'Adam Sandler'});
437 is( $another_new->artistid,$start_num+1, "got correct artistid for $sch_name")
438 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
439 } "$sch_name liid 2 did not die"
440 or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
445 apk_t_set($schema,'dbic_t_schema.artist');
446 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
447 is($new->artistid, 4, "Auto-PK worked");
448 $new = $schema->resultset('Artist')->create({ name => 'bar' });
449 is($new->artistid, 5, "Auto-PK worked");
450 } 'old auto-pk tests did not die either';
454 # sets the artist table name and clears sequence name cache
457 $s->source("Artist")->name($n);
458 $s->source('Artist')->column_info('artistid')->{sequence} = undef; #< clear sequence name cache