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