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