Stop 99dbic_sqlt_parser.t from breaking every time a new table is added
[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 (
a0dd8679 25 artistid serial NOT NULL PRIMARY KEY,
26 media bytea NOT NULL,
27 name varchar(100) NULL,
28 rank integer NOT NULL DEFAULT '13',
29 charfield char(10) NULL
bb452615 30 );
31 ],{ RaiseError => 1, PrintError => 1 });
32}
9fdf90df 33
eda28767 34$schema->class('Artist')->load_components(qw/
9fdf90df 35
36 PK::Auto
37 Core
38/);
39
eda28767 40$schema->class('Artist')->add_columns(
6e399b4f 41
9fdf90df 42 "media", {
6e399b4f 43
9fdf90df 44 data_type => "bytea",
7036ea60 45 is_nullable => 0,
9fdf90df 46 },
47);
48
49# test primary key handling
50my $big_long_string = 'abcd' x 250000;
51
eda28767 52my $new = $schema->resultset('Artist')->create({ media => $big_long_string });
9fdf90df 53
54ok($new->artistid, "Created a blob row");
55is($new->media, $big_long_string, "Set the blob correctly.");
56
eda28767 57my $rs = $schema->resultset('Artist')->find({artistid=>$new->artistid});
9fdf90df 58
59is($rs->get_column('media'), $big_long_string, "Created the blob correctly.");
60
61$dbh->do("DROP TABLE artist");
62
63
6e399b4f 64