10 # tests stolen from 749sybase_asa.t
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/};
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.
19 WARNING: this test creates and drops the tables "artist", "bindtype_test" and
20 "sequence_test"; the generators "gen_artist_artistid", "pkid1_seq", "pkid2_seq"
21 and "nonpkid_seq" and the trigger "artist_bi".
25 [ $dsn, $user, $pass ],
26 [ $dsn2, $user2, $pass2 ],
31 foreach my $conn_idx (0..$#info) {
32 my ($dsn, $user, $pass) = @{ $info[$conn_idx] || [] };
36 $schema = DBICTest::Schema->connect($dsn, $user, $pass, {
40 on_connect_call => 'use_softcommit',
42 my $dbh = $schema->storage->dbh;
44 my $sg = Scope::Guard->new(\&cleanup);
46 eval { $dbh->do(q[DROP TABLE "artist"]) };
48 CREATE TABLE "artist" (
49 "artistid" INT PRIMARY KEY,
55 eval { $dbh->do(q[DROP GENERATOR "gen_artist_artistid"]) };
56 $dbh->do('CREATE GENERATOR "gen_artist_artistid"');
57 eval { $dbh->do('DROP TRIGGER "artist_bi"') };
59 CREATE TRIGGER "artist_bi" FOR "artist"
60 ACTIVE BEFORE INSERT POSITION 0
63 IF (NEW."artistid" IS NULL) THEN
64 NEW."artistid" = GEN_ID("gen_artist_artistid",1);
67 eval { $dbh->do('DROP TABLE "sequence_test"') };
69 CREATE TABLE "sequence_test" (
76 $dbh->do('ALTER TABLE "sequence_test" ADD CONSTRAINT "sequence_test_constraint" PRIMARY KEY ("pkid1", "pkid2")');
77 eval { $dbh->do('DROP GENERATOR "pkid1_seq"') };
78 eval { $dbh->do('DROP GENERATOR "pkid2_seq"') };
79 eval { $dbh->do('DROP GENERATOR "nonpkid_seq"') };
80 $dbh->do('CREATE GENERATOR "pkid1_seq"');
81 $dbh->do('CREATE GENERATOR "pkid2_seq"');
82 $dbh->do('SET GENERATOR "pkid2_seq" TO 9');
83 $dbh->do('CREATE GENERATOR "nonpkid_seq"');
84 $dbh->do('SET GENERATOR "nonpkid_seq" TO 19');
86 my $ars = $schema->resultset('Artist');
87 is ( $ars->count, 0, 'No rows at first' );
89 # test primary key handling
90 my $new = $ars->create({ name => 'foo' });
91 ok($new->artistid, "Auto-PK worked");
93 # test auto increment using generators WITHOUT triggers
95 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo' });
96 is($st->pkid1, $_, "Firebird Auto-PK without trigger: First primary key");
97 is($st->pkid2, $_ + 9, "Firebird Auto-PK without trigger: Second primary key");
98 is($st->nonpkid, $_ + 19, "Firebird Auto-PK without trigger: Non-primary key");
100 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo', pkid1 => 55 });
101 is($st->pkid1, 55, "Firebird Auto-PK without trigger: First primary key set manually");
105 $schema->txn_do(sub {
107 $schema->txn_do(sub {
108 $ars->create({ name => 'in_savepoint' });
109 die "rolling back savepoint";
112 ok ((not $ars->search({ name => 'in_savepoint' })->first),
113 'savepoint rolled back');
114 $ars->create({ name => 'in_outer_txn' });
115 die "rolling back outer txn";
117 } qr/rolling back outer txn/,
118 'correct exception for rollback';
120 ok ((not $ars->search({ name => 'in_outer_txn' })->first),
121 'outer txn rolled back');
123 # test explicit key spec
124 $new = $ars->create ({ name => 'bar', artistid => 66 });
125 is($new->artistid, 66, 'Explicit PK worked');
126 $new->discard_changes;
127 is($new->artistid, 66, 'Explicit PK assigned');
131 $new->update({ name => 'baz' })
133 $new->discard_changes;
134 is $new->name, 'baz', 'row updated';
140 push @pop, { name => "Artist_$_" };
142 $ars->populate (\@pop);
145 # test populate with explicit key
149 push @pop, { name => "Artist_expkey_$_", artistid => 100 + $_ };
151 $ars->populate (\@pop);
154 # count what we did so far
155 is ($ars->count, 6, 'Simple count works');
157 # test ResultSet UPDATE
159 $ars->search({ name => 'foo' })->update({ rank => 4 });
161 is eval { $ars->search({ name => 'foo' })->first->rank }, 4;
162 } 'Can update a column';
164 my ($updated) = $schema->resultset('Artist')->search({name => 'foo'});
165 is eval { $updated->rank }, 4, 'and the update made it to the database';
169 my $lim = $ars->search( {},
173 order_by => 'artistid'
176 is( $lim->count, 2, 'ROWS+OFFSET count ok' );
177 is( $lim->all, 2, 'Number of ->all objects matches count' );
181 is( eval { $lim->next->artistid }, 101, "iterator->next ok" );
182 is( eval { $lim->next->artistid }, 102, "iterator->next ok" );
183 is( $lim->next, undef, "next past end of resultset ok" );
185 # test nested cursors
187 my $rs1 = $ars->search({}, { order_by => { -asc => 'artistid' }});
189 my $rs2 = $ars->search({ artistid => $rs1->next->artistid }, {
190 order_by => { -desc => 'artistid' }
193 is $rs2->next->artistid, 1, 'nested cursors';
198 my $row = $ars->create({});
200 } 'empty insert works';
202 # test inferring the generator from the trigger source and using it with
205 local $ars->result_source->column_info('artistid')->{auto_nextval} = 1;
208 my $row = $ars->create({ name => 'introspecting generator' });
210 } 'inferring generator from trigger source works';
213 # test blobs (stolen from 73oracle.t)
214 eval { $dbh->do('DROP TABLE "bindtype_test"') };
216 CREATE TABLE "bindtype_test"
218 "id" INT PRIMARY KEY,
221 "clob" BLOB SUB_TYPE TEXT
225 my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) );
226 $binstr{'large'} = $binstr{'small'} x 1024;
228 my $maxloblen = length $binstr{'large'};
229 local $dbh->{'LongReadLen'} = $maxloblen;
231 my $rs = $schema->resultset('BindType');
234 foreach my $type (qw( blob clob )) {
235 foreach my $size (qw( small large )) {
238 # turn off horrendous binary DBIC_TRACE output
239 local $schema->storage->{debug} = 0;
241 lives_ok { $rs->create( { 'id' => $id, $type => $binstr{$size} } ) }
242 "inserted $size $type without dying";
244 ok($rs->find($id)->$type eq $binstr{$size}, "verified inserted $size $type" );
256 $schema->storage->disconnect; # to avoid object FOO is in use errors
257 $dbh = $schema->storage->dbh;
261 eval { $dbh->do('DROP TRIGGER "artist_bi"') };
264 foreach my $generator (qw/gen_artist_artistid pkid1_seq pkid2_seq
266 eval { $dbh->do(qq{DROP GENERATOR "$generator"}) };
270 foreach my $table (qw/artist bindtype_test sequence_test/) {
271 eval { $dbh->do(qq[DROP TABLE "$table"]) };