Commit | Line | Data |
c1cac633 |
1 | use strict; |
2 | use warnings; |
3 | |
4 | use Test::More; |
5 | use lib qw(t/lib); |
6 | use DBICTest; |
7 | |
8 | my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_ODBC_${_}" } qw/DSN USER PASS/}; |
9 | |
10 | plan skip_all => 'Set $ENV{DBICTEST_MSSQL_ODBC_DSN}, _USER and _PASS to run this test' |
11 | unless ($dsn && $user); |
12 | |
13 | plan tests => 12; |
14 | |
15 | my $schema = DBICTest::Schema->connect($dsn, $user, $pass, {AutoCommit => 1}); |
16 | |
17 | $schema->storage->ensure_connected; |
18 | isa_ok( $schema->storage, 'DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server' ); |
19 | |
2eebd801 |
20 | my $dbh = $schema->storage->_dbh; |
c1cac633 |
21 | |
22 | eval { $dbh->do("DROP TABLE artist") }; |
23 | |
24 | $dbh->do(<<''); |
25 | CREATE TABLE artist ( |
26 | artistid INT IDENTITY NOT NULL, |
a0dd8679 |
27 | name VARCHAR(100), |
39da2a2b |
28 | rank INT NOT NULL DEFAULT '13', |
2eebd801 |
29 | charfield CHAR(10) NULL, |
c1cac633 |
30 | primary key(artistid) |
31 | ) |
32 | |
33 | my %seen_id; |
34 | |
2eebd801 |
35 | # fresh $schema so we start unconnected |
36 | $schema = DBICTest::Schema->connect($dsn, $user, $pass, {AutoCommit => 1}); |
37 | |
c1cac633 |
38 | # test primary key handling |
39 | my $new = $schema->resultset('Artist')->create({ name => 'foo' }); |
40 | ok($new->artistid > 0, "Auto-PK worked"); |
41 | |
42 | $seen_id{$new->artistid}++; |
43 | |
44 | # test LIMIT support |
45 | for (1..6) { |
46 | $new = $schema->resultset('Artist')->create({ name => 'Artist ' . $_ }); |
47 | is ( $seen_id{$new->artistid}, undef, "id for Artist $_ is unique" ); |
48 | $seen_id{$new->artistid}++; |
49 | } |
50 | |
51 | my $it = $schema->resultset('Artist')->search( {}, { |
52 | rows => 3, |
53 | order_by => 'artistid', |
54 | }); |
55 | |
56 | is( $it->count, 3, "LIMIT count ok" ); |
57 | is( $it->next->name, "foo", "iterator->next ok" ); |
58 | $it->next; |
59 | is( $it->next->name, "Artist 2", "iterator->next ok" ); |
60 | is( $it->next, undef, "next past end of resultset ok" ); |
61 | |
62 | |
63 | # clean up our mess |
64 | END { |
2eebd801 |
65 | $dbh = eval { $schema->storage->_dbh }; |
c1cac633 |
66 | $dbh->do('DROP TABLE artist') if $dbh; |
67 | } |
68 | |