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