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