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