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