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