Accomodate postgres being really load on CREATE
[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
13plan tests => 3;
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 {};
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 );
29 ],{ RaiseError => 1, PrintError => 1 });
30}
9fdf90df 31
eda28767 32$schema->class('Artist')->load_components(qw/
9fdf90df 33
34 PK::Auto
35 Core
36/);
37
eda28767 38$schema->class('Artist')->add_columns(
6e399b4f 39
9fdf90df 40 "media", {
6e399b4f 41
9fdf90df 42 data_type => "bytea",
7036ea60 43 is_nullable => 0,
9fdf90df 44 },
45);
46
47# test primary key handling
48my $big_long_string = 'abcd' x 250000;
49
eda28767 50my $new = $schema->resultset('Artist')->create({ media => $big_long_string });
9fdf90df 51
52ok($new->artistid, "Created a blob row");
53is($new->media, $big_long_string, "Set the blob correctly.");
54
eda28767 55my $rs = $schema->resultset('Artist')->find({artistid=>$new->artistid});
9fdf90df 56
57is($rs->get_column('media'), $big_long_string, "Created the blob correctly.");
58
59$dbh->do("DROP TABLE artist");
60
61
6e399b4f 62