revert previous revision
[dbsrgits/DBIx-Class.git] / t / bindtype_columns.t
CommitLineData
6e399b4f 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
9fdf90df 8my ($dsn, $dbuser, $dbpass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
6e399b4f 9
9fdf90df 10plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
11 unless ($dsn && $dbuser);
12
b1e86b3e 13plan tests => 6;
9fdf90df 14
77d76d0f 15my $schema = DBICTest::Schema->connection($dsn, $dbuser, $dbpass, { AutoCommit => 1 });
9fdf90df 16
eda28767 17my $dbh = $schema->storage->dbh;
9fdf90df 18
bb452615 19{
20 local $SIG{__WARN__} = sub {};
a65c1894 21 $dbh->do('DROP TABLE IF EXISTS bindtype_test');
6ec7d1bb 22
23 # the blob/clob are for reference only, will be useful when we switch to SQLT and can test Oracle along the way
bb452615 24 $dbh->do(qq[
6ec7d1bb 25 CREATE TABLE bindtype_test
bb452615 26 (
6ec7d1bb 27 id serial NOT NULL PRIMARY KEY,
28 bytea bytea NULL,
29 blob bytea NULL,
30 clob text NULL
bb452615 31 );
32 ],{ RaiseError => 1, PrintError => 1 });
33}
9fdf90df 34
6ffb5be5 35my $big_long_string = "\x00\x01\x02 abcd" x 125000;
36
37my $new;
38# test inserting a row
39{
40 $new = $schema->resultset('BindType')->create({ bytea => $big_long_string });
41
42 ok($new->id, "Created a bytea row");
43 is($new->bytea, $big_long_string, "Set the blob correctly.");
44}
45
b1e86b3e 46# test retrieval of the bytea column
47{
48 my $row = $schema->resultset('BindType')->find({ id => $new->id });
49 is($row->get_column('bytea'), $big_long_string, "Created the blob correctly.");
50}
9fdf90df 51
6ffb5be5 52TODO: {
53 local $TODO =
54 'Passing bind attributes to $sth->bind_param() should be implemented (it only works in $storage->insert ATM)';
b1e86b3e 55
6ffb5be5 56 my $rs = $schema->resultset('BindType')->search({ bytea => $big_long_string });
b1e86b3e 57
6ffb5be5 58 # search on the bytea column (select)
59 {
60 my $row = $rs->first;
61 is($row ? $row->id : undef, $new->id, "Found the row searching on the bytea column.");
62 }
b1e86b3e 63
6ffb5be5 64 # search on the bytea column (update)
65 {
66 my $new_big_long_string = $big_long_string . "2";
67 $schema->txn_do(sub {
68 $rs->update({ bytea => $new_big_long_string });
69 my $row = $schema->resultset('BindType')->find({ id => $new->id });
70 is($row ? $row->get_column('bytea') : undef, $new_big_long_string,
71 "Updated the row correctly (searching on the bytea column)."
72 );
73 $schema->txn_rollback;
74 });
75 }
b1e86b3e 76
6ffb5be5 77 # search on the bytea column (delete)
78 {
79 $schema->txn_do(sub {
80 $rs->delete;
81 my $row = $schema->resultset('BindType')->find({ id => $new->id });
82 is($row, undef, "Deleted the row correctly (searching on the bytea column).");
83 $schema->txn_rollback;
84 });
85 }
86}
9fdf90df 87
6ec7d1bb 88$dbh->do("DROP TABLE bindtype_test");