added some notes in the tests and fixed get_from_storage to actually use the new...
[dbsrgits/DBIx-Class.git] / t / bindtype_columns.t
index d88815d..5b83255 100644 (file)
@@ -5,23 +5,56 @@ use Test::More;
 use lib qw(t/lib);
 use DBICTest;
 
-my $schema = DBICTest->init_schema();
+my ($dsn, $dbuser, $dbpass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/};
 
-plan tests => 2;
+plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
+  unless ($dsn && $dbuser);
+  
+plan tests => 3;
 
-#Bindtest
-{
-       my $new = $schema->resultset("Artist")->new({
-       
-               artistid=>25,
-               name=>'JohnNapiorkowski',
-       });
-       
-       $new->update_or_insert;
+my $schema = DBICTest::Schema->connection($dsn, $dbuser, $dbpass, { AutoCommit => 1 });
+
+my $dbh = $schema->storage->dbh;
+
+$dbh->do(qq[
+
+       CREATE TABLE artist
+       (
+               artistid                serial  NOT NULL        PRIMARY KEY,
+               media                   bytea   NOT NULL,
+               name                    varchar NULL
+       );
+],{ RaiseError => 1, PrintError => 1 });
+
+
+$schema->class('Artist')->load_components(qw/ 
+
+       PK::Auto 
+       Core 
+/);
+
+$schema->class('Artist')->add_columns(
        
-       my $resultset = $schema->resultset("Artist")->find({artistid=>25});
+       "media", { 
        
-       is($resultset->id, 25, 'Testing New ID');
-       is($resultset->name, 'JohnNapiorkowski', 'Testing New Name');
-}
+               data_type => "bytea", 
+               is_nullable => 0,
+       },
+);
+
+# test primary key handling
+my $big_long_string    = 'abcd' x 250000;
+
+my $new = $schema->resultset('Artist')->create({ media => $big_long_string });
+
+ok($new->artistid, "Created a blob row");
+is($new->media,        $big_long_string, "Set the blob correctly.");
+
+my $rs = $schema->resultset('Artist')->find({artistid=>$new->artistid});
+
+is($rs->get_column('media'), $big_long_string, "Created the blob correctly.");
+
+$dbh->do("DROP TABLE artist");
+
+