1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2 use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_rdbms_oracle';
12 use DBICTest::Schema::BindType;
14 DBICTest::Schema::BindType->add_columns(
28 $ENV{NLS_SORT} = "BINARY";
29 $ENV{NLS_COMP} = "BINARY";
30 $ENV{NLS_LANG} = "AMERICAN";
32 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_ORA_${_}" } qw/DSN USER PASS/};
35 my $si = DBICTest::Schema->connect($dsn, $user, $pass)->storage->_server_info;
36 $si->{normalized_dbms_version}
37 or die "Unparseable Oracle server version: $si->{dbms_version}\n";
41 # the recyclebin (new for 10g) sometimes comes in the way
42 my $on_connect_sql = $v >= 10 ? ["ALTER SESSION SET recyclebin = OFF"] : [];
44 # iterate all tests on following options
46 { on_connect_do => $on_connect_sql },
47 { quote_char => '"', on_connect_do => $on_connect_sql },
50 # keep a database handle open for cleanup
54 for my $opt (@tryopt) {
55 my $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opt);
57 $dbh = $schema->storage->dbh;
58 my $q = $schema->storage->sql_maker->quote_char || '';
62 _run_blob_tests($schema, $opt);
67 my ($schema, $opt) = @_;
68 my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) );
69 $binstr{'large'} = $binstr{'small'} x 1024;
71 my $maxloblen = (length $binstr{'large'}) + 5;
72 note "Localizing LongReadLen to $maxloblen to avoid truncation of test data";
73 local $dbh->{'LongReadLen'} = $maxloblen;
75 my $rs = $schema->resultset('BindType');
77 if ($DBD::Oracle::VERSION eq '1.23') {
78 throws_ok { $rs->create({ id => 1, blob => $binstr{large} }) }
80 'throws on blob insert with DBD::Oracle == 1.23';
81 skip 'buggy BLOB support in DBD::Oracle 1.23', 1;
84 my $q = $schema->storage->sql_maker->quote_char || '';
85 local $TODO = 'Something is confusing column bindtype assignment when quotes are active'
86 . ': https://rt.cpan.org/Ticket/Display.html?id=64206'
90 foreach my $size (qw( small large )) {
93 local $schema->storage->{debug} = 0
96 my $str = $binstr{$size};
98 $rs->create( { 'id' => $id, blob => "blob:$str", clob => "clob:$str", blb2 => "blb2:$str", clb2 => "clb2:$str" } )
99 } "inserted $size without dying";
101 my %kids = %{$schema->storage->_dbh->{CachedKids}};
102 my @objs = $rs->search({ blob => "blob:$str", clob => "clob:$str" })->all;
104 $schema->storage->_dbh->{CachedKids},
106 'multi-part LOB equality query was not cached',
107 ) if $size eq 'large';
108 is @objs, 1, 'One row found matching on both LOBs';
109 ok (try { $objs[0]->blob }||'' eq "blob:$str", 'blob inserted/retrieved correctly');
110 ok (try { $objs[0]->clob }||'' eq "clob:$str", 'clob inserted/retrieved correctly');
111 ok (try { $objs[0]->clb2 }||'' eq "clb2:$str", "clb2 inserted correctly");
112 ok (try { $objs[0]->blb2 }||'' eq "blb2:$str", "blb2 inserted correctly");
115 local $TODO = '-like comparison on blobs not tested before ora 10 (fails on 8i)'
116 if $schema->storage->_server_info->{normalized_dbms_version} < 10;
119 @objs = $rs->search({ clob => { -like => 'clob:%' } })->all;
120 ok (@objs, 'rows found matching CLOB with a LIKE query');
121 } 'Query with like on blob succeeds';
124 ok(my $subq = $rs->search(
125 { blob => "blob:$str", clob => "clob:$str" },
127 from => \ "(SELECT * FROM ${q}bindtype_test${q} WHERE ${q}id${q} != ?) ${q}me${q}",
128 bind => [ [ {} => 12345678 ] ],
130 )->get_column('id')->as_query);
132 @objs = $rs->search({ id => { -in => $subq } })->all;
133 is (@objs, 1, 'One row found matching on both LOBs as a subquery');
136 $rs->search({ id => $id, blob => "blob:$str", clob => "clob:$str" })
137 ->update({ blob => 'updated blob', clob => 'updated clob', clb2 => 'updated clb2', blb2 => 'updated blb2' });
138 } 'blob UPDATE with blobs in WHERE clause survived';
140 @objs = $rs->search({ blob => "updated blob", clob => 'updated clob' })->all;
141 is @objs, 1, 'found updated row';
142 ok (try { $objs[0]->blob }||'' eq "updated blob", 'blob updated/retrieved correctly');
143 ok (try { $objs[0]->clob }||'' eq "updated clob", 'clob updated/retrieved correctly');
144 ok (try { $objs[0]->clb2 }||'' eq "updated clb2", "clb2 updated correctly");
145 ok (try { $objs[0]->blb2 }||'' eq "updated blb2", "blb2 updated correctly");
148 $rs->search({ id => $id })
149 ->update({ blob => 're-updated blob', clob => 're-updated clob' });
150 } 'blob UPDATE without blobs in WHERE clause survived';
152 @objs = $rs->search({ blob => 're-updated blob', clob => 're-updated clob' })->all;
153 is @objs, 1, 'found updated row';
154 ok (try { $objs[0]->blob }||'' eq 're-updated blob', 'blob updated/retrieved correctly');
155 ok (try { $objs[0]->clob }||'' eq 're-updated clob', 'clob updated/retrieved correctly');
158 $rs->search({ blob => "re-updated blob", clob => "re-updated clob" })
160 } 'blob DELETE with WHERE clause survived';
161 @objs = $rs->search({ blob => "re-updated blob", clob => 're-updated clob' })->all;
162 is @objs, 0, 'row deleted successfully';
176 $dbh->do("CREATE TABLE ${q}bindtype_test${q} (${q}id${q} integer NOT NULL PRIMARY KEY, ${q}bytea${q} integer NULL, ${q}blob${q} blob NULL, ${q}blb2${q} blob NULL, ${q}clob${q} clob NULL, ${q}clb2${q} clob NULL, ${q}a_memo${q} integer NULL)");
182 my $dbh = shift || return;
184 for my $q ('', '"') {
186 "DROP TABLE ${q}bindtype_test${q}",
188 eval { $dbh -> do ($_) } for @clean;
194 local $SIG{__WARN__} = sub {};