revert previous revision
[dbsrgits/DBIx-Class.git] / t / bindtype_columns.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use lib qw(t/lib);
6 use DBICTest;
7
8 my ($dsn, $dbuser, $dbpass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
9
10 plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
11   unless ($dsn && $dbuser);
12   
13 plan tests => 6;
14
15 my $schema = DBICTest::Schema->connection($dsn, $dbuser, $dbpass, { AutoCommit => 1 });
16
17 my $dbh = $schema->storage->dbh;
18
19 {
20     local $SIG{__WARN__} = sub {};
21     $dbh->do('DROP TABLE IF EXISTS bindtype_test');
22
23     # the blob/clob are for reference only, will be useful when we switch to SQLT and can test Oracle along the way
24     $dbh->do(qq[
25         CREATE TABLE bindtype_test 
26         (
27             id              serial       NOT NULL   PRIMARY KEY,
28             bytea           bytea        NULL,
29             blob            bytea        NULL,
30             clob            text         NULL
31         );
32     ],{ RaiseError => 1, PrintError => 1 });
33 }
34
35 my $big_long_string     = "\x00\x01\x02 abcd" x 125000;
36
37 my $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
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 }
51
52 TODO: {
53   local $TODO =
54     'Passing bind attributes to $sth->bind_param() should be implemented (it only works in $storage->insert ATM)';
55
56   my $rs = $schema->resultset('BindType')->search({ bytea => $big_long_string });
57
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   }
63
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   }
76
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 }
87
88 $dbh->do("DROP TABLE bindtype_test");