some reorganization and cleanup of pg-specific tests
[dbsrgits/DBIx-Class.git] / t / 72pg.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Test::Exception;
6 use lib qw(t/lib);
7 use DBICTest;
8
9
10 BEGIN {
11   package DBICTest::Schema::ArrayTest;
12
13   use strict;
14   use warnings;
15   use base 'DBIx::Class';
16
17   __PACKAGE__->load_components(qw/Core/);
18   __PACKAGE__->table('testschema.array_test');
19   __PACKAGE__->add_columns(qw/id arrayfield/);
20   __PACKAGE__->column_info_from_storage(1);
21   __PACKAGE__->set_primary_key('id');
22
23 }
24
25 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
26
27 plan skip_all => <<EOM unless $dsn && $user;
28 Set \$ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test
29 ( NOTE: This test drops and creates tables called 'artist', 'casecheck',
30   'array_test' and 'sequence_test' as well as following sequences:
31   'pkid1_seq', 'pkid2_seq' and 'nonpkid_seq''.  as well as following
32   schemas: 'testschema', 'anothertestschema', 'yetanothertestschema',
33   'unq_nextval_schema', and 'unq_nextval_schema2'
34 )
35 EOM
36
37
38 ########## Case check
39
40 BEGIN {
41   package DBICTest::Schema::Casecheck;
42
43   use strict;
44   use warnings;
45   use base 'DBIx::Class';
46
47   __PACKAGE__->load_components(qw/Core/);
48   __PACKAGE__->table('testschema.casecheck');
49   __PACKAGE__->add_columns(qw/id name NAME uc_name storecolumn/);
50   __PACKAGE__->column_info_from_storage(1);
51   __PACKAGE__->set_primary_key('id');
52
53   sub store_column {
54     my ($self, $name, $value) = @_;
55     $value = '#'.$value if($name eq "storecolumn");
56     $self->maybe::next::method($name, $value);
57   }
58 }
59
60 DBICTest::Schema->load_classes( 'Casecheck', 'ArrayTest' );
61
62 # make sure sqlt_type overrides work (::Storage::DBI::Pg does this)
63 {
64   my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
65
66   ok (!$schema->storage->_dbh, 'definitely not connected');
67   is ($schema->storage->sqlt_type, 'PostgreSQL', 'sqlt_type correct pre-connection');
68 }
69
70 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
71 # Check that datetime_parser returns correctly before we explicitly connect.
72 SKIP: {
73     eval { require DateTime::Format::Pg };
74     skip "DateTime::Format::Pg required", 2 if $@;
75
76     my $store = ref $schema->storage;
77     is($store, 'DBIx::Class::Storage::DBI', 'Started with generic storage');
78
79     my $parser = $schema->storage->datetime_parser;
80     is( $parser, 'DateTime::Format::Pg', 'datetime_parser is as expected');
81 }
82
83 my $dbh = $schema->storage->dbh;
84 $schema->source("Artist")->name("testschema.artist");
85 $schema->source("SequenceTest")->name("testschema.sequence_test");
86 {
87     local $SIG{__WARN__} = sub {};
88     _cleanup ($dbh);
89
90     my $artist_table_def = <<EOS;
91 (
92   artistid serial PRIMARY KEY
93   , name VARCHAR(100)
94   , rank INTEGER NOT NULL DEFAULT '13'
95   , charfield CHAR(10)
96   , arrayfield INTEGER[]
97 )
98 EOS
99     $dbh->do("CREATE SCHEMA testschema;");
100     $dbh->do("CREATE TABLE testschema.artist $artist_table_def;");
101     $dbh->do("CREATE TABLE testschema.sequence_test (pkid1 integer, pkid2 integer, nonpkid integer, name VARCHAR(100), CONSTRAINT pk PRIMARY KEY(pkid1, pkid2));");
102     $dbh->do("CREATE SEQUENCE pkid1_seq START 1 MAXVALUE 999999 MINVALUE 0");
103     $dbh->do("CREATE SEQUENCE pkid2_seq START 10 MAXVALUE 999999 MINVALUE 0");
104     $dbh->do("CREATE SEQUENCE nonpkid_seq START 20 MAXVALUE 999999 MINVALUE 0");
105     ok ( $dbh->do('CREATE TABLE testschema.casecheck (id serial PRIMARY KEY, "name" VARCHAR(1), "NAME" VARCHAR(2), "UC_NAME" VARCHAR(3), "storecolumn" VARCHAR(10));'), 'Creation of casecheck table');
106     ok ( $dbh->do('CREATE TABLE testschema.array_test (id serial PRIMARY KEY, arrayfield INTEGER[]);'), 'Creation of array_test table');
107     $dbh->do("CREATE SCHEMA anothertestschema;");
108     $dbh->do("CREATE TABLE anothertestschema.artist $artist_table_def;");
109     $dbh->do("CREATE SCHEMA yetanothertestschema;");
110     $dbh->do("CREATE TABLE yetanothertestschema.artist $artist_table_def;");
111     $dbh->do('set search_path=testschema,public');
112     $dbh->do("CREATE SCHEMA unq_nextval_schema;");
113     $dbh->do("CREATE SCHEMA unq_nextval_schema2;");
114     $dbh->do(<<EOS);
115  CREATE TABLE unq_nextval_schema.artist
116  (
117    artistid integer not null default nextval('artist_artistid_seq'::regclass) PRIMARY KEY
118    , name VARCHAR(100)
119    , rank INTEGER NOT NULL DEFAULT '13'
120    , charfield CHAR(10)
121    , arrayfield INTEGER[]
122  );
123 EOS
124     $dbh->do('set search_path=public,testschema,yetanothertestschema');
125     $dbh->do('create sequence public.artist_artistid_seq'); #< in the public schema
126     $dbh->do(<<EOS);
127  CREATE TABLE unq_nextval_schema2.artist
128  (
129    artistid integer not null default nextval('public.artist_artistid_seq'::regclass) PRIMARY KEY
130    , name VARCHAR(100)
131    , rank INTEGER NOT NULL DEFAULT '13'
132    , charfield CHAR(10)
133    , arrayfield INTEGER[]
134  );
135 EOS
136     $dbh->do('set search_path=testschema,public');
137
138 }
139
140
141
142 {
143
144   # This is in Core now, but it's here just to test that it doesn't break
145   $schema->class('Artist')->load_components('PK::Auto');
146   cmp_ok( $schema->resultset('Artist')->count, '==', 0, 'this should start with an empty artist table');
147
148   # test that auto-pk also works with the defined search path by
149   # un-schema-qualifying the table name
150   my $artist_name_save = $schema->source("Artist")->name;
151   $schema->source("Artist")->name("artist");
152
153   my $unq_new;
154   lives_ok {
155       $unq_new = $schema->resultset('Artist')->create({ name => 'baz' });
156   } 'insert into unqualified, shadowed table succeeds';
157
158   is($unq_new && $unq_new->artistid, 1, "and got correct artistid");
159
160   my @test_schemas = ( [qw| anothertestschema    1      |],
161                        [qw| yetanothertestschema 1      |],
162                      );
163   foreach my $t ( @test_schemas ) {
164       my ($sch_name, $start_num) = @$t;
165       #test with anothertestschema
166       $schema->source('Artist')->name("$sch_name.artist");
167       $schema->source('Artist')->column_info('artistid')->{sequence} = undef; #< clear sequence name cache
168       my $another_new;
169       lives_ok {
170           $another_new = $schema->resultset('Artist')->create({ name => 'Tollbooth Willy'});
171           is( $another_new->artistid,$start_num, "got correct artistid for $sch_name")
172               or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
173       } "$sch_name liid 1 did not die"
174           or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
175       lives_ok {
176           $another_new = $schema->resultset('Artist')->create({ name => 'Adam Sandler'});
177           is( $another_new->artistid,$start_num+1, "got correct artistid for $sch_name")
178               or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
179       } "$sch_name liid 2 did not die"
180           or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
181
182   }
183
184
185   my @todo_schemas = (
186                       [qw| unq_nextval_schema   2 |],
187                       [qw| unq_nextval_schema2  1 |],
188                      );
189
190   foreach my $t ( @todo_schemas ) {
191     my ($sch_name, $start_num) = @$t;
192
193     #test with anothertestschema
194     $schema->source('Artist')->name("$sch_name.artist");
195     $schema->source('Artist')->column_info('artistid')->{sequence} = undef; #< clear sequence name cache
196     my $another_new;
197     lives_ok {
198       $another_new = $schema->resultset('Artist')->create({ name => 'Tollbooth Willy'});
199       is( $another_new->artistid,$start_num, "got correct artistid for $sch_name")
200         or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
201     } "$sch_name liid 1 did not die"
202       or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
203
204     lives_ok {
205       $another_new = $schema->resultset('Artist')->create({ name => 'Adam Sandler'});
206       is( $another_new->artistid,$start_num+1, "got correct artistid for $sch_name")
207         or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
208     } "$sch_name liid 2 did not die"
209       or diag "USED SEQUENCE: ".($schema->source('Artist')->column_info('artistid')->{sequence} || '<none>');
210   }
211
212   $schema->source('Artist')->column_info('artistid')->{sequence} = undef; #< clear sequence name cache
213   $schema->source("Artist")->name($artist_name_save);
214 }
215
216 my $new;
217 lives_ok {
218     $new = $schema->resultset('Artist')->create({ name => 'foo' });
219     is($new->artistid, 4, "Auto-PK worked");
220     $new = $schema->resultset('Artist')->create({ name => 'bar' });
221     is($new->artistid, 5, "Auto-PK worked");
222 } 'old auto-pk tests did not die either';
223
224
225 my $test_type_info = {
226     'artistid' => {
227         'data_type' => 'integer',
228         'is_nullable' => 0,
229         'size' => 4,
230     },
231     'name' => {
232         'data_type' => 'character varying',
233         'is_nullable' => 1,
234         'size' => 100,
235         'default_value' => undef,
236     },
237     'rank' => {
238         'data_type' => 'integer',
239         'is_nullable' => 0,
240         'size' => 4,
241         'default_value' => 13,
242
243     },
244     'charfield' => {
245         'data_type' => 'character',
246         'is_nullable' => 1,
247         'size' => 10,
248         'default_value' => undef,
249     },
250     'arrayfield' => {
251         'data_type' => 'integer[]',
252         'is_nullable' => 1,
253         'size' => undef,
254         'default_value' => undef,
255     },
256 };
257
258
259 my $type_info = $schema->storage->columns_info_for('testschema.artist');
260 my $artistid_defval = delete $type_info->{artistid}->{default_value};
261 like($artistid_defval,
262      qr/^nextval\('([^\.]*\.){0,1}artist_artistid_seq'::(?:text|regclass)\)/,
263      'columns_info_for - sequence matches Pg get_autoinc_seq expectations');
264 is_deeply($type_info, $test_type_info,
265           'columns_info_for - column data types');
266
267 SKIP: {
268   skip "Need DBD::Pg 2.9.2 or newer for array tests", 4 if $DBD::Pg::VERSION < 2.009002;
269
270   lives_ok {
271     $schema->resultset('ArrayTest')->create({
272       arrayfield => [1, 2],
273     });
274   } 'inserting arrayref as pg array data';
275
276   lives_ok {
277     $schema->resultset('ArrayTest')->update({
278       arrayfield => [3, 4],
279     });
280   } 'updating arrayref as pg array data';
281
282   $schema->resultset('ArrayTest')->create({
283     arrayfield => [5, 6],
284   });
285
286   my $count;
287   lives_ok {
288     $count = $schema->resultset('ArrayTest')->search({
289       arrayfield => \[ '= ?' => [arrayfield => [3, 4]] ],   #Todo anything less ugly than this?
290     })->count;
291   } 'comparing arrayref to pg array data does not blow up';
292   is($count, 1, 'comparing arrayref to pg array data gives correct result');
293 }
294
295
296 # store_column is called once for create() for non sequence columns
297 ok(my $storecolumn = $schema->resultset('Casecheck')->create({'storecolumn' => 'a'}));
298 is($storecolumn->storecolumn, '#a'); # was '##a'
299
300 my $name_info = $schema->source('Casecheck')->column_info( 'name' );
301 is( $name_info->{size}, 1, "Case sensitive matching info for 'name'" );
302
303 my $NAME_info = $schema->source('Casecheck')->column_info( 'NAME' );
304 is( $NAME_info->{size}, 2, "Case sensitive matching info for 'NAME'" );
305
306 my $uc_name_info = $schema->source('Casecheck')->column_info( 'uc_name' );
307 is( $uc_name_info->{size}, 3, "Case insensitive matching info for 'uc_name'" );
308
309 # Test SELECT ... FOR UPDATE
310 my $HaveSysSigAction = eval "require Sys::SigAction" && !$@;
311 if ($HaveSysSigAction) {
312     Sys::SigAction->import( 'set_sig_handler' );
313 }
314
315 SKIP: {
316     skip "Sys::SigAction is not available", 3 unless $HaveSysSigAction;
317     # create a new schema
318     my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
319     $schema2->source("Artist")->name("testschema.artist");
320
321     $schema->txn_do( sub {
322         my $artist = $schema->resultset('Artist')->search(
323             {
324                 artistid => 1
325             },
326             {
327                 for => 'update'
328             }
329         )->first;
330         is($artist->artistid, 1, "select for update returns artistid = 1");
331
332         my $artist_from_schema2;
333         my $error_ok = 0;
334         eval {
335             my $h = set_sig_handler( 'ALRM', sub { die "DBICTestTimeout" } );
336             alarm(2);
337             $artist_from_schema2 = $schema2->resultset('Artist')->find(1);
338             $artist_from_schema2->name('fooey');
339             $artist_from_schema2->update;
340             alarm(0);
341         };
342         if (my $e = $@) {
343             $error_ok = $e =~ /DBICTestTimeout/;
344         }
345
346         # Make sure that an error was raised, and that the update failed
347         ok($error_ok, "update from second schema times out");
348         ok($artist_from_schema2->is_column_changed('name'), "'name' column is still dirty from second schema");
349     });
350 }
351
352 SKIP: {
353     skip "Sys::SigAction is not available", 3 unless $HaveSysSigAction;
354     # create a new schema
355     my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
356     $schema2->source("Artist")->name("testschema.artist");
357
358     $schema->txn_do( sub {
359         my $artist = $schema->resultset('Artist')->search(
360             {
361                 artistid => 1
362             },
363         )->first;
364         is($artist->artistid, 1, "select for update returns artistid = 1");
365
366         my $artist_from_schema2;
367         my $error_ok = 0;
368         eval {
369             my $h = set_sig_handler( 'ALRM', sub { die "DBICTestTimeout" } );
370             alarm(2);
371             $artist_from_schema2 = $schema2->resultset('Artist')->find(1);
372             $artist_from_schema2->name('fooey');
373             $artist_from_schema2->update;
374             alarm(0);
375         };
376         if (my $e = $@) {
377             $error_ok = $e =~ /DBICTestTimeout/;
378         }
379
380         # Make sure that an error was NOT raised, and that the update succeeded
381         ok(! $error_ok, "update from second schema DOES NOT timeout");
382         ok(! $artist_from_schema2->is_column_changed('name'), "'name' column is NOT dirty from second schema");
383     });
384 }
385
386 for (1..5) {
387     my $st = $schema->resultset('SequenceTest')->create({ name => 'foo' });
388     is($st->pkid1, $_, "Oracle Auto-PK without trigger: First primary key");
389     is($st->pkid2, $_ + 9, "Oracle Auto-PK without trigger: Second primary key");
390     is($st->nonpkid, $_ + 19, "Oracle Auto-PK without trigger: Non-primary key");
391 }
392 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo', pkid1 => 55 });
393 is($st->pkid1, 55, "Oracle Auto-PK without trigger: First primary key set manually");
394
395 #_cleanup ($dbh);
396
397 done_testing;
398
399
400 sub _cleanup {
401   my $dbh = shift or return;
402   $dbh->ping or return;
403
404   for my $stat (
405     'DROP TABLE unq_nextval_schema2.artist',
406     'DROP SCHEMA unq_nextval_schema2',
407     'DROP SEQUENCE public.artist_artistid_seq',
408     'DROP TABLE unq_nextval_schema.artist',
409     'DROP SCHEMA unq_nextval_schema',
410     'DROP TABLE testschema.artist',
411     'DROP TABLE testschema.casecheck',
412     'DROP TABLE testschema.sequence_test',
413     'DROP TABLE testschema.array_test',
414     'DROP SEQUENCE pkid1_seq',
415     'DROP SEQUENCE pkid2_seq',
416     'DROP SEQUENCE nonpkid_seq',
417     'DROP SCHEMA testschema',
418     'DROP TABLE anothertestschema.artist',
419     'DROP SCHEMA anothertestschema',
420     'DROP TABLE yetanothertestschema.artist',
421     'DROP SCHEMA yetanothertestschema',
422   ) {
423     eval { $dbh->do ($stat) };
424     diag $@ if $@;
425   }
426 }
427
428 END { _cleanup($dbh) }