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