Add new column with a default to Artist, adjust tests as necessary (no functional...
[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 artist');
22     $dbh->do(qq[
23         CREATE TABLE artist
24         (
25             artistid        serial  NOT NULL    PRIMARY KEY,
26             media           bytea   NOT NULL,
27             name            varchar NULL,
28             rank            integer NOT NULL    DEFAULT '13'
29         );
30     ],{ RaiseError => 1, PrintError => 1 });
31 }
32
33 $schema->class('Artist')->load_components(qw/ 
34
35         PK::Auto 
36         Core 
37 /);
38
39 $schema->class('Artist')->add_columns(
40         
41         "media", { 
42         
43                 data_type => "bytea", 
44                 is_nullable => 0,
45         },
46 );
47
48 # test primary key handling
49 my $big_long_string     = 'abcd' x 250000;
50
51 my $new = $schema->resultset('Artist')->create({ media => $big_long_string });
52
53 ok($new->artistid, "Created a blob row");
54 is($new->media,         $big_long_string, "Set the blob correctly.");
55
56 my $rs = $schema->resultset('Artist')->find({artistid=>$new->artistid});
57
58 is($rs->get_column('media'), $big_long_string, "Created the blob correctly.");
59
60 $dbh->do("DROP TABLE artist");
61
62
63