handle column accessor collisions with UNIVERSAL methods
[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
118             cleanup_extra();
119
120             my $dbh = $schema->storage->dbh;
121
122 # create a mixed case table
123             $dbh->do($_) for (
124 q{
125     CREATE TABLE "Firebird_Loader_Test1" (
126         "Id" INTEGER NOT NULL PRIMARY KEY,
127         "Foo" INTEGER DEFAULT 42
128     )
129 },
130 q{
131     CREATE GENERATOR "Gen_Firebird_Loader_Test1_Id"
132 },
133 q{
134     CREATE TRIGGER "Firebird_Loader_Test1_BI" for "Firebird_Loader_Test1"
135     ACTIVE BEFORE INSERT POSITION 0
136     AS
137     BEGIN
138      IF (NEW."Id" IS NULL) THEN
139       NEW."Id" = GEN_ID("Gen_Firebird_Loader_Test1_Id",1);
140     END
141 },
142             );
143
144             my $guard = Scope::Guard->new(\&cleanup_extra);
145
146             local $schema->_loader->{preserve_case} = 1;
147             $schema->_loader->_setup;
148
149             {
150                 # FIXME - need to remove blind trap (can not test firebird yet)
151                 local $SIG{__WARN__} = sub {};
152                 $schema->rescan;
153             }
154
155             ok ((my $rsrc = eval { $schema->resultset('FirebirdLoaderTest1')->result_source }),
156                 'got rsrc for mixed case table');
157
158             ok ((my $col_info = eval { $rsrc->column_info('Id') }),
159                 'got column_info for column Id');
160
161             is $col_info->{accessor}, 'id', 'column Id has lowercase accessor "id"';
162
163             is $col_info->{is_auto_increment}, 1, 'is_auto_increment detected for mixed case trigger';
164
165             is $col_info->{sequence}, 'Gen_Firebird_Loader_Test1_Id', 'correct mixed case sequence name';
166
167             is eval { $rsrc->column_info('Foo')->{default_value} }, 42, 'default_value detected for mixed case column';
168         },
169     },
170 );
171
172 if (not ($dbd_interbase_dsn || $odbc_dsn)) {
173     $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');
174 }
175 else {
176     # get rid of stupid warning from InterBase/GetInfo.pm
177     if ($dbd_interbase_dsn) {
178         # FIXME - need to remove blind trap (can not test firebird yet)
179         local $SIG{__WARN__} = sub {};
180         require DBD::InterBase;
181         require DBD::InterBase::GetInfo;
182     }
183     $tester->run_tests();
184 }
185
186 sub cleanup_extra {
187     $schema->storage->disconnect;
188     my $dbh = $schema->storage->dbh;
189
190     foreach my $stmt (
191         'DROP TRIGGER "Firebird_Loader_Test1_BI"',
192         'DROP GENERATOR "Gen_Firebird_Loader_Test1_Id"',
193         'DROP TABLE "Firebird_Loader_Test1"',
194     ) {
195         eval { $dbh->do($stmt) };
196     }
197 }