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