Some aesthetic 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 {
a68deb7d 11 maybe_plan(140, 'SQL::Translator::Parser::PostgreSQL');
fbc0552f 12 SQL::Translator::Parser::PostgreSQL->import('parse');
fbc0552f 13}
f4eb75f3 14
15my $t = SQL::Translator->new( trace => 0 );
c96cd4a8 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,
88ad8255 24 f_char character(10) default 'FOO'::character(10),
f4eb75f3 25 f_bool boolean,
07b82495 26 f_bin bytea,
88ad8255 27 f_tz timestamp default '1970-01-01 00:00:00'::TIMESTAMP,
f4eb75f3 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,
a68deb7d 39 f_smallint smallint default (0)::smallint,
668c5039 40 primary key (f_id),
41 check (f_int between 1 and 5)
f4eb75f3 42 );
43
3e98f7d9 44 CREATE TABLE products_1 (
45 product_no integer,
46 name text,
47 price numeric
48 );
c96cd4a8 49
3e98f7d9 50 CREATE TEMP TABLE products_2 (
51 product_no integer,
52 name text,
53 price numeric
54 );
55
56 CREATE TEMPORARY TABLE products_3 (
57 product_no integer,
58 name text,
59 price numeric
60 );
61
c96cd4a8 62 CREATE TRIGGER test_trigger
63 BEFORE INSERT OR UPDATE OR DELETE
64 ON products_1
65 FOR EACH ROW
66 EXECUTE PROCEDURE foo();
67
b3abc007 68 alter table t_test1 add f_fk2 integer;
69
f4eb75f3 70 alter table only t_test1 add constraint c_u1 unique (f_varchar);
71
b3abc007 72 alter table t_test1 add constraint "c_fk2" foreign key (f_fk2)
840447a5 73 references t_test2 (f_id) match simple
74 on update no action on delete cascade deferrable;
75
b3abc007 76
77 alter table t_test1 drop column f_dropped restrict;
78
79 alter table t_test1 alter column f_fk2 set default 'FOO';
80
81 alter table t_test1 alter column f_char drop default;
82
aee4b66e 83 -- The following are allowed by the grammar
08d91aad 84 -- but won\'t do anything... - ky
b3abc007 85
86 alter table t_text1 alter column f_char set not null;
87
88 alter table t_text1 alter column f_char drop not null;
89
90 alter table t_test1 alter f_char set statistics 10;
91
92 alter table t_test1 alter f_text set storage extended;
c96cd4a8 93
b3abc007 94 alter table t_test1 rename column f_text to foo;
95
96 alter table t_test1 rename to foo;
97
98 alter table only t_test1 drop constraint foo cascade;
99
100 alter table t_test1 owner to foo;
1f5b2625 101
102 commit;
c96cd4a8 103};
f4eb75f3 104
105$| = 1;
106
07b82495 107my $data = parse( $t, $sql );
108my $schema = $t->schema;
109
110isa_ok( $schema, 'SQL::Translator::Schema', 'Schema object' );
111my @tables = $schema->get_tables;
3e98f7d9 112is( scalar @tables, 5, 'Five tables' );
07b82495 113
114my $t1 = shift @tables;
115is( $t1->name, 't_test1', 'Table t_test1 exists' );
116
fcc393cd 117is( $t1->comments, 'comment on t_test1', 'Table comment exists' );
118
07b82495 119my @t1_fields = $t1->get_fields;
08d91aad 120is( scalar @t1_fields, 13, '13 fields in t_test1' );
07b82495 121
122my $f1 = shift @t1_fields;
123is( $f1->name, 'f_serial', 'First field is "f_serial"' );
124is( $f1->data_type, 'integer', 'Field is an integer' );
125is( $f1->is_nullable, 0, 'Field cannot be null' );
9bcfe960 126is( $f1->size, 11, 'Size is "11"' );
07b82495 127is( $f1->default_value, '0', 'Default value is "0"' );
128is( $f1->is_primary_key, 1, 'Field is PK' );
fcc393cd 129is( $f1->comments, 'this is the primary key', 'Comment' );
6d278664 130is( $f1->is_auto_increment, 1, 'Field is auto increment' );
07b82495 131
132my $f2 = shift @t1_fields;
133is( $f2->name, 'f_varchar', 'Second field is "f_varchar"' );
134is( $f2->data_type, 'varchar', 'Field is a varchar' );
135is( $f2->is_nullable, 1, 'Field can be null' );
136is( $f2->size, 255, 'Size is "255"' );
137is( $f2->default_value, undef, 'Default value is undefined' );
138is( $f2->is_primary_key, 0, 'Field is not PK' );
6d278664 139is( $f2->is_auto_increment, 0, 'Field is not auto increment' );
07b82495 140
141my $f3 = shift @t1_fields;
142is( $f3->name, 'f_double', 'Third field is "f_double"' );
143is( $f3->data_type, 'float', 'Field is a float' );
144is( $f3->is_nullable, 1, 'Field can be null' );
9bcfe960 145is( $f3->size, 20, 'Size is "20"' );
07b82495 146is( $f3->default_value, undef, 'Default value is undefined' );
147is( $f3->is_primary_key, 0, 'Field is not PK' );
148
149my $f4 = shift @t1_fields;
150is( $f4->name, 'f_bigint', 'Fourth field is "f_bigint"' );
151is( $f4->data_type, 'integer', 'Field is an integer' );
152is( $f4->is_nullable, 0, 'Field cannot be null' );
9bcfe960 153is( $f4->size, 20, 'Size is "20"' );
07b82495 154is( $f4->default_value, undef, 'Default value is undefined' );
155is( $f4->is_primary_key, 0, 'Field is not PK' );
156
157my $f5 = shift @t1_fields;
158is( $f5->name, 'f_char', 'Fifth field is "f_char"' );
159is( $f5->data_type, 'char', 'Field is char' );
160is( $f5->is_nullable, 1, 'Field can be null' );
161is( $f5->size, 10, 'Size is "10"' );
162is( $f5->default_value, undef, 'Default value is undefined' );
163is( $f5->is_primary_key, 0, 'Field is not PK' );
164
165my $f6 = shift @t1_fields;
166is( $f6->name, 'f_bool', 'Sixth field is "f_bool"' );
167is( $f6->data_type, 'boolean', 'Field is a boolean' );
168is( $f6->is_nullable, 1, 'Field can be null' );
169is( $f6->size, 0, 'Size is "0"' );
170is( $f6->default_value, undef, 'Default value is undefined' );
171is( $f6->is_primary_key, 0, 'Field is not PK' );
172
173my $f7 = shift @t1_fields;
174is( $f7->name, 'f_bin', 'Seventh field is "f_bin"' );
175is( $f7->data_type, 'bytea', 'Field is bytea' );
176is( $f7->is_nullable, 1, 'Field can be null' );
177is( $f7->size, 0, 'Size is "0"' );
178is( $f7->default_value, undef, 'Default value is undefined' );
179is( $f7->is_primary_key, 0, 'Field is not PK' );
180
181my $f8 = shift @t1_fields;
182is( $f8->name, 'f_tz', 'Eighth field is "f_tz"' );
183is( $f8->data_type, 'timestamp', 'Field is a timestamp' );
184is( $f8->is_nullable, 1, 'Field can be null' );
185is( $f8->size, 0, 'Size is "0"' );
88ad8255 186is( $f8->default_value, '1970-01-01 00:00:00', 'Default value is 1970-01-01 00:00:00' );
07b82495 187is( $f8->is_primary_key, 0, 'Field is not PK' );
188
189my $f9 = shift @t1_fields;
190is( $f9->name, 'f_text', 'Ninth field is "f_text"' );
191is( $f9->data_type, 'text', 'Field is text' );
192is( $f9->is_nullable, 1, 'Field can be null' );
60e3ded0 193is( $f9->size, 64000, 'Size is "64,000"' );
07b82495 194is( $f9->default_value, undef, 'Default value is undefined' );
195is( $f9->is_primary_key, 0, 'Field is not PK' );
196
197my $f10 = shift @t1_fields;
198is( $f10->name, 'f_fk1', 'Tenth field is "f_fk1"' );
199is( $f10->data_type, 'integer', 'Field is an integer' );
200is( $f10->is_nullable, 0, 'Field cannot be null' );
9bcfe960 201is( $f10->size, 10, 'Size is "10"' );
07b82495 202is( $f10->default_value, undef, 'Default value is undefined' );
203is( $f10->is_primary_key, 0, 'Field is not PK' );
204is( $f10->is_foreign_key, 1, 'Field is a FK' );
205my $fk_ref1 = $f10->foreign_key_reference;
206isa_ok( $fk_ref1, 'SQL::Translator::Schema::Constraint', 'FK' );
207is( $fk_ref1->reference_table, 't_test2', 'FK is to "t_test2" table' );
208
209my $f11 = shift @t1_fields;
08d91aad 210is( $f11->name, 'f_timestamp', 'Eleventh field is "f_timestamp"' );
b5a782a0 211is( $f11->data_type, 'timestamp with time zone', 'Field is a timestamp with time zone' );
07b82495 212is( $f11->is_nullable, 1, 'Field can be null' );
08d91aad 213is( $f11->size, 0, 'Size is "0"' );
214is( $f11->default_value, undef, 'Default value is "undef"' );
07b82495 215is( $f11->is_primary_key, 0, 'Field is not PK' );
08d91aad 216is( $f11->is_foreign_key, 0, 'Field is not FK' );
b5a782a0 217
218my $f12 = shift @t1_fields;
219is( $f12->name, 'f_timestamp2', '12th field is "f_timestamp2"' );
220is( $f12->data_type, 'timestamp without time zone', 'Field is a timestamp without time zone' );
221is( $f12->is_nullable, 1, 'Field can be null' );
222is( $f12->size, 0, 'Size is "0"' );
223is( $f12->default_value, undef, 'Default value is "undef"' );
224is( $f12->is_primary_key, 0, 'Field is not PK' );
225is( $f12->is_foreign_key, 0, 'Field is not FK' );
226
08d91aad 227# my $fk_ref2 = $f11->foreign_key_reference;
228# isa_ok( $fk_ref2, 'SQL::Translator::Schema::Constraint', 'FK' );
229# is( $fk_ref2->reference_table, 't_test2', 'FK is to "t_test2" table' );
07b82495 230
231my @t1_constraints = $t1->get_constraints;
128e4af7 232is( scalar @t1_constraints, 8, '8 constraints on t_test1' );
07b82495 233
234my $c1 = $t1_constraints[0];
235is( $c1->type, PRIMARY_KEY, 'First constraint is PK' );
236is( join(',', $c1->fields), 'f_serial', 'Constraint is on field "f_serial"' );
237
8b714ee5 238my $c2 = $t1_constraints[4];
07b82495 239is( $c2->type, FOREIGN_KEY, 'Second constraint is foreign key' );
240is( join(',', $c2->fields), 'f_fk1', 'Constraint is on field "f_fk1"' );
241is( $c2->reference_table, 't_test2', 'Constraint is to table "t_test2"' );
242is( join(',', $c2->reference_fields), 'f_id', 'Constraint is to field "f_id"' );
243
8b714ee5 244my $c3 = $t1_constraints[5];
07b82495 245is( $c3->type, UNIQUE, 'Third constraint is unique' );
246is( join(',', $c3->fields), 'f_varchar', 'Constraint is on field "f_varchar"' );
247
8b714ee5 248my $c4 = $t1_constraints[6];
07b82495 249is( $c4->type, FOREIGN_KEY, 'Fourth constraint is foreign key' );
250is( join(',', $c4->fields), 'f_fk2', 'Constraint is on field "f_fk2"' );
251is( $c4->reference_table, 't_test2', 'Constraint is to table "t_test2"' );
252is( join(',', $c4->reference_fields), 'f_id', 'Constraint is to field "f_id"' );
253is( $c4->on_delete, 'cascade', 'On delete: cascade' );
254is( $c4->on_update, 'no_action', 'On delete: no action' );
840447a5 255is( $c4->match_type, 'simple', 'Match type: simple' );
256is( $c4->deferrable, 1, 'Deferrable detected' );
07b82495 257
258my $t2 = shift @tables;
259is( $t2->name, 't_test2', 'Table t_test2 exists' );
260
261my @t2_fields = $t2->get_fields;
a68deb7d 262is( scalar @t2_fields, 4, '4 fields in t_test2' );
07b82495 263
264my $t2_f1 = shift @t2_fields;
265is( $t2_f1->name, 'f_id', 'First field is "f_id"' );
266is( $t2_f1->data_type, 'integer', 'Field is an integer' );
267is( $t2_f1->is_nullable, 0, 'Field cannot be null' );
9bcfe960 268is( $t2_f1->size, 10, 'Size is "10"' );
07b82495 269is( $t2_f1->default_value, undef, 'Default value is undefined' );
270is( $t2_f1->is_primary_key, 1, 'Field is PK' );
271
272my $t2_f2 = shift @t2_fields;
668c5039 273is( $t2_f2->name, 'f_varchar', 'Second field is "f_varchar"' );
07b82495 274is( $t2_f2->data_type, 'varchar', 'Field is an varchar' );
275is( $t2_f2->is_nullable, 1, 'Field can be null' );
276is( $t2_f2->size, 25, 'Size is "25"' );
277is( $t2_f2->default_value, undef, 'Default value is undefined' );
278is( $t2_f2->is_primary_key, 0, 'Field is not PK' );
668c5039 279
280my $t2_f3 = shift @t2_fields;
281is( $t2_f3->name, 'f_int', 'Third field is "f_int"' );
282is( $t2_f3->data_type, 'integer', 'Field is an integer' );
283is( $t2_f3->is_nullable, 1, 'Field can be null' );
284is( $t2_f3->size, 5, 'Size is "5"' );
285is( $t2_f3->default_value, undef, 'Default value is undefined' );
286is( $t2_f3->is_primary_key, 0, 'Field is not PK' );
287
a68deb7d 288my $t2_f4 = shift @t2_fields;
289is( $t2_f4->name, 'f_smallint', 'Fourth field is "f_smallint"' );
290is( $t2_f4->data_type, 'integer', 'Field is an integer' );
291is( $t2_f4->is_nullable, 1, 'Field can be null' );
292is( $t2_f4->size, 5, 'Size is "5"' );
293is( $t2_f4->default_value, 0, 'Default value is 0' );
294is( $t2_f4->is_primary_key, 0, 'Field is not PK' );
295
296
668c5039 297my @t2_constraints = $t2->get_constraints;
298is( scalar @t2_constraints, 3, "Three constraints on table" );
299
300my $t2_c1 = shift @t2_constraints;
301is( $t2_c1->type, NOT_NULL, "Constraint is NOT NULL" );
302
303my $t2_c2 = shift @t2_constraints;
304is( $t2_c2->type, PRIMARY_KEY, "Constraint is a PK" );
305
306my $t2_c3 = shift @t2_constraints;
307is( $t2_c3->type, CHECK_C, "Constraint is a 'CHECK'" );
3e98f7d9 308
309# test temporary tables
310is( exists $schema->get_table('products_1')->extra()->{'temporary'}, "", "Table is NOT temporary");
311is( $schema->get_table('products_2')->extra('temporary'), 1,"Table is TEMP");
312is( $schema->get_table('products_3')->extra('temporary'), 1,"Table is TEMPORARY");
c96cd4a8 313
314# test trigger
315my $trigger = $schema->get_trigger('test_trigger');
316is( $trigger->on_table, 'products_1', "Trigger is on correct table");
317is_deeply( scalar $trigger->database_events, [qw(insert update delete)], "Correct events for trigger");
318
319is( $trigger->perform_action_when, 'before', "Correct time for trigger");
320is( $trigger->scope, 'row', "Correct scope for trigger");
321is( $trigger->action, 'EXECUTE PROCEDURE foo()', "Correct action for trigger");