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; |
fbc0552f |
8 | |
9 | eval { |
10 | require SQL::Translator::Parser::PostgreSQL; |
11 | SQL::Translator::Parser::PostgreSQL->import('parse'); |
12 | }; |
13 | if ($@) { |
14 | plan skip_all => "$@"; |
15 | } |
16 | else { |
17 | plan tests => 117; |
18 | } |
f4eb75f3 |
19 | |
20 | my $t = SQL::Translator->new( trace => 0 ); |
21 | my $sql = q[ |
22 | create table t_test1 ( |
07b82495 |
23 | f_serial serial NOT NULL default '0' primary key, |
f4eb75f3 |
24 | f_varchar character varying (255), |
25 | f_double double precision, |
07b82495 |
26 | f_bigint bigint not null, |
b3abc007 |
27 | f_char character(10) default 'FOO', |
f4eb75f3 |
28 | f_bool boolean, |
07b82495 |
29 | f_bin bytea, |
f4eb75f3 |
30 | f_tz timestamp, |
31 | f_text text, |
32 | f_fk1 integer not null references t_test2 (f_id), |
b3abc007 |
33 | f_dropped text |
f4eb75f3 |
34 | ); |
35 | |
36 | create table t_test2 ( |
37 | f_id integer NOT NULL, |
38 | f_varchar varchar(25), |
668c5039 |
39 | f_int smallint, |
40 | primary key (f_id), |
41 | check (f_int between 1 and 5) |
f4eb75f3 |
42 | ); |
43 | |
b3abc007 |
44 | alter table t_test1 add f_fk2 integer; |
45 | |
f4eb75f3 |
46 | alter table only t_test1 add constraint c_u1 unique (f_varchar); |
47 | |
b3abc007 |
48 | alter table t_test1 add constraint "c_fk2" foreign key (f_fk2) |
f4eb75f3 |
49 | references t_test2 (f_id) on update no action on delete cascade; |
b3abc007 |
50 | |
51 | alter table t_test1 drop column f_dropped restrict; |
52 | |
53 | alter table t_test1 alter column f_fk2 set default 'FOO'; |
54 | |
55 | alter table t_test1 alter column f_char drop default; |
56 | |
57 | -- The following are allowed by the grammar |
58 | -- but won't do anything... - ky |
59 | |
60 | alter table t_text1 alter column f_char set not null; |
61 | |
62 | alter table t_text1 alter column f_char drop not null; |
63 | |
64 | alter table t_test1 alter f_char set statistics 10; |
65 | |
66 | alter table t_test1 alter f_text set storage extended; |
67 | |
68 | alter table t_test1 rename column f_text to foo; |
69 | |
70 | alter table t_test1 rename to foo; |
71 | |
72 | alter table only t_test1 drop constraint foo cascade; |
73 | |
74 | alter table t_test1 owner to foo; |
f4eb75f3 |
75 | ]; |
76 | |
77 | $| = 1; |
78 | |
07b82495 |
79 | my $data = parse( $t, $sql ); |
80 | my $schema = $t->schema; |
81 | |
82 | isa_ok( $schema, 'SQL::Translator::Schema', 'Schema object' ); |
83 | my @tables = $schema->get_tables; |
84 | is( scalar @tables, 2, 'Two tables' ); |
85 | |
86 | my $t1 = shift @tables; |
87 | is( $t1->name, 't_test1', 'Table t_test1 exists' ); |
88 | |
89 | my @t1_fields = $t1->get_fields; |
90 | is( scalar @t1_fields, 11, '11 fields in t_test1' ); |
91 | |
92 | my $f1 = shift @t1_fields; |
93 | is( $f1->name, 'f_serial', 'First field is "f_serial"' ); |
94 | is( $f1->data_type, 'integer', 'Field is an integer' ); |
95 | is( $f1->is_nullable, 0, 'Field cannot be null' ); |
9bcfe960 |
96 | is( $f1->size, 11, 'Size is "11"' ); |
07b82495 |
97 | is( $f1->default_value, '0', 'Default value is "0"' ); |
98 | is( $f1->is_primary_key, 1, 'Field is PK' ); |
6d278664 |
99 | is( $f1->is_auto_increment, 1, 'Field is auto increment' ); |
07b82495 |
100 | |
101 | my $f2 = shift @t1_fields; |
102 | is( $f2->name, 'f_varchar', 'Second field is "f_varchar"' ); |
103 | is( $f2->data_type, 'varchar', 'Field is a varchar' ); |
104 | is( $f2->is_nullable, 1, 'Field can be null' ); |
105 | is( $f2->size, 255, 'Size is "255"' ); |
106 | is( $f2->default_value, undef, 'Default value is undefined' ); |
107 | is( $f2->is_primary_key, 0, 'Field is not PK' ); |
6d278664 |
108 | is( $f2->is_auto_increment, 0, 'Field is not auto increment' ); |
07b82495 |
109 | |
110 | my $f3 = shift @t1_fields; |
111 | is( $f3->name, 'f_double', 'Third field is "f_double"' ); |
112 | is( $f3->data_type, 'float', 'Field is a float' ); |
113 | is( $f3->is_nullable, 1, 'Field can be null' ); |
9bcfe960 |
114 | is( $f3->size, 20, 'Size is "20"' ); |
07b82495 |
115 | is( $f3->default_value, undef, 'Default value is undefined' ); |
116 | is( $f3->is_primary_key, 0, 'Field is not PK' ); |
117 | |
118 | my $f4 = shift @t1_fields; |
119 | is( $f4->name, 'f_bigint', 'Fourth field is "f_bigint"' ); |
120 | is( $f4->data_type, 'integer', 'Field is an integer' ); |
121 | is( $f4->is_nullable, 0, 'Field cannot be null' ); |
9bcfe960 |
122 | is( $f4->size, 20, 'Size is "20"' ); |
07b82495 |
123 | is( $f4->default_value, undef, 'Default value is undefined' ); |
124 | is( $f4->is_primary_key, 0, 'Field is not PK' ); |
125 | |
126 | my $f5 = shift @t1_fields; |
127 | is( $f5->name, 'f_char', 'Fifth field is "f_char"' ); |
128 | is( $f5->data_type, 'char', 'Field is char' ); |
129 | is( $f5->is_nullable, 1, 'Field can be null' ); |
130 | is( $f5->size, 10, 'Size is "10"' ); |
131 | is( $f5->default_value, undef, 'Default value is undefined' ); |
132 | is( $f5->is_primary_key, 0, 'Field is not PK' ); |
133 | |
134 | my $f6 = shift @t1_fields; |
135 | is( $f6->name, 'f_bool', 'Sixth field is "f_bool"' ); |
136 | is( $f6->data_type, 'boolean', 'Field is a boolean' ); |
137 | is( $f6->is_nullable, 1, 'Field can be null' ); |
138 | is( $f6->size, 0, 'Size is "0"' ); |
139 | is( $f6->default_value, undef, 'Default value is undefined' ); |
140 | is( $f6->is_primary_key, 0, 'Field is not PK' ); |
141 | |
142 | my $f7 = shift @t1_fields; |
143 | is( $f7->name, 'f_bin', 'Seventh field is "f_bin"' ); |
144 | is( $f7->data_type, 'bytea', 'Field is bytea' ); |
145 | is( $f7->is_nullable, 1, 'Field can be null' ); |
146 | is( $f7->size, 0, 'Size is "0"' ); |
147 | is( $f7->default_value, undef, 'Default value is undefined' ); |
148 | is( $f7->is_primary_key, 0, 'Field is not PK' ); |
149 | |
150 | my $f8 = shift @t1_fields; |
151 | is( $f8->name, 'f_tz', 'Eighth field is "f_tz"' ); |
152 | is( $f8->data_type, 'timestamp', 'Field is a timestamp' ); |
153 | is( $f8->is_nullable, 1, 'Field can be null' ); |
154 | is( $f8->size, 0, 'Size is "0"' ); |
155 | is( $f8->default_value, undef, 'Default value is undefined' ); |
156 | is( $f8->is_primary_key, 0, 'Field is not PK' ); |
157 | |
158 | my $f9 = shift @t1_fields; |
159 | is( $f9->name, 'f_text', 'Ninth field is "f_text"' ); |
160 | is( $f9->data_type, 'text', 'Field is text' ); |
161 | is( $f9->is_nullable, 1, 'Field can be null' ); |
60e3ded0 |
162 | is( $f9->size, 64000, 'Size is "64,000"' ); |
07b82495 |
163 | is( $f9->default_value, undef, 'Default value is undefined' ); |
164 | is( $f9->is_primary_key, 0, 'Field is not PK' ); |
165 | |
166 | my $f10 = shift @t1_fields; |
167 | is( $f10->name, 'f_fk1', 'Tenth field is "f_fk1"' ); |
168 | is( $f10->data_type, 'integer', 'Field is an integer' ); |
169 | is( $f10->is_nullable, 0, 'Field cannot be null' ); |
9bcfe960 |
170 | is( $f10->size, 10, 'Size is "10"' ); |
07b82495 |
171 | is( $f10->default_value, undef, 'Default value is undefined' ); |
172 | is( $f10->is_primary_key, 0, 'Field is not PK' ); |
173 | is( $f10->is_foreign_key, 1, 'Field is a FK' ); |
174 | my $fk_ref1 = $f10->foreign_key_reference; |
175 | isa_ok( $fk_ref1, 'SQL::Translator::Schema::Constraint', 'FK' ); |
176 | is( $fk_ref1->reference_table, 't_test2', 'FK is to "t_test2" table' ); |
177 | |
178 | my $f11 = shift @t1_fields; |
179 | is( $f11->name, 'f_fk2', 'Eleventh field is "f_fk2"' ); |
180 | is( $f11->data_type, 'integer', 'Field is an integer' ); |
181 | is( $f11->is_nullable, 1, 'Field can be null' ); |
9bcfe960 |
182 | is( $f11->size, 10, 'Size is "10"' ); |
b3abc007 |
183 | is( $f11->default_value, 'FOO', 'Default value is "FOO"' ); |
07b82495 |
184 | is( $f11->is_primary_key, 0, 'Field is not PK' ); |
185 | is( $f11->is_foreign_key, 1, 'Field is a FK' ); |
186 | my $fk_ref2 = $f11->foreign_key_reference; |
187 | isa_ok( $fk_ref2, 'SQL::Translator::Schema::Constraint', 'FK' ); |
188 | is( $fk_ref2->reference_table, 't_test2', 'FK is to "t_test2" table' ); |
189 | |
190 | my @t1_constraints = $t1->get_constraints; |
128e4af7 |
191 | is( scalar @t1_constraints, 8, '8 constraints on t_test1' ); |
07b82495 |
192 | |
193 | my $c1 = $t1_constraints[0]; |
194 | is( $c1->type, PRIMARY_KEY, 'First constraint is PK' ); |
195 | is( join(',', $c1->fields), 'f_serial', 'Constraint is on field "f_serial"' ); |
196 | |
8b714ee5 |
197 | my $c2 = $t1_constraints[4]; |
07b82495 |
198 | is( $c2->type, FOREIGN_KEY, 'Second constraint is foreign key' ); |
199 | is( join(',', $c2->fields), 'f_fk1', 'Constraint is on field "f_fk1"' ); |
200 | is( $c2->reference_table, 't_test2', 'Constraint is to table "t_test2"' ); |
201 | is( join(',', $c2->reference_fields), 'f_id', 'Constraint is to field "f_id"' ); |
202 | |
8b714ee5 |
203 | my $c3 = $t1_constraints[5]; |
07b82495 |
204 | is( $c3->type, UNIQUE, 'Third constraint is unique' ); |
205 | is( join(',', $c3->fields), 'f_varchar', 'Constraint is on field "f_varchar"' ); |
206 | |
8b714ee5 |
207 | my $c4 = $t1_constraints[6]; |
07b82495 |
208 | is( $c4->type, FOREIGN_KEY, 'Fourth constraint is foreign key' ); |
209 | is( join(',', $c4->fields), 'f_fk2', 'Constraint is on field "f_fk2"' ); |
210 | is( $c4->reference_table, 't_test2', 'Constraint is to table "t_test2"' ); |
211 | is( join(',', $c4->reference_fields), 'f_id', 'Constraint is to field "f_id"' ); |
212 | is( $c4->on_delete, 'cascade', 'On delete: cascade' ); |
213 | is( $c4->on_update, 'no_action', 'On delete: no action' ); |
214 | |
215 | my $t2 = shift @tables; |
216 | is( $t2->name, 't_test2', 'Table t_test2 exists' ); |
217 | |
218 | my @t2_fields = $t2->get_fields; |
668c5039 |
219 | is( scalar @t2_fields, 3, '3 fields in t_test2' ); |
07b82495 |
220 | |
221 | my $t2_f1 = shift @t2_fields; |
222 | is( $t2_f1->name, 'f_id', 'First field is "f_id"' ); |
223 | is( $t2_f1->data_type, 'integer', 'Field is an integer' ); |
224 | is( $t2_f1->is_nullable, 0, 'Field cannot be null' ); |
9bcfe960 |
225 | is( $t2_f1->size, 10, 'Size is "10"' ); |
07b82495 |
226 | is( $t2_f1->default_value, undef, 'Default value is undefined' ); |
227 | is( $t2_f1->is_primary_key, 1, 'Field is PK' ); |
228 | |
229 | my $t2_f2 = shift @t2_fields; |
668c5039 |
230 | is( $t2_f2->name, 'f_varchar', 'Second field is "f_varchar"' ); |
07b82495 |
231 | is( $t2_f2->data_type, 'varchar', 'Field is an varchar' ); |
232 | is( $t2_f2->is_nullable, 1, 'Field can be null' ); |
233 | is( $t2_f2->size, 25, 'Size is "25"' ); |
234 | is( $t2_f2->default_value, undef, 'Default value is undefined' ); |
235 | is( $t2_f2->is_primary_key, 0, 'Field is not PK' ); |
668c5039 |
236 | |
237 | my $t2_f3 = shift @t2_fields; |
238 | is( $t2_f3->name, 'f_int', 'Third field is "f_int"' ); |
239 | is( $t2_f3->data_type, 'integer', 'Field is an integer' ); |
240 | is( $t2_f3->is_nullable, 1, 'Field can be null' ); |
241 | is( $t2_f3->size, 5, 'Size is "5"' ); |
242 | is( $t2_f3->default_value, undef, 'Default value is undefined' ); |
243 | is( $t2_f3->is_primary_key, 0, 'Field is not PK' ); |
244 | |
245 | my @t2_constraints = $t2->get_constraints; |
246 | is( scalar @t2_constraints, 3, "Three constraints on table" ); |
247 | |
248 | my $t2_c1 = shift @t2_constraints; |
249 | is( $t2_c1->type, NOT_NULL, "Constraint is NOT NULL" ); |
250 | |
251 | my $t2_c2 = shift @t2_constraints; |
252 | is( $t2_c2->type, PRIMARY_KEY, "Constraint is a PK" ); |
253 | |
254 | my $t2_c3 = shift @t2_constraints; |
255 | is( $t2_c3->type, CHECK_C, "Constraint is a 'CHECK'" ); |