fix double connect for ODBC/MSSQL
[dbsrgits/DBIx-Class.git] / t / 746mssql.t
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
19 isa_ok( $schema->storage, 'DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server' );
20
21 $schema->storage->dbh_do (sub {
22     my ($storage, $dbh) = @_;
23     eval { $dbh->do("DROP TABLE artist") };
24     $dbh->do(<<'SQL');
25
26 CREATE TABLE artist (
27    artistid INT IDENTITY NOT NULL,
28    name VARCHAR(100),
29    rank INT NOT NULL DEFAULT '13',
30    charfield CHAR(10) NULL,
31    primary key(artistid)
32 )
33
34 SQL
35
36 });
37
38 my %seen_id;
39
40 # fresh $schema so we start unconnected
41 $schema = DBICTest::Schema->connect($dsn, $user, $pass, {AutoCommit => 1});
42
43 # test primary key handling
44 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
45 ok($new->artistid > 0, "Auto-PK worked");
46
47 $seen_id{$new->artistid}++;
48
49 # test LIMIT support
50 for (1..6) {
51     $new = $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
52     is ( $seen_id{$new->artistid}, undef, "id for Artist $_ is unique" );
53     $seen_id{$new->artistid}++;
54 }
55
56 my $it = $schema->resultset('Artist')->search( {}, {
57     rows => 3,
58     order_by => 'artistid',
59 });
60
61 is( $it->count, 3, "LIMIT count ok" );
62 is( $it->next->name, "foo", "iterator->next ok" );
63 $it->next;
64 is( $it->next->name, "Artist 2", "iterator->next ok" );
65 is( $it->next, undef, "next past end of resultset ok" );
66
67
68 # clean up our mess
69 END {
70     my $dbh = eval { $schema->storage->_dbh };
71     $dbh->do('DROP TABLE artist') if $dbh;
72 }
73