X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F14postgres-parser.t;h=fd60cb0b3b323d7291df05e0342bf2294f5e117d;hb=1ea76bff59c57c205b8fb8012803dd37699ae450;hp=8d4586d303ee2cbe5cdefeeb058f57f440f726fb;hpb=fcc393cdf3f0a7eb2bea65ab258577a2e6e17334;p=dbsrgits%2FSQL-Translator.git diff --git a/t/14postgres-parser.t b/t/14postgres-parser.t index 8d4586d..fd60cb0 100644 --- a/t/14postgres-parser.t +++ b/t/14postgres-parser.t @@ -5,20 +5,15 @@ use strict; use Test::More; use SQL::Translator; use SQL::Translator::Schema::Constants; +use Test::SQL::Translator qw(maybe_plan); -eval { - require SQL::Translator::Parser::PostgreSQL; +BEGIN { + maybe_plan(134, 'SQL::Translator::Parser::PostgreSQL'); SQL::Translator::Parser::PostgreSQL->import('parse'); -}; -if ($@) { - plan skip_all => "$@"; -} -else { - plan tests => 119; } my $t = SQL::Translator->new( trace => 0 ); -my $sql = q[ +my $sql = q{ -- comment on t_test1 create table t_test1 ( -- this is the primary key @@ -26,13 +21,15 @@ my $sql = q[ f_varchar character varying (255), f_double double precision, f_bigint bigint not null, - f_char character(10) default 'FOO', + f_char character(10) default 'FOO'::character(10), f_bool boolean, f_bin bytea, - f_tz timestamp, + f_tz timestamp default '1970-01-01 00:00:00'::TIMESTAMP, f_text text, f_fk1 integer not null references t_test2 (f_id), - f_dropped text + f_dropped text, + f_timestamp timestamp(0) with time zone, + f_timestamp2 timestamp without time zone ); create table t_test2 ( @@ -43,12 +40,38 @@ my $sql = q[ check (f_int between 1 and 5) ); + CREATE TABLE products_1 ( + product_no integer, + name text, + price numeric + ); + + CREATE TEMP TABLE products_2 ( + product_no integer, + name text, + price numeric + ); + + CREATE TEMPORARY TABLE products_3 ( + product_no integer, + name text, + price numeric + ); + + CREATE TRIGGER test_trigger + BEFORE INSERT OR UPDATE OR DELETE + ON products_1 + FOR EACH ROW + EXECUTE PROCEDURE foo(); + alter table t_test1 add f_fk2 integer; alter table only t_test1 add constraint c_u1 unique (f_varchar); alter table t_test1 add constraint "c_fk2" foreign key (f_fk2) - references t_test2 (f_id) on update no action on delete cascade; + references t_test2 (f_id) match simple + on update no action on delete cascade deferrable; + alter table t_test1 drop column f_dropped restrict; @@ -56,8 +79,8 @@ my $sql = q[ alter table t_test1 alter column f_char drop default; - -- The following are allowed by the grammar - -- but won't do anything... - ky + -- The following are allowed by the grammar + -- but won\'t do anything... - ky alter table t_text1 alter column f_char set not null; @@ -66,7 +89,7 @@ my $sql = q[ alter table t_test1 alter f_char set statistics 10; alter table t_test1 alter f_text set storage extended; - + alter table t_test1 rename column f_text to foo; alter table t_test1 rename to foo; @@ -74,7 +97,9 @@ my $sql = q[ alter table only t_test1 drop constraint foo cascade; alter table t_test1 owner to foo; -]; + + commit; +}; $| = 1; @@ -83,7 +108,7 @@ my $schema = $t->schema; isa_ok( $schema, 'SQL::Translator::Schema', 'Schema object' ); my @tables = $schema->get_tables; -is( scalar @tables, 2, 'Two tables' ); +is( scalar @tables, 5, 'Five tables' ); my $t1 = shift @tables; is( $t1->name, 't_test1', 'Table t_test1 exists' ); @@ -91,7 +116,7 @@ is( $t1->name, 't_test1', 'Table t_test1 exists' ); is( $t1->comments, 'comment on t_test1', 'Table comment exists' ); my @t1_fields = $t1->get_fields; -is( scalar @t1_fields, 11, '11 fields in t_test1' ); +is( scalar @t1_fields, 13, '13 fields in t_test1' ); my $f1 = shift @t1_fields; is( $f1->name, 'f_serial', 'First field is "f_serial"' ); @@ -157,7 +182,7 @@ is( $f8->name, 'f_tz', 'Eighth field is "f_tz"' ); is( $f8->data_type, 'timestamp', 'Field is a timestamp' ); is( $f8->is_nullable, 1, 'Field can be null' ); is( $f8->size, 0, 'Size is "0"' ); -is( $f8->default_value, undef, 'Default value is undefined' ); +is( $f8->default_value, '1970-01-01 00:00:00', 'Default value is 1970-01-01 00:00:00' ); is( $f8->is_primary_key, 0, 'Field is not PK' ); my $f9 = shift @t1_fields; @@ -181,16 +206,26 @@ isa_ok( $fk_ref1, 'SQL::Translator::Schema::Constraint', 'FK' ); is( $fk_ref1->reference_table, 't_test2', 'FK is to "t_test2" table' ); my $f11 = shift @t1_fields; -is( $f11->name, 'f_fk2', 'Eleventh field is "f_fk2"' ); -is( $f11->data_type, 'integer', 'Field is an integer' ); +is( $f11->name, 'f_timestamp', 'Eleventh field is "f_timestamp"' ); +is( $f11->data_type, 'timestamp with time zone', 'Field is a timestamp with time zone' ); is( $f11->is_nullable, 1, 'Field can be null' ); -is( $f11->size, 10, 'Size is "10"' ); -is( $f11->default_value, 'FOO', 'Default value is "FOO"' ); +is( $f11->size, 0, 'Size is "0"' ); +is( $f11->default_value, undef, 'Default value is "undef"' ); is( $f11->is_primary_key, 0, 'Field is not PK' ); -is( $f11->is_foreign_key, 1, 'Field is a FK' ); -my $fk_ref2 = $f11->foreign_key_reference; -isa_ok( $fk_ref2, 'SQL::Translator::Schema::Constraint', 'FK' ); -is( $fk_ref2->reference_table, 't_test2', 'FK is to "t_test2" table' ); +is( $f11->is_foreign_key, 0, 'Field is not FK' ); + +my $f12 = shift @t1_fields; +is( $f12->name, 'f_timestamp2', '12th field is "f_timestamp2"' ); +is( $f12->data_type, 'timestamp without time zone', 'Field is a timestamp without time zone' ); +is( $f12->is_nullable, 1, 'Field can be null' ); +is( $f12->size, 0, 'Size is "0"' ); +is( $f12->default_value, undef, 'Default value is "undef"' ); +is( $f12->is_primary_key, 0, 'Field is not PK' ); +is( $f12->is_foreign_key, 0, 'Field is not FK' ); + +# my $fk_ref2 = $f11->foreign_key_reference; +# isa_ok( $fk_ref2, 'SQL::Translator::Schema::Constraint', 'FK' ); +# is( $fk_ref2->reference_table, 't_test2', 'FK is to "t_test2" table' ); my @t1_constraints = $t1->get_constraints; is( scalar @t1_constraints, 8, '8 constraints on t_test1' ); @@ -216,6 +251,8 @@ is( $c4->reference_table, 't_test2', 'Constraint is to table "t_test2"' ); is( join(',', $c4->reference_fields), 'f_id', 'Constraint is to field "f_id"' ); is( $c4->on_delete, 'cascade', 'On delete: cascade' ); is( $c4->on_update, 'no_action', 'On delete: no action' ); +is( $c4->match_type, 'simple', 'Match type: simple' ); +is( $c4->deferrable, 1, 'Deferrable detected' ); my $t2 = shift @tables; is( $t2->name, 't_test2', 'Table t_test2 exists' ); @@ -258,3 +295,17 @@ is( $t2_c2->type, PRIMARY_KEY, "Constraint is a PK" ); my $t2_c3 = shift @t2_constraints; is( $t2_c3->type, CHECK_C, "Constraint is a 'CHECK'" ); + +# test temporary tables +is( exists $schema->get_table('products_1')->extra()->{'temporary'}, "", "Table is NOT temporary"); +is( $schema->get_table('products_2')->extra('temporary'), 1,"Table is TEMP"); +is( $schema->get_table('products_3')->extra('temporary'), 1,"Table is TEMPORARY"); + +# test trigger +my $trigger = $schema->get_trigger('test_trigger'); +is( $trigger->on_table, 'products_1', "Trigger is on correct table"); +is_deeply( scalar $trigger->database_events, [qw(insert update delete)], "Correct events for trigger"); + +is( $trigger->perform_action_when, 'before', "Correct time for trigger"); +is( $trigger->scope, 'row', "Correct scope for trigger"); +is( $trigger->action, 'EXECUTE PROCEDURE foo()', "Correct action for trigger");