better DT inflation for Firebird and _ping
[dbsrgits/DBIx-Class.git] / t / 750firebird.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Test::Exception;
6 use lib qw(t/lib);
7 use DBICTest;
8 use Scope::Guard ();
9
10 # tests stolen from 749sybase_asa.t
11
12 my ($dsn, $user, $pass)    = @ENV{map { "DBICTEST_FIREBIRD_${_}" }      qw/DSN USER PASS/};
13 my ($dsn2, $user2, $pass2) = @ENV{map { "DBICTEST_FIREBIRD_ODBC_${_}" } qw/DSN USER PASS/};
14
15 plan skip_all => <<'EOF' unless $dsn || $dsn2;
16 Set $ENV{DBICTEST_FIREBIRD_DSN} and/or $ENV{DBICTEST_FIREBIRD_ODBC_DSN},
17 _USER and _PASS to run these tests
18 EOF
19
20 my @info = (
21   [ $dsn,  $user,  $pass  ],
22   [ $dsn2, $user2, $pass2 ],
23 );
24
25 my $schema;
26
27 foreach my $conn_idx (0..1) {
28   my ($dsn, $user, $pass) = @{ $info[$conn_idx] };
29
30   next unless $dsn;
31
32   $schema = DBICTest::Schema->connect($dsn, $user, $pass, {
33     auto_savepoint => 1
34   });
35   my $dbh = $schema->storage->dbh;
36
37   my $sg = Scope::Guard->new(\&cleanup);
38
39   eval { $dbh->do("DROP TABLE artist") };
40   $dbh->do(<<EOF);
41   CREATE TABLE artist (
42     artistid INT PRIMARY KEY,
43     name VARCHAR(255),
44     charfield CHAR(10),
45     rank INT DEFAULT 13
46   )
47 EOF
48   eval { $dbh->do("DROP GENERATOR gen_artist_artistid") };
49   $dbh->do('CREATE GENERATOR gen_artist_artistid');
50   eval { $dbh->do("DROP TRIGGER artist_bi") };
51   $dbh->do(<<EOF);
52   CREATE TRIGGER artist_bi FOR artist
53   ACTIVE BEFORE INSERT POSITION 0
54   AS
55   BEGIN
56    IF (NEW.artistid IS NULL) THEN
57     NEW.artistid = GEN_ID(gen_artist_artistid,1);
58   END
59 EOF
60
61   my $ars = $schema->resultset('Artist');
62   is ( $ars->count, 0, 'No rows at first' );
63
64 # test primary key handling
65   my $new = $ars->create({ name => 'foo' });
66   ok($new->artistid, "Auto-PK worked");
67
68 # test savepoints
69 #  eval {
70 #    $schema->txn_do(sub {
71 #      eval {
72 #        $schema->txn_do(sub {
73 #          $ars->create({ name => 'in_savepoint' });
74 #          die "rolling back savepoint";
75 #        });
76 #      };
77 #      ok ((not $ars->search({ name => 'in_savepoint' })->first),
78 #        'savepoint rolled back');
79 #      $ars->create({ name => 'in_outer_txn' });
80 #      die "rolling back outer txn";
81 #    });
82 #  };
83 #  ok ((not $ars->search({ name => 'in_outer_txn' })->first),
84 #    'outer txn rolled back');
85
86 # test explicit key spec
87   $new = $ars->create ({ name => 'bar', artistid => 66 });
88   is($new->artistid, 66, 'Explicit PK worked');
89   $new->discard_changes;
90   is($new->artistid, 66, 'Explicit PK assigned');
91
92 # test populate
93   lives_ok (sub {
94     my @pop;
95     for (1..2) {
96       push @pop, { name => "Artist_$_" };
97     }
98     $ars->populate (\@pop);
99   });
100
101 # test populate with explicit key
102   lives_ok (sub {
103     my @pop;
104     for (1..2) {
105       push @pop, { name => "Artist_expkey_$_", artistid => 100 + $_ };
106     }
107     # XXX why does insert_bulk not work here?
108     my @foo = $ars->populate (\@pop);
109   });
110
111 # count what we did so far
112   is ($ars->count, 6, 'Simple count works');
113
114 # test LIMIT support
115   my $lim = $ars->search( {},
116     {
117       rows => 3,
118       offset => 4,
119       order_by => 'artistid'
120     }
121   );
122   is( $lim->count, 2, 'ROWS+OFFSET count ok' );
123   is( $lim->all, 2, 'Number of ->all objects matches count' );
124
125 # test iterator
126   $lim->reset;
127   is( $lim->next->artistid, 101, "iterator->next ok" );
128   is( $lim->next->artistid, 102, "iterator->next ok" );
129   is( $lim->next, undef, "next past end of resultset ok" );
130
131 # test empty insert
132   {
133     local $ars->result_source->column_info('artistid')->{is_auto_increment} = 0;
134
135     lives_ok { $ars->create({}) }
136       'empty insert works';
137   }
138
139 # test blobs (stolen from 73oracle.t)
140   SKIP: {
141     eval { $dbh->do('DROP TABLE bindtype_test2') };
142     $dbh->do(q[
143     CREATE TABLE bindtype_test2
144     (
145       id     INT PRIMARY KEY,
146       bytea  INT,
147       a_blob BLOB,
148       a_clob BLOB SUB_TYPE TEXT
149     )
150     ]);
151
152     my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) );
153     $binstr{'large'} = $binstr{'small'} x 1024;
154
155     my $maxloblen = length $binstr{'large'};
156     local $dbh->{'LongReadLen'} = $maxloblen;
157
158     my $rs = $schema->resultset('BindType2');
159     my $id = 0;
160
161     foreach my $type (qw( a_blob a_clob )) {
162       foreach my $size (qw( small large )) {
163         $id++;
164
165 # turn off horrendous binary DBIC_TRACE output
166         local $schema->storage->{debug} = 0;
167
168         lives_ok { $rs->create( { 'id' => $id, $type => $binstr{$size} } ) }
169         "inserted $size $type without dying";
170
171         ok($rs->find($id)->$type eq $binstr{$size}, "verified inserted $size $type" );
172       }
173     }
174   }
175 }
176
177 done_testing;
178
179 # clean up our mess
180
181 sub cleanup {
182   my $dbh;
183   eval {
184     $schema->storage->disconnect; # to avoid object FOO is in use errors
185     $dbh = $schema->storage->dbh;
186   };
187   return unless $dbh;
188
189   eval { $dbh->do('DROP TRIGGER artist_bi') };
190   diag $@ if $@;
191
192   eval { $dbh->do('DROP GENERATOR gen_artist_artistid') };
193   diag $@ if $@;
194
195   foreach my $table (qw/artist bindtype_test/) {
196     eval { $dbh->do("DROP TABLE $table") };
197     #diag $@ if $@;
198   }
199 }