remove unnecessary if statement
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 12pg_common.t
CommitLineData
a78e3fed 1use strict;
c2849787 2use lib qw(t/lib);
fbd83464 3use dbixcsl_common_tests;
fdd8ff16 4use Test::More;
baff904e 5use List::MoreUtils 'apply';
a78e3fed 6
9e978a19 7my $dsn = $ENV{DBICTEST_PG_DSN} || '';
8my $user = $ENV{DBICTEST_PG_USER} || '';
9my $password = $ENV{DBICTEST_PG_PASS} || '';
a78e3fed 10
fbd83464 11my $tester = dbixcsl_common_tests->new(
a78e3fed 12 vendor => 'Pg',
13 auto_inc_pk => 'SERIAL NOT NULL PRIMARY KEY',
9e978a19 14 dsn => $dsn,
a78e3fed 15 user => $user,
16 password => $password,
fdd8ff16 17 extra => {
18 create => [
19 q{
20 CREATE TABLE pg_loader_test1 (
21 id SERIAL NOT NULL PRIMARY KEY,
22 value VARCHAR(100)
23 )
24 },
25 q{
26 COMMENT ON TABLE pg_loader_test1 IS 'The Table'
27 },
28 q{
29 COMMENT ON COLUMN pg_loader_test1.value IS 'The Column'
30 },
baff904e 31 # Test to make sure data_types that don't need a size => don't
32 # have one.
33 q{
34 CREATE TABLE pg_loader_test2 (
35 id SERIAL NOT NULL PRIMARY KEY,
36 a_bigint BIGINT,
37 an_int8 INT8,
38 a_bigserial BIGSERIAL,
39 a_serial8 SERIAL8,
40 a_bit BIT,
baff904e 41 a_boolean BOOLEAN,
42 a_bool BOOL,
43 a_box BOX,
44 a_bytea BYTEA,
45 a_cidr CIDR,
46 a_circle CIRCLE,
47 a_date DATE,
48 a_double_precision DOUBLE PRECISION,
49 a_float8 FLOAT8,
50 an_inet INET,
51 an_integer INTEGER,
52 an_int INT,
53 an_int4 INT4,
54 an_interval INTERVAL,
55 an_interval_with_precision INTERVAL(2),
56 a_line LINE,
57 an_lseg LSEG,
58 a_macaddr MACADDR,
59 a_money MONEY,
60 a_path PATH,
61 a_point POINT,
62 a_polygon POLYGON,
63 a_real REAL,
64 a_float4 FLOAT4,
65 a_smallint SMALLINT,
66 an_int2 INT2,
67 a_serial SERIAL,
68 a_serial4 SERIAL4,
69 a_text TEXT,
70 a_time TIME,
71 a_time_with_precision TIME(2),
72 a_time_without_time_zone TIME WITHOUT TIME ZONE,
73 a_time_without_time_zone_with_precision TIME(2) WITHOUT TIME ZONE,
74 a_time_with_time_zone TIME WITH TIME ZONE,
75 a_time_with_time_zone_with_precision TIME(2) WITH TIME ZONE,
76 a_timestamp TIMESTAMP,
77 a_timestamp_with_precision TIMESTAMP(2),
78 a_timestamp_without_time_zone TIMESTAMP WITHOUT TIME ZONE,
79 a_timestamp_without_time_zone_with_precision TIMESTAMP(2) WITHOUT TIME ZONE,
80 a_timestamp_with_time_zone TIMESTAMP WITH TIME ZONE,
afb4c5bc 81 a_timestamp_with_time_zone_with_precision TIMESTAMP(2) WITH TIME ZONE,
82 a_bit_varying_with_precision BIT VARYING(2),
83 a_varbit_with_precision VARBIT(2),
84 a_character_varying_with_precision CHARACTER VARYING(2),
85 a_varchar_with_precision VARCHAR(2),
86 a_character_with_precision CHARACTER(2),
87 a_char_with_precision CHAR(2)
baff904e 88 )
89 },
afb4c5bc 90# XXX figure out what to do with DECIMAL(precision, scale) aka
91# NUMERIC(precision, scale)
fdd8ff16 92 ],
baff904e 93 drop => [ qw/ pg_loader_test1 pg_loader_test2 / ],
afb4c5bc 94 count => 54,
fdd8ff16 95 run => sub {
96 my ($schema, $monikers, $classes) = @_;
97
98 my $class = $classes->{pg_loader_test1};
99 my $filename = $schema->_loader->_get_dump_filename($class);
100
101 my $code = do {
102 local ($/, @ARGV) = (undef, $filename);
103 <>;
104 };
105
106 like $code, qr/^=head1 NAME\n\n^$class - The Table\n\n^=cut\n/m,
107 'table comment';
108
79a00530 109 like $code, qr/^=head2 value\n\n(.+:.+\n)+\nThe Column\n\n/m,
110 'column comment and attrs';
baff904e 111
112 my $rsrc = $schema->resultset('PgLoaderTest2')->result_source;
afb4c5bc 113 my @type_columns = grep $_ ne 'id', $rsrc->columns;
baff904e 114 my @without_precision = grep !/_with_precision\z/, @type_columns;
115 my @with_precision = grep /_with_precision\z/, @type_columns;
116 my %with_precision;
117 @with_precision{
118 apply { s/_with_precision\z// } @with_precision
119 } = ();
120
121 for my $col (@without_precision) {
122 my ($data_type) = $col =~ /^an?_(.*)/;
123 ($data_type = uc $data_type) =~ s/_/ /g;
124
125 ok((not exists $rsrc->column_info($col)->{size}),
126 "$data_type " .
127 (exists $with_precision{$col} ? 'without precision ' : '') .
128 "has no 'size' column_info");
129 }
130
131 for my $col (@with_precision) {
132 my ($data_type) = $col =~ /^an?_(.*)_with_precision\z/;
133 ($data_type = uc $data_type) =~ s/_/ /g;
afb4c5bc 134 my $size = $rsrc->column_info($col)->{size};
baff904e 135
afb4c5bc 136 is $size, 2,
137 "$data_type with precision has a correct 'size' column_info";
baff904e 138 }
fdd8ff16 139 },
140 },
a78e3fed 141);
142
9e978a19 143if( !$dsn || !$user ) {
144 $tester->skip_tests('You need to set the DBICTEST_PG_DSN, _USER, and _PASS environment variables');
a78e3fed 145}
146else {
147 $tester->run_tests();
148}