Improve trigger 'scope' attribute support (RT#119997)
[dbsrgits/SQL-Translator.git] / t / 14postgres-parser.t
CommitLineData
f4eb75f3 1#!/usr/bin/perl
fbc0552f 2# vim: set ft=perl:
f4eb75f3 3
4use strict;
fbc0552f 5use Test::More;
f4eb75f3 6use SQL::Translator;
07b82495 7use SQL::Translator::Schema::Constants;
2d691ec1 8use Test::SQL::Translator qw(maybe_plan);
fbc0552f 9
2d691ec1 10BEGIN {
9da488f2 11 maybe_plan(undef, 'SQL::Translator::Parser::PostgreSQL');
fbc0552f 12 SQL::Translator::Parser::PostgreSQL->import('parse');
fbc0552f 13}
f4eb75f3 14
15my $t = SQL::Translator->new( trace => 0 );
c96cd4a8 16my $sql = q{
fcc393cd 17 -- comment on t_test1
f4eb75f3 18 create table t_test1 (
fcc393cd 19 -- this is the primary key
07b82495 20 f_serial serial NOT NULL default '0' primary key,
f4eb75f3 21 f_varchar character varying (255),
22 f_double double precision,
07b82495 23 f_bigint bigint not null,
88ad8255 24 f_char character(10) default 'FOO'::character(10),
f4eb75f3 25 f_bool boolean,
07b82495 26 f_bin bytea,
88ad8255 27 f_tz timestamp default '1970-01-01 00:00:00'::TIMESTAMP,
f4eb75f3 28 f_text text,
29 f_fk1 integer not null references t_test2 (f_id),
08d91aad 30 f_dropped text,
31 f_timestamp timestamp(0) with time zone,
9f03b4c2 32 f_timestamp2 timestamp without time zone,
33 f_json json,
9da488f2 34 f_hstore hstore,
84ef6e4e 35 f_numarray numeric(7,2) [ ],
36 f_uuid uuid,
37 f_time time(0) with time zone,
38 f_time2 time without time zone
f4eb75f3 39 );
40
41 create table t_test2 (
42 f_id integer NOT NULL,
43 f_varchar varchar(25),
668c5039 44 f_int smallint,
a68deb7d 45 f_smallint smallint default (0)::smallint,
668c5039 46 primary key (f_id),
47 check (f_int between 1 and 5)
f4eb75f3 48 );
49
3e98f7d9 50 CREATE TABLE products_1 (
51 product_no integer,
52 name text,
53 price numeric
54 );
c96cd4a8 55
3e98f7d9 56 CREATE TEMP TABLE products_2 (
57 product_no integer,
58 name text,
59 price numeric
60 );
61
62 CREATE TEMPORARY TABLE products_3 (
63 product_no integer,
64 name text,
65 price numeric
66 );
67
c96cd4a8 68 CREATE TRIGGER test_trigger
69 BEFORE INSERT OR UPDATE OR DELETE
70 ON products_1
71 FOR EACH ROW
72 EXECUTE PROCEDURE foo();
73
9c05d806 74 CREATE INDEX test_index1 ON t_test1 (f_varchar);
75 CREATE INDEX test_index2 ON t_test1 USING hash (f_char, f_bool);
76 CREATE INDEX test_index3 ON t_test1 USING hash (f_bigint, f_tz) WHERE f_bigint = '1' AND f_tz IS NULL;
77
b3abc007 78 alter table t_test1 add f_fk2 integer;
79
f4eb75f3 80 alter table only t_test1 add constraint c_u1 unique (f_varchar);
81
b3abc007 82 alter table t_test1 add constraint "c_fk2" foreign key (f_fk2)
840447a5 83 references t_test2 (f_id) match simple
84 on update no action on delete cascade deferrable;
85
b3abc007 86
87 alter table t_test1 drop column f_dropped restrict;
88
89 alter table t_test1 alter column f_fk2 set default 'FOO';
90
91 alter table t_test1 alter column f_char drop default;
92
aee4b66e 93 -- The following are allowed by the grammar
08d91aad 94 -- but won\'t do anything... - ky
b3abc007 95
96 alter table t_text1 alter column f_char set not null;
97
98 alter table t_text1 alter column f_char drop not null;
99
100 alter table t_test1 alter f_char set statistics 10;
101
102 alter table t_test1 alter f_text set storage extended;
c96cd4a8 103
b3abc007 104 alter table t_test1 rename column f_text to foo;
105
106 alter table t_test1 rename to foo;
107
108 alter table only t_test1 drop constraint foo cascade;
109
110 alter table t_test1 owner to foo;
1f5b2625 111
112 commit;
c96cd4a8 113};
f4eb75f3 114
115$| = 1;
116
07b82495 117my $data = parse( $t, $sql );
118my $schema = $t->schema;
119
120isa_ok( $schema, 'SQL::Translator::Schema', 'Schema object' );
121my @tables = $schema->get_tables;
3e98f7d9 122is( scalar @tables, 5, 'Five tables' );
07b82495 123
124my $t1 = shift @tables;
125is( $t1->name, 't_test1', 'Table t_test1 exists' );
126
fcc393cd 127is( $t1->comments, 'comment on t_test1', 'Table comment exists' );
128
07b82495 129my @t1_fields = $t1->get_fields;
84ef6e4e 130is( scalar @t1_fields, 19, '19 fields in t_test1' );
07b82495 131
132my $f1 = shift @t1_fields;
133is( $f1->name, 'f_serial', 'First field is "f_serial"' );
134is( $f1->data_type, 'integer', 'Field is an integer' );
135is( $f1->is_nullable, 0, 'Field cannot be null' );
9bcfe960 136is( $f1->size, 11, 'Size is "11"' );
07b82495 137is( $f1->default_value, '0', 'Default value is "0"' );
138is( $f1->is_primary_key, 1, 'Field is PK' );
fcc393cd 139is( $f1->comments, 'this is the primary key', 'Comment' );
6d278664 140is( $f1->is_auto_increment, 1, 'Field is auto increment' );
07b82495 141
142my $f2 = shift @t1_fields;
143is( $f2->name, 'f_varchar', 'Second field is "f_varchar"' );
144is( $f2->data_type, 'varchar', 'Field is a varchar' );
145is( $f2->is_nullable, 1, 'Field can be null' );
146is( $f2->size, 255, 'Size is "255"' );
147is( $f2->default_value, undef, 'Default value is undefined' );
148is( $f2->is_primary_key, 0, 'Field is not PK' );
6d278664 149is( $f2->is_auto_increment, 0, 'Field is not auto increment' );
07b82495 150
151my $f3 = shift @t1_fields;
152is( $f3->name, 'f_double', 'Third field is "f_double"' );
153is( $f3->data_type, 'float', 'Field is a float' );
154is( $f3->is_nullable, 1, 'Field can be null' );
9bcfe960 155is( $f3->size, 20, 'Size is "20"' );
07b82495 156is( $f3->default_value, undef, 'Default value is undefined' );
157is( $f3->is_primary_key, 0, 'Field is not PK' );
158
159my $f4 = shift @t1_fields;
160is( $f4->name, 'f_bigint', 'Fourth field is "f_bigint"' );
161is( $f4->data_type, 'integer', 'Field is an integer' );
162is( $f4->is_nullable, 0, 'Field cannot be null' );
9bcfe960 163is( $f4->size, 20, 'Size is "20"' );
07b82495 164is( $f4->default_value, undef, 'Default value is undefined' );
165is( $f4->is_primary_key, 0, 'Field is not PK' );
166
167my $f5 = shift @t1_fields;
168is( $f5->name, 'f_char', 'Fifth field is "f_char"' );
169is( $f5->data_type, 'char', 'Field is char' );
170is( $f5->is_nullable, 1, 'Field can be null' );
171is( $f5->size, 10, 'Size is "10"' );
172is( $f5->default_value, undef, 'Default value is undefined' );
173is( $f5->is_primary_key, 0, 'Field is not PK' );
174
175my $f6 = shift @t1_fields;
176is( $f6->name, 'f_bool', 'Sixth field is "f_bool"' );
177is( $f6->data_type, 'boolean', 'Field is a boolean' );
178is( $f6->is_nullable, 1, 'Field can be null' );
179is( $f6->size, 0, 'Size is "0"' );
180is( $f6->default_value, undef, 'Default value is undefined' );
181is( $f6->is_primary_key, 0, 'Field is not PK' );
182
183my $f7 = shift @t1_fields;
184is( $f7->name, 'f_bin', 'Seventh field is "f_bin"' );
185is( $f7->data_type, 'bytea', 'Field is bytea' );
186is( $f7->is_nullable, 1, 'Field can be null' );
187is( $f7->size, 0, 'Size is "0"' );
188is( $f7->default_value, undef, 'Default value is undefined' );
189is( $f7->is_primary_key, 0, 'Field is not PK' );
190
191my $f8 = shift @t1_fields;
192is( $f8->name, 'f_tz', 'Eighth field is "f_tz"' );
193is( $f8->data_type, 'timestamp', 'Field is a timestamp' );
194is( $f8->is_nullable, 1, 'Field can be null' );
195is( $f8->size, 0, 'Size is "0"' );
88ad8255 196is( $f8->default_value, '1970-01-01 00:00:00', 'Default value is 1970-01-01 00:00:00' );
07b82495 197is( $f8->is_primary_key, 0, 'Field is not PK' );
198
199my $f9 = shift @t1_fields;
200is( $f9->name, 'f_text', 'Ninth field is "f_text"' );
201is( $f9->data_type, 'text', 'Field is text' );
202is( $f9->is_nullable, 1, 'Field can be null' );
60e3ded0 203is( $f9->size, 64000, 'Size is "64,000"' );
07b82495 204is( $f9->default_value, undef, 'Default value is undefined' );
205is( $f9->is_primary_key, 0, 'Field is not PK' );
206
207my $f10 = shift @t1_fields;
208is( $f10->name, 'f_fk1', 'Tenth field is "f_fk1"' );
209is( $f10->data_type, 'integer', 'Field is an integer' );
210is( $f10->is_nullable, 0, 'Field cannot be null' );
9bcfe960 211is( $f10->size, 10, 'Size is "10"' );
07b82495 212is( $f10->default_value, undef, 'Default value is undefined' );
213is( $f10->is_primary_key, 0, 'Field is not PK' );
214is( $f10->is_foreign_key, 1, 'Field is a FK' );
215my $fk_ref1 = $f10->foreign_key_reference;
216isa_ok( $fk_ref1, 'SQL::Translator::Schema::Constraint', 'FK' );
217is( $fk_ref1->reference_table, 't_test2', 'FK is to "t_test2" table' );
218
219my $f11 = shift @t1_fields;
08d91aad 220is( $f11->name, 'f_timestamp', 'Eleventh field is "f_timestamp"' );
b5a782a0 221is( $f11->data_type, 'timestamp with time zone', 'Field is a timestamp with time zone' );
07b82495 222is( $f11->is_nullable, 1, 'Field can be null' );
08d91aad 223is( $f11->size, 0, 'Size is "0"' );
224is( $f11->default_value, undef, 'Default value is "undef"' );
07b82495 225is( $f11->is_primary_key, 0, 'Field is not PK' );
08d91aad 226is( $f11->is_foreign_key, 0, 'Field is not FK' );
b5a782a0 227
228my $f12 = shift @t1_fields;
229is( $f12->name, 'f_timestamp2', '12th field is "f_timestamp2"' );
230is( $f12->data_type, 'timestamp without time zone', 'Field is a timestamp without time zone' );
231is( $f12->is_nullable, 1, 'Field can be null' );
232is( $f12->size, 0, 'Size is "0"' );
233is( $f12->default_value, undef, 'Default value is "undef"' );
234is( $f12->is_primary_key, 0, 'Field is not PK' );
235is( $f12->is_foreign_key, 0, 'Field is not FK' );
236
9f03b4c2 237my $f13 = shift @t1_fields;
238is( $f13->name, 'f_json', '13th field is "f_json"' );
239is( $f13->data_type, 'json', 'Field is Json' );
240is( $f13->is_nullable, 1, 'Field can be null' );
241is( $f13->size, 0, 'Size is "0"' );
242is( $f13->default_value, undef, 'Default value is "undef"' );
243is( $f13->is_primary_key, 0, 'Field is not PK' );
244is( $f13->is_foreign_key, 0, 'Field is not FK' );
245
246my $f14 = shift @t1_fields;
247is( $f14->name, 'f_hstore', '14th field is "f_hstore"' );
248is( $f14->data_type, 'hstore', 'Field is hstore' );
249is( $f14->is_nullable, 1, 'Field can be null' );
250is( $f14->size, 0, 'Size is "0"' );
251is( $f14->default_value, undef, 'Default value is "undef"' );
252is( $f14->is_primary_key, 0, 'Field is not PK' );
253is( $f14->is_foreign_key, 0, 'Field is not FK' );
254
9da488f2 255my $f15 = shift @t1_fields;
256is( $f15->name, 'f_numarray', '15th field is "f_numarray"' );
257is( $f15->data_type, 'numeric[]', 'Field is numeric[]' );
258is( $f15->is_nullable, 1, 'Field can be null' );
259is_deeply( [$f15->size], [7,2] , 'Size is "7,2"' );
260is( $f15->default_value, undef, 'Default value is "undef"' );
261is( $f15->is_primary_key, 0, 'Field is not PK' );
262is( $f15->is_foreign_key, 0, 'Field is not FK' );
263
84ef6e4e 264my $f16 = shift @t1_fields;
265is( $f16->name, 'f_uuid', '16th field is "f_uuid"' );
266is( $f16->data_type, 'uuid', 'Field is a UUID' );
267is( $f16->is_nullable, 1, 'Field can be null' );
268is( $f16->size, 0, 'Size is "0"' );
269is( $f16->default_value, undef, 'Default value is "undef"' );
270is( $f16->is_primary_key, 0, 'Field is not PK' );
271is( $f16->is_foreign_key, 0, 'Field is not FK' );
272
273my $f17 = shift @t1_fields;
274is( $f17->name, 'f_time', '17th field is "f_time"' );
275is( $f17->data_type, 'time with time zone', 'Field is a time with time zone' );
276is( $f17->is_nullable, 1, 'Field can be null' );
277is( $f17->size, 0, 'Size is "0"' );
278is( $f17->default_value, undef, 'Default value is "undef"' );
279is( $f17->is_primary_key, 0, 'Field is not PK' );
280is( $f17->is_foreign_key, 0, 'Field is not FK' );
281
282my $f18 = shift @t1_fields;
283is( $f18->name, 'f_time2', '18th field is "f_time2"' );
284is( $f18->data_type, 'time without time zone', 'Field is a time without time zone' );
285is( $f18->is_nullable, 1, 'Field can be null' );
286is( $f18->size, 0, 'Size is "0"' );
287is( $f18->default_value, undef, 'Default value is "undef"' );
288is( $f18->is_primary_key, 0, 'Field is not PK' );
289is( $f18->is_foreign_key, 0, 'Field is not FK' );
290
08d91aad 291# my $fk_ref2 = $f11->foreign_key_reference;
292# isa_ok( $fk_ref2, 'SQL::Translator::Schema::Constraint', 'FK' );
293# is( $fk_ref2->reference_table, 't_test2', 'FK is to "t_test2" table' );
07b82495 294
295my @t1_constraints = $t1->get_constraints;
128e4af7 296is( scalar @t1_constraints, 8, '8 constraints on t_test1' );
07b82495 297
298my $c1 = $t1_constraints[0];
299is( $c1->type, PRIMARY_KEY, 'First constraint is PK' );
300is( join(',', $c1->fields), 'f_serial', 'Constraint is on field "f_serial"' );
301
8b714ee5 302my $c2 = $t1_constraints[4];
07b82495 303is( $c2->type, FOREIGN_KEY, 'Second constraint is foreign key' );
304is( join(',', $c2->fields), 'f_fk1', 'Constraint is on field "f_fk1"' );
305is( $c2->reference_table, 't_test2', 'Constraint is to table "t_test2"' );
306is( join(',', $c2->reference_fields), 'f_id', 'Constraint is to field "f_id"' );
307
8b714ee5 308my $c3 = $t1_constraints[5];
07b82495 309is( $c3->type, UNIQUE, 'Third constraint is unique' );
310is( join(',', $c3->fields), 'f_varchar', 'Constraint is on field "f_varchar"' );
311
8b714ee5 312my $c4 = $t1_constraints[6];
07b82495 313is( $c4->type, FOREIGN_KEY, 'Fourth constraint is foreign key' );
314is( join(',', $c4->fields), 'f_fk2', 'Constraint is on field "f_fk2"' );
315is( $c4->reference_table, 't_test2', 'Constraint is to table "t_test2"' );
316is( join(',', $c4->reference_fields), 'f_id', 'Constraint is to field "f_id"' );
317is( $c4->on_delete, 'cascade', 'On delete: cascade' );
318is( $c4->on_update, 'no_action', 'On delete: no action' );
840447a5 319is( $c4->match_type, 'simple', 'Match type: simple' );
320is( $c4->deferrable, 1, 'Deferrable detected' );
07b82495 321
322my $t2 = shift @tables;
323is( $t2->name, 't_test2', 'Table t_test2 exists' );
324
325my @t2_fields = $t2->get_fields;
a68deb7d 326is( scalar @t2_fields, 4, '4 fields in t_test2' );
07b82495 327
328my $t2_f1 = shift @t2_fields;
329is( $t2_f1->name, 'f_id', 'First field is "f_id"' );
330is( $t2_f1->data_type, 'integer', 'Field is an integer' );
331is( $t2_f1->is_nullable, 0, 'Field cannot be null' );
9bcfe960 332is( $t2_f1->size, 10, 'Size is "10"' );
07b82495 333is( $t2_f1->default_value, undef, 'Default value is undefined' );
334is( $t2_f1->is_primary_key, 1, 'Field is PK' );
335
336my $t2_f2 = shift @t2_fields;
668c5039 337is( $t2_f2->name, 'f_varchar', 'Second field is "f_varchar"' );
07b82495 338is( $t2_f2->data_type, 'varchar', 'Field is an varchar' );
339is( $t2_f2->is_nullable, 1, 'Field can be null' );
340is( $t2_f2->size, 25, 'Size is "25"' );
341is( $t2_f2->default_value, undef, 'Default value is undefined' );
342is( $t2_f2->is_primary_key, 0, 'Field is not PK' );
668c5039 343
344my $t2_f3 = shift @t2_fields;
345is( $t2_f3->name, 'f_int', 'Third field is "f_int"' );
346is( $t2_f3->data_type, 'integer', 'Field is an integer' );
347is( $t2_f3->is_nullable, 1, 'Field can be null' );
348is( $t2_f3->size, 5, 'Size is "5"' );
349is( $t2_f3->default_value, undef, 'Default value is undefined' );
350is( $t2_f3->is_primary_key, 0, 'Field is not PK' );
351
a68deb7d 352my $t2_f4 = shift @t2_fields;
353is( $t2_f4->name, 'f_smallint', 'Fourth field is "f_smallint"' );
354is( $t2_f4->data_type, 'integer', 'Field is an integer' );
355is( $t2_f4->is_nullable, 1, 'Field can be null' );
356is( $t2_f4->size, 5, 'Size is "5"' );
357is( $t2_f4->default_value, 0, 'Default value is 0' );
358is( $t2_f4->is_primary_key, 0, 'Field is not PK' );
359
360
668c5039 361my @t2_constraints = $t2->get_constraints;
362is( scalar @t2_constraints, 3, "Three constraints on table" );
363
364my $t2_c1 = shift @t2_constraints;
365is( $t2_c1->type, NOT_NULL, "Constraint is NOT NULL" );
366
367my $t2_c2 = shift @t2_constraints;
368is( $t2_c2->type, PRIMARY_KEY, "Constraint is a PK" );
369
370my $t2_c3 = shift @t2_constraints;
371is( $t2_c3->type, CHECK_C, "Constraint is a 'CHECK'" );
3e98f7d9 372
373# test temporary tables
374is( exists $schema->get_table('products_1')->extra()->{'temporary'}, "", "Table is NOT temporary");
375is( $schema->get_table('products_2')->extra('temporary'), 1,"Table is TEMP");
376is( $schema->get_table('products_3')->extra('temporary'), 1,"Table is TEMPORARY");
c96cd4a8 377
378# test trigger
379my $trigger = $schema->get_trigger('test_trigger');
380is( $trigger->on_table, 'products_1', "Trigger is on correct table");
381is_deeply( scalar $trigger->database_events, [qw(insert update delete)], "Correct events for trigger");
382
383is( $trigger->perform_action_when, 'before', "Correct time for trigger");
384is( $trigger->scope, 'row', "Correct scope for trigger");
385is( $trigger->action, 'EXECUTE PROCEDURE foo()', "Correct action for trigger");
9da488f2 386
9c05d806 387# test index
388my @indices = $t1->get_indices;
389is(scalar @indices, 3, 'got three indexes');
390
391my $t1_i1 = $indices[0];
392is( $t1_i1->name, 'test_index1', 'First index is "test_index1"' );
393is( join(',', $t1_i1->fields), 'f_varchar', 'Index is on field "f_varchar"' );
394is_deeply( [ $t1_i1->options ], [], 'Index is has no options' );
395
396my $t1_i2 = $indices[1];
397is( $t1_i2->name, 'test_index2', 'Second index is "test_index2"' );
398is( join(',', $t1_i2->fields), 'f_char,f_bool', 'Index is on fields "f_char, f_bool"' );
399is_deeply( [ $t1_i2->options ], [ { using => 'hash' } ], 'Index is using hash method' );
400
401my $t1_i3 = $indices[2];
402is( $t1_i3->name, 'test_index3', 'Third index is "test_index3"' );
403is( join(',', $t1_i3->fields), 'f_bigint,f_tz', 'Index is on fields "f_bigint, f_tz"' );
404is_deeply(
405 [ $t1_i3->options ],
406 [ { using => 'hash' }, { where => "f_bigint = '1' AND f_tz IS NULL" } ],
407 'Index is using hash method and has predicate right'
408);
409
9da488f2 410done_testing;