Stop testing deprecated json::syck
[dbsrgits/DBIx-Class.git] / t / 72pg.t
CommitLineData
70350518 1use strict;
4617b792 2use warnings;
70350518 3
4use Test::More;
9ba627e3 5use Test::Exception;
70350518 6use lib qw(t/lib);
7use DBICTest;
8
89add887 9{
10 package DBICTest::Schema::Casecheck;
11
12 use strict;
13 use warnings;
14 use base 'DBIx::Class';
15
3ff5b740 16 __PACKAGE__->load_components(qw/Core/);
9ba627e3 17 __PACKAGE__->table('testschema.casecheck');
c3af542a 18 __PACKAGE__->add_columns(qw/id name NAME uc_name storecolumn/);
d9916234 19 __PACKAGE__->column_info_from_storage(1);
89add887 20 __PACKAGE__->set_primary_key('id');
21
ece2b6ec 22 sub store_column {
c3af542a 23 my ($self, $name, $value) = @_;
24 $value = '#'.$value if($name eq "storecolumn");
25 $self->maybe::next::method($name, $value);
ece2b6ec 26 }
89add887 27}
28
9ba627e3 29{
30 package DBICTest::Schema::ArrayTest;
31
32 use strict;
33 use warnings;
34 use base 'DBIx::Class';
35
36 __PACKAGE__->load_components(qw/Core/);
37 __PACKAGE__->table('testschema.array_test');
38 __PACKAGE__->add_columns(qw/id arrayfield/);
39 __PACKAGE__->column_info_from_storage(1);
40 __PACKAGE__->set_primary_key('id');
41
42}
43
0567538f 44my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
45
9ba627e3 46plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test '.
47 '(note: This test drops and creates tables called \'artist\', \'casecheck\', \'array_test\' and \'sequence_test\''.
48 ' as well as following sequences: \'pkid1_seq\', \'pkid2_seq\' and \'nonpkid_seq\''.
f2b70f86 49 ' as well as following schemas: \'testschema\',\'anothertestschema\'!)'
64d5427c 50 unless ($dsn && $user);
0567538f 51
9ba627e3 52DBICTest::Schema->load_classes( 'Casecheck', 'ArrayTest' );
f2b70f86 53my $schema = DBICTest::Schema->connect($dsn, $user, $pass,);
0567538f 54
114780ee 55# Check that datetime_parser returns correctly before we explicitly connect.
56SKIP: {
57 eval { require DateTime::Format::Pg };
58 skip "DateTime::Format::Pg required", 2 if $@;
59
60 my $store = ref $schema->storage;
61 is($store, 'DBIx::Class::Storage::DBI', 'Started with generic storage');
62
63 my $parser = $schema->storage->datetime_parser;
64 is( $parser, 'DateTime::Format::Pg', 'datetime_parser is as expected');
65}
66
3ff5b740 67my $dbh = $schema->storage->dbh;
68$schema->source("Artist")->name("testschema.artist");
39b8d119 69$schema->source("SequenceTest")->name("testschema.sequence_test");
bb452615 70{
71 local $SIG{__WARN__} = sub {};
7603d2a5 72 _cleanup ($dbh);
73
f2b70f86 74 my $artist_table_def = <<EOS;
75(
76 artistid serial PRIMARY KEY
77 , name VARCHAR(100)
78 , rank INTEGER NOT NULL DEFAULT '13'
79 , charfield CHAR(10)
80 , arrayfield INTEGER[]
81)
82EOS
bb452615 83 $dbh->do("CREATE SCHEMA testschema;");
f2b70f86 84 $dbh->do("CREATE TABLE testschema.artist $artist_table_def;");
bb452615 85 $dbh->do("CREATE TABLE testschema.sequence_test (pkid1 integer, pkid2 integer, nonpkid integer, name VARCHAR(100), CONSTRAINT pk PRIMARY KEY(pkid1, pkid2));");
86 $dbh->do("CREATE SEQUENCE pkid1_seq START 1 MAXVALUE 999999 MINVALUE 0");
87 $dbh->do("CREATE SEQUENCE pkid2_seq START 10 MAXVALUE 999999 MINVALUE 0");
88 $dbh->do("CREATE SEQUENCE nonpkid_seq START 20 MAXVALUE 999999 MINVALUE 0");
c3af542a 89 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');
9ba627e3 90 ok ( $dbh->do('CREATE TABLE testschema.array_test (id serial PRIMARY KEY, arrayfield INTEGER[]);'), 'Creation of array_test table');
f2b70f86 91 $dbh->do("CREATE SCHEMA anothertestschema;");
92 $dbh->do("CREATE TABLE anothertestschema.artist $artist_table_def;");
93 $dbh->do("CREATE SCHEMA yetanothertestschema;");
94 $dbh->do("CREATE TABLE yetanothertestschema.artist $artist_table_def;");
95 $dbh->do('set search_path=testschema,public');
bb452615 96}
0567538f 97
c3af542a 98# store_column is called once for create() for non sequence columns
99
100ok(my $storecolumn = $schema->resultset('Casecheck')->create({'storecolumn' => 'a'}));
101
102is($storecolumn->storecolumn, '#a'); # was '##a'
103
104
3ff5b740 105# This is in Core now, but it's here just to test that it doesn't break
106$schema->class('Artist')->load_components('PK::Auto');
0567538f 107
46bb5b38 108cmp_ok( $schema->resultset('Artist')->count, '==', 0, 'this should start with an empty artist table');
f2b70f86 109
46bb5b38 110{ # test that auto-pk also works with the defined search path by
111 # un-schema-qualifying the table name
f2b70f86 112 my $artist_name_save = $schema->source("Artist")->name;
113 $schema->source("Artist")->name("artist");
114
115 my $unq_new;
116 lives_ok {
117 $unq_new = $schema->resultset('Artist')->create({ name => 'baz' });
118 } 'insert into unqualified, shadowed table succeeds';
119
120 is($unq_new && $unq_new->artistid, 1, "and got correct artistid");
121
4617b792 122 #test with anothertestschema
123 $schema->source('Artist')->name('anothertestschema.artist');
124 my $another_new = $schema->resultset('Artist')->create({ name => 'ribasushi'});
125 is( $another_new->artistid,1, 'got correct artistid for yetanotherschema');
126
127 #test with yetanothertestschema
128 $schema->source('Artist')->name('yetanothertestschema.artist');
129 my $yetanother_new = $schema->resultset('Artist')->create({ name => 'ribasushi'});
130 is( $yetanother_new->artistid,1, 'got correct artistid for yetanotherschema');
131 is( $yetanother_new->artistid,1, 'got correct artistid for yetanotherschema');
132
f2b70f86 133 $schema->source("Artist")->name($artist_name_save);
134}
135
3ff5b740 136my $new = $schema->resultset('Artist')->create({ name => 'foo' });
0567538f 137
f2b70f86 138is($new->artistid, 2, "Auto-PK worked");
b6b65a3e 139
3ff5b740 140$new = $schema->resultset('Artist')->create({ name => 'bar' });
b6b65a3e 141
f2b70f86 142is($new->artistid, 3, "Auto-PK worked");
143
b6b65a3e 144
a953d8d9 145my $test_type_info = {
146 'artistid' => {
103e3e03 147 'data_type' => 'integer',
148 'is_nullable' => 0,
fc22fbac 149 'size' => 4,
a953d8d9 150 },
151 'name' => {
103e3e03 152 'data_type' => 'character varying',
153 'is_nullable' => 1,
ae515736 154 'size' => 100,
fc22fbac 155 'default_value' => undef,
103e3e03 156 },
85df19d7 157 'rank' => {
158 'data_type' => 'integer',
159 'is_nullable' => 0,
160 'size' => 4,
161 'default_value' => 13,
162
163 },
103e3e03 164 'charfield' => {
165 'data_type' => 'character',
a953d8d9 166 'is_nullable' => 1,
fc22fbac 167 'size' => 10,
168 'default_value' => undef,
103e3e03 169 },
9ba627e3 170 'arrayfield' => {
171 'data_type' => 'integer[]',
172 'is_nullable' => 1,
173 'size' => undef,
174 'default_value' => undef,
175 },
a953d8d9 176};
177
fc22fbac 178
3ff5b740 179my $type_info = $schema->storage->columns_info_for('testschema.artist');
fc22fbac 180my $artistid_defval = delete $type_info->{artistid}->{default_value};
181like($artistid_defval,
4d272ce5 182 qr/^nextval\('([^\.]*\.){0,1}artist_artistid_seq'::(?:text|regclass)\)/,
fc22fbac 183 'columns_info_for - sequence matches Pg get_autoinc_seq expectations');
184is_deeply($type_info, $test_type_info,
185 'columns_info_for - column data types');
a953d8d9 186
ac45262b 187SKIP: {
188 skip "Need DBD::Pg 2.9.2 or newer for array tests", 4 if $DBD::Pg::VERSION < 2.009002;
189
9ba627e3 190 lives_ok {
191 $schema->resultset('ArrayTest')->create({
192 arrayfield => [1, 2],
193 });
194 } 'inserting arrayref as pg array data';
195
196 lives_ok {
197 $schema->resultset('ArrayTest')->update({
198 arrayfield => [3, 4],
199 });
200 } 'updating arrayref as pg array data';
c224117b 201
202 $schema->resultset('ArrayTest')->create({
203 arrayfield => [5, 6],
204 });
205
206 my $count;
207 lives_ok {
208 $count = $schema->resultset('ArrayTest')->search({
aab0d3b7 209 arrayfield => \[ '= ?' => [arrayfield => [3, 4]] ], #Todo anything less ugly than this?
c224117b 210 })->count;
211 } 'comparing arrayref to pg array data does not blow up';
212 is($count, 1, 'comparing arrayref to pg array data gives correct result');
9ba627e3 213}
214
215
3ff5b740 216my $name_info = $schema->source('Casecheck')->column_info( 'name' );
ae515736 217is( $name_info->{size}, 1, "Case sensitive matching info for 'name'" );
218
3ff5b740 219my $NAME_info = $schema->source('Casecheck')->column_info( 'NAME' );
ae515736 220is( $NAME_info->{size}, 2, "Case sensitive matching info for 'NAME'" );
221
3ff5b740 222my $uc_name_info = $schema->source('Casecheck')->column_info( 'uc_name' );
ae515736 223is( $uc_name_info->{size}, 3, "Case insensitive matching info for 'uc_name'" );
224
95ba7ee4 225# Test SELECT ... FOR UPDATE
226my $HaveSysSigAction = eval "require Sys::SigAction" && !$@;
227if ($HaveSysSigAction) {
228 Sys::SigAction->import( 'set_sig_handler' );
229}
230
231SKIP: {
232 skip "Sys::SigAction is not available", 3 unless $HaveSysSigAction;
233 # create a new schema
234 my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
235 $schema2->source("Artist")->name("testschema.artist");
236
237 $schema->txn_do( sub {
238 my $artist = $schema->resultset('Artist')->search(
239 {
240 artistid => 1
241 },
242 {
243 for => 'update'
244 }
245 )->first;
246 is($artist->artistid, 1, "select for update returns artistid = 1");
247
248 my $artist_from_schema2;
249 my $error_ok = 0;
250 eval {
251 my $h = set_sig_handler( 'ALRM', sub { die "DBICTestTimeout" } );
252 alarm(2);
253 $artist_from_schema2 = $schema2->resultset('Artist')->find(1);
254 $artist_from_schema2->name('fooey');
255 $artist_from_schema2->update;
256 alarm(0);
257 };
258 if (my $e = $@) {
259 $error_ok = $e =~ /DBICTestTimeout/;
260 }
261
262 # Make sure that an error was raised, and that the update failed
263 ok($error_ok, "update from second schema times out");
264 ok($artist_from_schema2->is_column_changed('name'), "'name' column is still dirty from second schema");
265 });
266}
267
268SKIP: {
269 skip "Sys::SigAction is not available", 3 unless $HaveSysSigAction;
270 # create a new schema
271 my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
272 $schema2->source("Artist")->name("testschema.artist");
273
274 $schema->txn_do( sub {
275 my $artist = $schema->resultset('Artist')->search(
276 {
277 artistid => 1
278 },
279 )->first;
280 is($artist->artistid, 1, "select for update returns artistid = 1");
281
282 my $artist_from_schema2;
283 my $error_ok = 0;
284 eval {
285 my $h = set_sig_handler( 'ALRM', sub { die "DBICTestTimeout" } );
286 alarm(2);
287 $artist_from_schema2 = $schema2->resultset('Artist')->find(1);
288 $artist_from_schema2->name('fooey');
289 $artist_from_schema2->update;
290 alarm(0);
291 };
292 if (my $e = $@) {
293 $error_ok = $e =~ /DBICTestTimeout/;
294 }
295
296 # Make sure that an error was NOT raised, and that the update succeeded
297 ok(! $error_ok, "update from second schema DOES NOT timeout");
298 ok(! $artist_from_schema2->is_column_changed('name'), "'name' column is NOT dirty from second schema");
299 });
300}
301
d093d3eb 302for (1..5) {
39b8d119 303 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo' });
304 is($st->pkid1, $_, "Oracle Auto-PK without trigger: First primary key");
305 is($st->pkid2, $_ + 9, "Oracle Auto-PK without trigger: Second primary key");
306 is($st->nonpkid, $_ + 19, "Oracle Auto-PK without trigger: Non-primary key");
d093d3eb 307}
308my $st = $schema->resultset('SequenceTest')->create({ name => 'foo', pkid1 => 55 });
309is($st->pkid1, 55, "Oracle Auto-PK without trigger: First primary key set manually");
310
7603d2a5 311sub _cleanup {
312 my $dbh = shift or return;
313
314 for my $stat (
315 'DROP TABLE testschema.artist',
316 'DROP TABLE testschema.casecheck',
317 'DROP TABLE testschema.sequence_test',
318 'DROP TABLE testschema.array_test',
319 'DROP SEQUENCE pkid1_seq',
320 'DROP SEQUENCE pkid2_seq',
321 'DROP SEQUENCE nonpkid_seq',
322 'DROP SCHEMA testschema',
f2b70f86 323 'DROP TABLE anothertestschema.artist',
324 'DROP SCHEMA anothertestschema',
325 'DROP TABLE yetanothertestschema.artist',
326 'DROP SCHEMA yetanothertestschema',
7603d2a5 327 ) {
328 eval { $dbh->do ($stat) };
329 }
3ff5b740 330}
7603d2a5 331
7ff926e6 332done_testing;
333
7603d2a5 334END { _cleanup($dbh) }