It seems that some CPAN testers have a weird unreleased DBD::SQLite 1.14001 which...
[dbsrgits/DBIx-Class.git] / t / 64db.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use lib qw(t/lib);
6 use DBICTest;
7
8 my $schema = DBICTest->init_schema();
9
10 plan tests => 3;
11
12 # add some rows inside a transaction and commit it
13 # XXX: Is storage->dbh the only way to get a dbh?
14 $schema->storage->txn_begin;
15 for (10..15) {
16     $schema->resultset("Artist")->create( { 
17         artistid => $_,
18         name => "artist number $_",
19     } );
20 }
21 $schema->storage->txn_commit;
22 my ($artist) = $schema->resultset("Artist")->find(15);
23 is($artist->name, 'artist number 15', "Commit ok");
24
25 # add some rows inside a transaction and roll it back
26 $schema->storage->txn_begin;
27 for (21..30) {
28     $schema->resultset("Artist")->create( {
29         artistid => $_,
30         name => "artist number $_",
31     } );
32 }
33 $schema->storage->txn_rollback;
34 ($artist) = $schema->resultset("Artist")->search( artistid => 25 );
35 is($artist, undef, "Rollback ok");
36
37 my $type_info = $schema->storage->columns_info_for('artist');
38
39 # I know this is gross but SQLite reports the size differently from release
40 # to release. At least this way the test still passes.
41 # Also it seems that some SQLite releases report stuff that isn't there as
42 # undef. So strip them out.
43 for my $col (keys %$type_info) {
44   for my $type (keys %{$type_info->{$col}}) {
45     if ($type eq 'size' or not defined $type_info->{$col}{$type} ) {
46       delete $type_info->{$col}{$type};
47     }
48   }
49 }
50
51 my $test_type_info = {
52     'artistid' => {
53         'data_type' => 'INTEGER',
54         'is_nullable' => 0,
55     },
56     'name' => {
57         'data_type' => 'varchar',
58         'is_nullable' => 0,
59     },
60     'rank' => {
61         'data_type' => 'integer',
62         'is_nullable' => 0,
63     },
64 };
65 is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
66