* Fixed the initial DROP TABLE statement (used to drop the wrong table).
[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 => 3;
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 # test primary key handling
36 my $big_long_string     = 'abcd' x 250000;
37
38 my $new = $schema->resultset('BindType')->create({ bytea => $big_long_string });
39
40 ok($new->id, "Created a bytea row");
41 is($new->bytea,         $big_long_string, "Set the blob correctly.");
42
43 my $rs = $schema->resultset('BindType')->find({ id => $new->id });
44
45 is($rs->get_column('bytea'), $big_long_string, "Created the blob correctly.");
46
47 $dbh->do("DROP TABLE bindtype_test");
48
49
50