Moved POD around, added all options for all parsers and non-graphical
[dbsrgits/SQL-Translator.git] / t / 14postgres-parser.t
index 534f572..1ba550a 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl
 
 use strict;
-use Test::More tests => 105;
+use Test::More tests => 117;
 use SQL::Translator;
 use SQL::Translator::Schema::Constants;
 use SQL::Translator::Parser::PostgreSQL qw(parse);
@@ -25,7 +25,9 @@ my $sql = q[
     create table t_test2 (
         f_id integer NOT NULL,
         f_varchar varchar(25),
-        primary key (f_id)
+        f_int smallint,
+        primary key (f_id),
+        check (f_int between 1 and 5)
     );
 
     alter table only t_test1 add constraint c_u1 unique (f_varchar);
@@ -53,9 +55,10 @@ my $f1 = shift @t1_fields;
 is( $f1->name, 'f_serial', 'First field is "f_serial"' );
 is( $f1->data_type, 'integer', 'Field is an integer' );
 is( $f1->is_nullable, 0, 'Field cannot be null' );
-is( $f1->size, 4, 'Size is "4"' );
+is( $f1->size, 11, 'Size is "11"' );
 is( $f1->default_value, '0', 'Default value is "0"' );
 is( $f1->is_primary_key, 1, 'Field is PK' );
+is( $f1->is_auto_increment, 1, 'Field is auto increment' );
 
 my $f2 = shift @t1_fields;
 is( $f2->name, 'f_varchar', 'Second field is "f_varchar"' );
@@ -64,12 +67,13 @@ is( $f2->is_nullable, 1, 'Field can be null' );
 is( $f2->size, 255, 'Size is "255"' );
 is( $f2->default_value, undef, 'Default value is undefined' );
 is( $f2->is_primary_key, 0, 'Field is not PK' );
+is( $f2->is_auto_increment, 0, 'Field is not auto increment' );
 
 my $f3 = shift @t1_fields;
 is( $f3->name, 'f_double', 'Third field is "f_double"' );
 is( $f3->data_type, 'float', 'Field is a float' );
 is( $f3->is_nullable, 1, 'Field can be null' );
-is( $f3->size, 8, 'Size is "8"' );
+is( $f3->size, 20, 'Size is "20"' );
 is( $f3->default_value, undef, 'Default value is undefined' );
 is( $f3->is_primary_key, 0, 'Field is not PK' );
 
@@ -77,7 +81,7 @@ my $f4 = shift @t1_fields;
 is( $f4->name, 'f_bigint', 'Fourth field is "f_bigint"' );
 is( $f4->data_type, 'integer', 'Field is an integer' );
 is( $f4->is_nullable, 0, 'Field cannot be null' );
-is( $f4->size, 8, 'Size is "8"' );
+is( $f4->size, 20, 'Size is "20"' );
 is( $f4->default_value, undef, 'Default value is undefined' );
 is( $f4->is_primary_key, 0, 'Field is not PK' );
 
@@ -117,7 +121,7 @@ my $f9 = shift @t1_fields;
 is( $f9->name, 'f_text', 'Ninth field is "f_text"' );
 is( $f9->data_type, 'text', 'Field is text' );
 is( $f9->is_nullable, 1, 'Field can be null' );
-is( $f9->size, 0, 'Size is "0"' );
+is( $f9->size, 64000, 'Size is "64,000"' );
 is( $f9->default_value, undef, 'Default value is undefined' );
 is( $f9->is_primary_key, 0, 'Field is not PK' );
 
@@ -125,7 +129,7 @@ my $f10 = shift @t1_fields;
 is( $f10->name, 'f_fk1', 'Tenth field is "f_fk1"' );
 is( $f10->data_type, 'integer', 'Field is an integer' );
 is( $f10->is_nullable, 0, 'Field cannot be null' );
-is( $f10->size, 4, 'Size is "4"' );
+is( $f10->size, 10, 'Size is "10"' );
 is( $f10->default_value, undef, 'Default value is undefined' );
 is( $f10->is_primary_key, 0, 'Field is not PK' );
 is( $f10->is_foreign_key, 1, 'Field is a FK' );
@@ -137,7 +141,7 @@ 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->is_nullable, 1, 'Field can be null' );
-is( $f11->size, 4, 'Size is "4"' );
+is( $f11->size, 10, 'Size is "10"' );
 is( $f11->default_value, undef, 'Default value is undefined' );
 is( $f11->is_primary_key, 0, 'Field is not PK' );
 is( $f11->is_foreign_key, 1, 'Field is a FK' );
@@ -174,20 +178,40 @@ my $t2 = shift @tables;
 is( $t2->name, 't_test2', 'Table t_test2 exists' );
 
 my @t2_fields = $t2->get_fields;
-is( scalar @t2_fields, 2, '2 fields in t_test2' );
+is( scalar @t2_fields, 3, '3 fields in t_test2' );
 
 my $t2_f1 = shift @t2_fields;
 is( $t2_f1->name, 'f_id', 'First field is "f_id"' );
 is( $t2_f1->data_type, 'integer', 'Field is an integer' );
 is( $t2_f1->is_nullable, 0, 'Field cannot be null' );
-is( $t2_f1->size, 4, 'Size is "4"' );
+is( $t2_f1->size, 10, 'Size is "10"' );
 is( $t2_f1->default_value, undef, 'Default value is undefined' );
 is( $t2_f1->is_primary_key, 1, 'Field is PK' );
 
 my $t2_f2 = shift @t2_fields;
-is( $t2_f2->name, 'f_varchar', 'First field is "f_varchar"' );
+is( $t2_f2->name, 'f_varchar', 'Second field is "f_varchar"' );
 is( $t2_f2->data_type, 'varchar', 'Field is an varchar' );
 is( $t2_f2->is_nullable, 1, 'Field can be null' );
 is( $t2_f2->size, 25, 'Size is "25"' );
 is( $t2_f2->default_value, undef, 'Default value is undefined' );
 is( $t2_f2->is_primary_key, 0, 'Field is not PK' );
+
+my $t2_f3 = shift @t2_fields;
+is( $t2_f3->name, 'f_int', 'Third field is "f_int"' );
+is( $t2_f3->data_type, 'integer', 'Field is an integer' );
+is( $t2_f3->is_nullable, 1, 'Field can be null' );
+is( $t2_f3->size, 5, 'Size is "5"' );
+is( $t2_f3->default_value, undef, 'Default value is undefined' );
+is( $t2_f3->is_primary_key, 0, 'Field is not PK' );
+
+my @t2_constraints = $t2->get_constraints;
+is( scalar @t2_constraints, 3, "Three constraints on table" );
+
+my $t2_c1 = shift @t2_constraints;
+is( $t2_c1->type, NOT_NULL, "Constraint is NOT NULL" );
+
+my $t2_c2 = shift @t2_constraints;
+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'" );