more specific warning filter for loading DBD::InterBase
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 18firebird_common.t
1 use strict;
2 use warnings;
3 use Test::More;
4 use Scope::Guard ();
5 use lib qw(t/lib);
6 use dbixcsl_common_tests;
7
8 my $dbd_interbase_dsn      = $ENV{DBICTEST_FIREBIRD_DSN} || '';
9 my $dbd_interbase_user     = $ENV{DBICTEST_FIREBIRD_USER} || '';
10 my $dbd_interbase_password = $ENV{DBICTEST_FIREBIRD_PASS} || '';
11
12 my $odbc_dsn      = $ENV{DBICTEST_FIREBIRD_ODBC_DSN} || '';
13 my $odbc_user     = $ENV{DBICTEST_FIREBIRD_ODBC_USER} || '';
14 my $odbc_password = $ENV{DBICTEST_FIREBIRD_ODBC_PASS} || '';
15
16 my $schema;
17
18 my $tester = dbixcsl_common_tests->new(
19     vendor      => 'Firebird',
20     auto_inc_pk => 'INTEGER NOT NULL PRIMARY KEY',
21     auto_inc_cb => sub {
22         my ($table, $col) = @_;
23         return (
24             qq{ CREATE GENERATOR gen_${table}_${col} },
25             qq{
26                 CREATE TRIGGER ${table}_bi FOR $table
27                 ACTIVE BEFORE INSERT POSITION 0
28                 AS
29                 BEGIN
30                  IF (NEW.$col IS NULL) THEN
31                   NEW.$col = GEN_ID(gen_${table}_${col},1);
32                 END
33             }
34         );
35     },
36     auto_inc_drop_cb => sub {
37         my ($table, $col) = @_;
38         return (
39             qq{ DROP TRIGGER ${table}_bi },
40             qq{ DROP GENERATOR gen_${table}_${col} },
41         );
42     },
43     null        => '',
44     preserve_case_mode_is_exclusive => 1,
45     quote_char                      => '"',
46     warnings => [ qr/'preserve_case' option/ ],
47     connect_info => [ ($dbd_interbase_dsn ? {
48             dsn         => $dbd_interbase_dsn,
49             user        => $dbd_interbase_user,
50             password    => $dbd_interbase_password,
51             connect_info_opts => { on_connect_call => 'use_softcommit' },
52         } : ()),
53         ($odbc_dsn ? {
54             dsn         => $odbc_dsn,
55             user        => $odbc_user,
56             password    => $odbc_password,
57         } : ()),
58     ],
59     data_types  => {
60         # based on the Interbase Data Definition Guide
61         # http://www.ibphoenix.com/downloads/60DataDef.zip
62         #
63         # Numeric types
64         'smallint'    => { data_type => 'smallint' },
65         'int'         => { data_type => 'integer' },
66         'integer'     => { data_type => 'integer' },
67         'bigint'      => { data_type => 'bigint' },
68         'float'       => { data_type => 'real' },
69         'double precision' =>
70                          { data_type => 'double precision' },
71         'real'        => { data_type => 'real' },
72
73         'float(2)'    => { data_type => 'real' },
74         'float(7)'    => { data_type => 'real' },
75         'float(8)'    => { data_type => 'double precision' },
76
77         'decimal'     => { data_type => 'decimal' },
78         'dec'         => { data_type => 'decimal' },
79         'numeric'     => { data_type => 'numeric' },
80
81         'decimal(3)'   => { data_type => 'decimal', size => [3,0] },
82
83         'decimal(3,3)' => { data_type => 'decimal', size => [3,3] },
84         'dec(3,3)'     => { data_type => 'decimal', size => [3,3] },
85         'numeric(3,3)' => { data_type => 'numeric', size => [3,3] },
86
87         'decimal(6,3)' => { data_type => 'decimal', size => [6,3] },
88         'numeric(6,3)' => { data_type => 'numeric', size => [6,3] },
89
90         'decimal(12,3)' => { data_type => 'decimal', size => [12,3] },
91         'numeric(12,3)' => { data_type => 'numeric', size => [12,3] },
92
93         'decimal(18,18)' => { data_type => 'decimal', size => [18,18] },
94         'dec(18,18)'     => { data_type => 'decimal', size => [18,18] },
95         'numeric(18,18)' => { data_type => 'numeric', size => [18,18] },
96
97         # Date and Time Types
98         'date'        => { data_type => 'date' },
99         'timestamp default current_timestamp'
100                       => { data_type => 'timestamp', default_value => \'current_timestamp' },
101         'time'        => { data_type => 'time' },
102
103         # String Types
104         'char'         => { data_type => 'char',      size => 1  },
105         'char(11)'     => { data_type => 'char',      size => 11 },
106         'varchar(20)'  => { data_type => 'varchar',   size => 20 },
107
108         # Blob types
109         'blob'        => { data_type => 'blob' },
110         'blob sub_type text'
111                       => { data_type => 'blob sub_type text' },
112     },
113     extra => {
114         count  => 6,
115         run    => sub {
116             $schema = shift;
117             my ($monikers, $classes, $self) = @_;
118
119             cleanup_extra();
120
121             my $dbh = $schema->storage->dbh;
122
123 # create a mixed case table
124             $dbh->do($_) for (
125 q{
126     CREATE TABLE "Firebird_Loader_Test1" (
127         "Id" INTEGER NOT NULL PRIMARY KEY,
128         "Foo" INTEGER DEFAULT 42
129     )
130 },
131 q{
132     CREATE GENERATOR "Gen_Firebird_Loader_Test1_Id"
133 },
134 q{
135     CREATE TRIGGER "Firebird_Loader_Test1_BI" for "Firebird_Loader_Test1"
136     ACTIVE BEFORE INSERT POSITION 0
137     AS
138     BEGIN
139      IF (NEW."Id" IS NULL) THEN
140       NEW."Id" = GEN_ID("Gen_Firebird_Loader_Test1_Id",1);
141     END
142 },
143             );
144
145             my $guard = Scope::Guard->new(\&cleanup_extra);
146
147             local $schema->_loader->{preserve_case} = 1;
148             $schema->_loader->_setup;
149
150             $self->rescan_without_warnings($schema);
151
152             ok ((my $rsrc = eval { $schema->resultset('FirebirdLoaderTest1')->result_source }),
153                 'got rsrc for mixed case table');
154
155             ok ((my $col_info = eval { $rsrc->column_info('Id') }),
156                 'got column_info for column Id');
157
158             is $col_info->{accessor}, 'id', 'column Id has lowercase accessor "id"';
159
160             is $col_info->{is_auto_increment}, 1, 'is_auto_increment detected for mixed case trigger';
161
162             is $col_info->{sequence}, 'Gen_Firebird_Loader_Test1_Id', 'correct mixed case sequence name';
163
164             is eval { $rsrc->column_info('Foo')->{default_value} }, 42, 'default_value detected for mixed case column';
165         },
166     },
167 );
168
169 if (not ($dbd_interbase_dsn || $odbc_dsn)) {
170     $tester->skip_tests('You need to set the DBICTEST_FIREBIRD_DSN, _USER and _PASS and/or the DBICTEST_FIREBIRD_ODBC_DSN, _USER and _PASS environment variables');
171 }
172 else {
173     # get rid of stupid warning from InterBase/GetInfo.pm
174     if ($dbd_interbase_dsn) {
175         local $SIG{__WARN__} = sub { warn @_
176             unless $_[0] =~ m|^Use of uninitialized value in sprintf at \S+DBD/InterBase/GetInfo\.pm line \d+\.$| };
177         require DBD::InterBase;
178         require DBD::InterBase::GetInfo;
179     }
180     $tester->run_tests();
181 }
182
183 sub cleanup_extra {
184     $schema->storage->disconnect;
185     my $dbh = $schema->storage->dbh;
186
187     foreach my $stmt (
188         'DROP TRIGGER "Firebird_Loader_Test1_BI"',
189         'DROP GENERATOR "Gen_Firebird_Loader_Test1_Id"',
190         'DROP TABLE "Firebird_Loader_Test1"',
191     ) {
192         eval { $dbh->do($stmt) };
193     }
194 }
195 # vim:et sts=4 sw=4 tw=0: