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