Commit | Line | Data |
a964a928 |
1 | use strict; |
2 | use warnings; |
3 | |
4 | use Test::More; |
e0b2344f |
5 | use Test::Exception; |
a964a928 |
6 | use lib qw(t/lib); |
7 | use DBICTest; |
c21c1eb6 |
8 | use DateTime::Format::Sybase; |
a964a928 |
9 | |
10 | my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_SYBASE_${_}" } qw/DSN USER PASS/}; |
11 | |
12 | plan skip_all => 'Set $ENV{DBICTEST_SYBASE_DSN}, _USER and _PASS to run this test' |
13 | unless ($dsn && $user); |
14 | |
e0b2344f |
15 | plan tests => (26 + 4*2)*2; |
a964a928 |
16 | |
6b1f5ef7 |
17 | my @storage_types = ( |
18 | 'DBI::Sybase', |
19 | 'DBI::Sybase::NoBindVars', |
20 | ); |
21 | my $schema; |
22 | |
23 | for my $storage_type (@storage_types) { |
24 | $schema = DBICTest::Schema->clone; |
25 | |
26 | unless ($storage_type eq 'DBI::Sybase') { # autodetect |
27 | $schema->storage_type("::$storage_type"); |
28 | } |
b25da5cf |
29 | $schema->connection($dsn, $user, $pass, { |
30 | AutoCommit => 1, |
31 | on_connect_call => [ |
32 | [ 'datetime_setup' ], |
33 | [ blob_setup => log_on_update => 1 ], # this is a safer option |
34 | ], |
35 | }); |
a964a928 |
36 | |
6b1f5ef7 |
37 | $schema->storage->ensure_connected; |
a964a928 |
38 | |
6b1f5ef7 |
39 | isa_ok( $schema->storage, "DBIx::Class::Storage::$storage_type" ); |
40 | |
41 | $schema->storage->dbh_do (sub { |
42 | my ($storage, $dbh) = @_; |
43 | eval { $dbh->do("DROP TABLE artist") }; |
6b1f5ef7 |
44 | $dbh->do(<<'SQL'); |
a964a928 |
45 | CREATE TABLE artist ( |
c5ce7cd6 |
46 | artistid INT IDENTITY PRIMARY KEY, |
a964a928 |
47 | name VARCHAR(100), |
48 | rank INT DEFAULT 13 NOT NULL, |
c5ce7cd6 |
49 | charfield CHAR(10) NULL |
a964a928 |
50 | ) |
c5ce7cd6 |
51 | SQL |
6b1f5ef7 |
52 | }); |
a964a928 |
53 | |
6b1f5ef7 |
54 | my %seen_id; |
a964a928 |
55 | |
6b1f5ef7 |
56 | # so we start unconnected |
57 | $schema->storage->disconnect; |
a964a928 |
58 | |
59 | # test primary key handling |
6b1f5ef7 |
60 | my $new = $schema->resultset('Artist')->create({ name => 'foo' }); |
61 | ok($new->artistid > 0, "Auto-PK worked"); |
a964a928 |
62 | |
6b1f5ef7 |
63 | $seen_id{$new->artistid}++; |
a964a928 |
64 | |
6b1f5ef7 |
65 | for (1..6) { |
a964a928 |
66 | $new = $schema->resultset('Artist')->create({ name => 'Artist ' . $_ }); |
67 | is ( $seen_id{$new->artistid}, undef, "id for Artist $_ is unique" ); |
68 | $seen_id{$new->artistid}++; |
6b1f5ef7 |
69 | } |
a964a928 |
70 | |
aa56ff9a |
71 | # test simple count |
72 | is ($schema->resultset('Artist')->count, 7, 'count(*) of whole table ok'); |
73 | |
74 | # test LIMIT support |
e0b2344f |
75 | my $it = $schema->resultset('Artist')->search({ |
76 | artistid => { '>' => 0 } |
77 | }, { |
a964a928 |
78 | rows => 3, |
79 | order_by => 'artistid', |
6b1f5ef7 |
80 | }); |
a964a928 |
81 | |
b7505130 |
82 | is( $it->count, 3, "LIMIT count ok" ); |
a964a928 |
83 | |
6b1f5ef7 |
84 | is( $it->next->name, "foo", "iterator->next ok" ); |
85 | $it->next; |
86 | is( $it->next->name, "Artist 2", "iterator->next ok" ); |
87 | is( $it->next, undef, "next past end of resultset ok" ); |
a964a928 |
88 | |
a0348159 |
89 | # now try with offset |
90 | $it = $schema->resultset('Artist')->search({}, { |
91 | rows => 3, |
92 | offset => 3, |
93 | order_by => 'artistid', |
94 | }); |
95 | |
96 | is( $it->count, 3, "LIMIT with offset count ok" ); |
97 | |
98 | is( $it->next->name, "Artist 3", "iterator->next ok" ); |
99 | $it->next; |
100 | is( $it->next->name, "Artist 5", "iterator->next ok" ); |
101 | is( $it->next, undef, "next past end of resultset ok" ); |
102 | |
92e7a79b |
103 | # now try a grouped count |
104 | $schema->resultset('Artist')->create({ name => 'Artist 6' }) |
105 | for (1..6); |
106 | |
107 | $it = $schema->resultset('Artist')->search({}, { |
108 | group_by => 'name' |
109 | }); |
110 | |
111 | is( $it->count, 7, 'COUNT of GROUP_BY ok' ); |
112 | |
d391697f |
113 | # Test DateTime inflation with DATETIME |
8242035e |
114 | my @dt_types = ( |
115 | ['DATETIME', '2004-08-21T14:36:48.080Z'], |
116 | ['SMALLDATETIME', '2004-08-21T14:36:00.000Z'], # minute precision |
117 | ); |
118 | |
119 | for my $dt_type (@dt_types) { |
120 | my ($type, $sample_dt) = @$dt_type; |
121 | |
122 | eval { $schema->storage->dbh->do("DROP TABLE track") }; |
123 | $schema->storage->dbh->do(<<"SQL"); |
d391697f |
124 | CREATE TABLE track ( |
125 | trackid INT IDENTITY PRIMARY KEY, |
126 | cd INT, |
127 | position INT, |
128 | last_updated_on $type, |
129 | ) |
130 | SQL |
c21c1eb6 |
131 | ok(my $dt = DateTime::Format::Sybase->parse_datetime($sample_dt)); |
8242035e |
132 | |
133 | my $row; |
134 | ok( $row = $schema->resultset('Track')->create({ |
135 | last_updated_on => $dt, |
136 | cd => 1, |
137 | })); |
138 | ok( $row = $schema->resultset('Track') |
139 | ->search({ trackid => $row->trackid }, { select => ['last_updated_on'] }) |
140 | ->first |
141 | ); |
142 | is( $row->updated_date, $dt, 'DateTime inflation works' ); |
6b1f5ef7 |
143 | } |
e0b2344f |
144 | |
6636ad53 |
145 | # mostly stole the blob stuff Nniuq wrote for t/73oracle.t |
e0b2344f |
146 | my $dbh = $schema->storage->dbh; |
147 | { |
148 | local $SIG{__WARN__} = sub {}; |
149 | eval { $dbh->do('DROP TABLE bindtype_test') }; |
150 | |
151 | $dbh->do(qq[ |
152 | CREATE TABLE bindtype_test |
153 | ( |
154 | id INT PRIMARY KEY, |
155 | bytea INT NULL, |
156 | blob IMAGE NULL, |
157 | clob TEXT NULL |
158 | ) |
159 | ],{ RaiseError => 1, PrintError => 1 }); |
160 | } |
161 | |
162 | my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) ); |
163 | $binstr{'large'} = $binstr{'small'} x 1024; |
164 | |
165 | my $maxloblen = length $binstr{'large'}; |
166 | note "Localizing LongReadLen to $maxloblen to avoid truncation of test data"; |
167 | local $dbh->{'LongReadLen'} = $maxloblen; |
168 | |
169 | my $rs = $schema->resultset('BindType'); |
170 | my $id = 0; |
171 | |
bc54ca97 |
172 | foreach my $type (qw(blob clob)) { |
173 | foreach my $size (qw(small large)) { |
174 | no warnings 'uninitialized'; |
175 | $id++; |
176 | |
177 | eval { $rs->create( { 'id' => $id, $type => $binstr{$size} } ) }; |
178 | ok(!$@, "inserted $size $type without dying"); |
179 | diag $@ if $@; |
180 | |
181 | ok(eval { |
182 | $rs->search({ id=> $id }, { select => [$type] })->single->$type |
183 | } eq $binstr{$size}, "verified inserted $size $type" ); |
e0b2344f |
184 | } |
185 | } |
6b1f5ef7 |
186 | } |
a964a928 |
187 | |
188 | # clean up our mess |
189 | END { |
6b1f5ef7 |
190 | if (my $dbh = eval { $schema->storage->_dbh }) { |
191 | $dbh->do('DROP TABLE artist'); |
192 | $dbh->do('DROP TABLE track'); |
e0b2344f |
193 | $dbh->do('DROP TABLE bindtype_test'); |
6b1f5ef7 |
194 | } |
a964a928 |
195 | } |