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