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