columns_info_for upgrades, related test updates, related DB2 fix
[dbsrgits/DBIx-Class.git] / t / run / 145db2.tl
CommitLineData
843f8ecd 1sub run_tests {
2my $schema = shift;
3
4my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_DB2_${_}" } qw/DSN USER PASS/};
5
6#warn "$dsn $user $pass";
7
8plan skip_all, 'Set $ENV{DBICTEST_DB2_DSN}, _USER and _PASS to run this test'
9 unless ($dsn && $user);
10
fc22fbac 11plan tests => 6;
843f8ecd 12
13DBICTest::Schema->compose_connection('DB2Test' => $dsn, $user, $pass);
14
15my $dbh = DB2Test->schema->storage->dbh;
16
fc22fbac 17{
18 local $SIG{__WARN__} = sub {};
19 $dbh->do("DROP TABLE artist;");
20}
843f8ecd 21
22$dbh->do("CREATE TABLE artist (artistid INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), name VARCHAR(255), charfield CHAR(10));");
23
24#'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
25
26DB2Test::Artist->load_components('PK::Auto');
27
28# test primary key handling
29my $new = DB2Test::Artist->create({ name => 'foo' });
30ok($new->artistid, "Auto-PK worked");
31
32# test LIMIT support
33for (1..6) {
34 DB2Test::Artist->create({ name => 'Artist ' . $_ });
35}
36my $it = DB2Test::Artist->search( {},
37 { rows => 3,
38 order_by => 'artistid'
39 }
40);
41is( $it->count, 3, "LIMIT count ok" );
fc22fbac 42is( $it->next->name, "foo", "iterator->next ok" );
843f8ecd 43$it->next;
fc22fbac 44is( $it->next->name, "Artist 2", "iterator->next ok" );
843f8ecd 45is( $it->next, undef, "next past end of resultset ok" );
46
47my $test_type_info = {
48 'artistid' => {
49 'data_type' => 'INTEGER',
50 'is_nullable' => 0,
fc22fbac 51 'size' => 10
843f8ecd 52 },
53 'name' => {
54 'data_type' => 'VARCHAR',
55 'is_nullable' => 1,
56 'size' => 255
57 },
58 'charfield' => {
fc22fbac 59 'data_type' => 'CHAR',
843f8ecd 60 'is_nullable' => 1,
61 'size' => 10
62 },
63};
64
65
66my $type_info = DB2Test->schema->storage->columns_info_for('artist');
67is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
68
69
70
71# clean up our mess
72$dbh->do("DROP TABLE artist");
73
74}
75
761;