Only normalize conditions during resolution time, instead on every ->search
[dbsrgits/DBIx-Class.git] / t / 64db.t
1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7
8 use DBICTest;
9
10 my $schema = DBICTest->init_schema();
11
12 plan tests => 4;
13
14 # add some rows inside a transaction and commit it
15 # XXX: Is storage->dbh the only way to get a dbh?
16 $schema->storage->txn_begin;
17 for (10..15) {
18     $schema->resultset("Artist")->create( {
19         artistid => $_,
20         name => "artist number $_",
21     } );
22 }
23 $schema->storage->txn_commit;
24 my ($artist) = $schema->resultset("Artist")->find(15);
25 is($artist->name, 'artist number 15', "Commit ok");
26
27 # add some rows inside a transaction and roll it back
28 $schema->storage->txn_begin;
29 for (21..30) {
30     $schema->resultset("Artist")->create( {
31         artistid => $_,
32         name => "artist number $_",
33     } );
34 }
35 $schema->storage->txn_rollback;
36 ($artist) = $schema->resultset("Artist")->search({ artistid => 25 });
37 is($artist, undef, "Rollback ok");
38
39 is_deeply (
40   get_storage_column_info ($schema->storage, 'collection', qw/size is_nullable/),
41   {
42     collectionid => {
43       data_type => 'INTEGER',
44     },
45     name => {
46       data_type => 'varchar',
47     },
48   },
49   'Correctly retrieve column info (no size or is_nullable)'
50 );
51
52 {
53   is_deeply (
54     get_storage_column_info ($schema->storage, 'artist', qw/size/),
55     {
56       'artistid' => {
57           'data_type' => 'INTEGER',
58           'is_nullable' => 0,
59       },
60       'name' => {
61           'data_type' => 'varchar',
62           'is_nullable' => 1,
63       },
64       'rank' => {
65           'data_type' => 'integer',
66           'is_nullable' => 0,
67           DBIx::Class::_ENV_::STRESSTEST_COLUMN_INFO_UNAWARE_STORAGE ? () : ( 'default_value' => '13' ),
68       },
69       'charfield' => {
70           'data_type' => 'char',
71           'is_nullable' => 1,
72       },
73     },
74     'Correctly retrieve column info (mixed null and non-null columns)'
75   );
76 };
77
78
79 # Depending on test we need to strip away certain column info.
80 #  - SQLite is known to report the size differently from release to release
81 #  - Current DBD::SQLite versions do not implement NULLABLE
82 #  - Some SQLite releases report stuff that isn't there as undef
83
84 sub get_storage_column_info {
85   my ($storage, $table, @ignore) = @_;
86
87   my $type_info = $storage->columns_info_for($table);
88
89   for my $col (keys %$type_info) {
90     for my $type (keys %{$type_info->{$col}}) {
91       if (
92         grep { $type eq $_ } (@ignore)
93           or
94         not defined $type_info->{$col}{$type}
95       ) {
96         delete $type_info->{$col}{$type};
97       }
98     }
99   }
100
101   return $type_info;
102 }