documentation updates
[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 $dsn    = 'dbi:Pg:dbname=postgres;host=localhost' unless $dsn;
11 $dbuser = 'postgres' unless $dbuser;
12 $dbpass = 'postgres' unless $dbpass;
13
14 plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
15   unless ($dsn && $dbuser);
16   
17 plan tests => 3;
18
19 DBICTest::Schema->compose_connection('PGTest' => $dsn, $dbuser, $dbpass);
20
21 my $dbh = PGTest->schema->storage->dbh;
22
23 $dbh->do(qq[
24
25         CREATE TABLE artist
26         (
27                 artistid                serial  NOT NULL        PRIMARY KEY,
28                 media                   bytea   NOT NULL,
29                 name                    varchar NULL
30         );
31 ],{ RaiseError => 1, PrintError => 1 });
32
33
34 PGTest::Artist->load_components(qw/ 
35
36         PK::Auto 
37         Core 
38 /);
39
40 PGTest::Artist->add_columns(
41         
42         "media", { 
43         
44                 data_type => "bytea", 
45                 is_nullable => 0,
46         },
47 );
48
49 # test primary key handling
50 my $big_long_string     = 'abcd' x 250000;
51
52 my $new = PGTest::Artist->create({ media => $big_long_string });
53
54 ok($new->artistid, "Created a blob row");
55 is($new->media,         $big_long_string, "Set the blob correctly.");
56
57 my $rs = PGTest::Artist->find({artistid=>$new->artistid});
58
59 is($rs->get_column('media'), $big_long_string, "Created the blob correctly.");
60
61 $dbh->do("DROP TABLE artist");
62
63
64