1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
use strict;
use warnings;
use Test::More;
use Test::Exception;
use Scope::Guard ();
use Try::Tiny;
use DBIx::Class::Optional::Dependencies ();
use lib qw(t/lib);
use DBICTest;
my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_SQLANYWHERE_${_}" } qw/DSN USER PASS/};
my ($dsn2, $user2, $pass2) = @ENV{map { "DBICTEST_SQLANYWHERE_ODBC_${_}" } qw/DSN USER PASS/};
plan skip_all => 'Test needs ' .
(join ' or ', map { $_ ? $_ : () }
DBIx::Class::Optional::Dependencies->req_missing_for('test_rdbms_sqlanywhere'),
DBIx::Class::Optional::Dependencies->req_missing_for('test_rdbms_sqlanywhere_odbc'))
unless
$dsn && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_sqlanywhere')
or
$dsn2 && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_sqlanywhere_odbc')
or
(not $dsn || $dsn2);
DBICTest::Schema->load_classes('ArtistGUID');
# tests stolen from 748informix.t
plan skip_all => <<'EOF' unless $dsn || $dsn2;
Set $ENV{DBICTEST_SQLANYWHERE_DSN} and/or $ENV{DBICTEST_SQLANYWHERE_ODBC_DSN},
_USER and _PASS to run these tests
EOF
my @info = (
[ $dsn, $user, $pass ],
[ $dsn2, $user2, $pass2 ],
);
my $schema;
foreach my $info (@info) {
my ($dsn, $user, $pass) = @$info;
next unless $dsn;
$schema = DBICTest::Schema->connect($dsn, $user, $pass, {
auto_savepoint => 1
});
my $guard = Scope::Guard->new(sub{ cleanup($schema) });
my $dbh = $schema->storage->dbh;
eval { $dbh->do("DROP TABLE artist") };
$dbh->do(<<EOF);
CREATE TABLE artist (
artistid INT IDENTITY PRIMARY KEY,
name VARCHAR(255) NULL,
charfield CHAR(10) NULL,
rank INT DEFAULT 13
)
EOF
my $ars = $schema->resultset('Artist');
is ( $ars->count, 0, 'No rows at first' );
# test primary key handling
my $new = $ars->create({ name => 'foo' });
ok($new->artistid, "Auto-PK worked");
# test explicit key spec
$new = $ars->create ({ name => 'bar', artistid => 66 });
is($new->artistid, 66, 'Explicit PK worked');
$new->discard_changes;
is($new->artistid, 66, 'Explicit PK assigned');
# test savepoints
throws_ok {
$schema->txn_do(sub {
eval {
$schema->txn_do(sub {
$ars->create({ name => 'in_savepoint' });
die "rolling back savepoint";
});
};
ok ((not $ars->search({ name => 'in_savepoint' })->first),
'savepoint rolled back');
$ars->create({ name => 'in_outer_txn' });
die "rolling back outer txn";
});
} qr/rolling back outer txn/,
'correct exception for rollback';
ok ((not $ars->search({ name => 'in_outer_txn' })->first),
'outer txn rolled back');
# test populate
lives_ok (sub {
my @pop;
for (1..2) {
push @pop, { name => "Artist_$_" };
}
$ars->populate (\@pop);
});
# test populate with explicit key
lives_ok (sub {
my @pop;
for (1..2) {
push @pop, { name => "Artist_expkey_$_", artistid => 100 + $_ };
}
$ars->populate (\@pop);
});
# count what we did so far
is ($ars->count, 6, 'Simple count works');
# test LIMIT support
my $lim = $ars->search( {},
{
rows => 3,
offset => 4,
order_by => 'artistid'
}
);
is( $lim->count, 2, 'ROWS+OFFSET count ok' );
is( $lim->all, 2, 'Number of ->all objects matches count' );
# test iterator
$lim->reset;
is( $lim->next->artistid, 101, "iterator->next ok" );
is( $lim->next->artistid, 102, "iterator->next ok" );
is( $lim->next, undef, "next past end of resultset ok" );
# test empty insert
{
local $ars->result_source->column_info('artistid')->{is_auto_increment} = 0;
lives_ok { $ars->create({}) }
'empty insert works';
}
# test blobs (stolen from 73oracle.t)
eval { $dbh->do('DROP TABLE bindtype_test') };
$dbh->do(qq[
CREATE TABLE bindtype_test
(
id INT NOT NULL PRIMARY KEY,
bytea INT NULL,
blob LONG BINARY NULL,
clob LONG VARCHAR NULL,
a_memo INT NULL
)
],{ RaiseError => 1, PrintError => 1 });
my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) );
$binstr{'large'} = $binstr{'small'} x 1024;
my $maxloblen = length $binstr{'large'};
local $dbh->{'LongReadLen'} = $maxloblen;
my $rs = $schema->resultset('BindType');
my $id = 0;
foreach my $type (qw( blob clob )) {
foreach my $size (qw( small large )) {
$id++;
# turn off horrendous binary DBIC_TRACE output
local $schema->storage->{debug} = 0;
lives_ok { $rs->create( { 'id' => $id, $type => $binstr{$size} } ) }
"inserted $size $type without dying";
ok($rs->find($id)->$type eq $binstr{$size}, "verified inserted $size $type" );
}
}
my @uuid_types = qw/uniqueidentifier uniqueidentifierstr/;
# test uniqueidentifiers (and the cursor_class).
for my $uuid_type (@uuid_types) {
local $schema->source('ArtistGUID')->column_info('artistid')->{data_type}
= $uuid_type;
local $schema->source('ArtistGUID')->column_info('a_guid')->{data_type}
= $uuid_type;
$schema->storage->dbh_do (sub {
my ($storage, $dbh) = @_;
eval { $dbh->do("DROP TABLE artist_guid") };
$dbh->do(<<"SQL");
CREATE TABLE artist_guid (
artistid $uuid_type NOT NULL,
name VARCHAR(100),
rank INT NOT NULL DEFAULT '13',
charfield CHAR(10) NULL,
a_guid $uuid_type,
primary key(artistid)
)
SQL
});
local $TODO = 'something wrong with uniqueidentifierstr over ODBC'
if $dsn =~ /:ODBC:/ && $uuid_type eq 'uniqueidentifierstr';
my $row;
lives_ok {
$row = $schema->resultset('ArtistGUID')->create({ name => 'mtfnpy' })
} 'created a row with a GUID';
ok(
eval { $row->artistid },
'row has GUID PK col populated',
);
diag $@ if $@;
ok(
eval { $row->a_guid },
'row has a GUID col with auto_nextval populated',
);
diag $@ if $@;
my $row_from_db = try { $schema->resultset('ArtistGUID')
->search({ name => 'mtfnpy' })->first }
catch { diag $_ };
is try { $row_from_db->artistid }, $row->artistid,
'PK GUID round trip (via ->search->next)';
is try { $row_from_db->a_guid }, $row->a_guid,
'NON-PK GUID round trip (via ->search->next)';
$row_from_db = try { $schema->resultset('ArtistGUID')
->find($row->artistid) }
catch { diag $_ };
is try { $row_from_db->artistid }, $row->artistid,
'PK GUID round trip (via ->find)';
is try { $row_from_db->a_guid }, $row->a_guid,
'NON-PK GUID round trip (via ->find)';
($row_from_db) = try { $schema->resultset('ArtistGUID')
->search({ name => 'mtfnpy' })->all }
catch { diag $_ };
is try { $row_from_db->artistid }, $row->artistid,
'PK GUID round trip (via ->search->all)';
is try { $row_from_db->a_guid }, $row->a_guid,
'NON-PK GUID round trip (via ->search->all)';
}
}
done_testing;
sub cleanup {
my $schema = shift;
eval { $schema->storage->dbh->do("DROP TABLE $_") }
for qw/artist artist_guid bindtype_test/;
}
|