4 # use this if you keep a copy of DBD::Sybase linked to FreeTDS somewhere else
6 if (my $lib_dirs = $ENV{DBICTEST_MSSQL_PERL5LIB}) {
7 unshift @INC, $_ for split /:/, $lib_dirs;
16 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_${_}" } qw/DSN USER PASS/};
18 plan skip_all => 'Set $ENV{DBICTEST_MSSQL_DSN}, _USER and _PASS to run this test'
22 my $srv_ver = DBICTest::Schema->connect($dsn, $user, $pass)->storage->_server_info->{dbms_version};
23 ok ($srv_ver, 'Got a test server version on fresh schema: ' . ($srv_ver||'???') );
26 my $testdb_supports_placeholders = DBICTest::Schema->connect($dsn, $user, $pass)
28 ->_supports_typeless_placeholders;
30 $testdb_supports_placeholders ? 'DBI::Sybase::Microsoft_SQL_Server' : (),
31 'DBI::Sybase::Microsoft_SQL_Server::NoBindVars',
35 for my $storage_type (@test_storages) {
36 $schema = DBICTest::Schema->connect($dsn, $user, $pass);
38 if ($storage_type =~ /NoBindVars\z/) {
39 # since we want to use the nobindvar - disable the capability so the
40 # rebless happens to the correct class
41 $schema->storage->_use_typeless_placeholders (0);
44 $schema->storage->ensure_connected;
45 isa_ok($schema->storage, "DBIx::Class::Storage::$storage_type");
48 skip 'This version of DBD::Sybase segfaults on disconnect', 1 if DBD::Sybase->VERSION < 1.08;
50 # start disconnected to test _ping
51 $schema->storage->_dbh->disconnect;
54 $schema->storage->dbh_do(sub { $_[1]->do('select 1') })
58 my $dbh = $schema->storage->dbh;
60 $dbh->do("IF OBJECT_ID('artist', 'U') IS NOT NULL
62 $dbh->do("IF OBJECT_ID('cd', 'U') IS NOT NULL
65 $dbh->do("CREATE TABLE artist (artistid INT IDENTITY PRIMARY KEY, name VARCHAR(100), rank INT DEFAULT '13', charfield CHAR(10) NULL);");
66 $dbh->do("CREATE TABLE cd (cdid INT IDENTITY PRIMARY KEY, artist INT, title VARCHAR(100), year VARCHAR(100), genreid INT NULL, single_track INT NULL);");
67 # Just to test compat shim, Auto is in Core
68 $schema->class('Artist')->load_components('PK::Auto::MSSQL');
71 my $new = $schema->resultset('Artist')->create( { name => 'foo' } );
72 ok($new->artistid, "Auto-PK worked");
76 $schema->resultset('Artist')->create( { name => 'Artist ' . $_, rank => $_ } );
79 my $it = $schema->resultset('Artist')->search( { },
82 order_by => 'artistid'
86 # Test ? in data don't get treated as placeholders
87 my $cd = $schema->resultset('CD')->create( {
89 title => 'Does this break things?',
92 ok($cd->id, 'Not treating ? in data as placeholders');
94 is( $it->count, 3, "LIMIT count ok" );
95 ok( $it->next->name, "iterator->next ok" );
98 is( $it->next, undef, "next past end of resultset ok" );
100 # test MONEY column support
101 $schema->storage->dbh_do (sub {
102 my ($storage, $dbh) = @_;
103 eval { $dbh->do("DROP TABLE money_test") };
105 CREATE TABLE money_test (
106 id INT IDENTITY PRIMARY KEY,
113 my $rs = $schema->resultset('Money');
117 $row = $rs->create({ amount => 100 });
118 } 'inserted a money value';
120 cmp_ok $rs->find($row->id)->amount, '==', 100, 'money value round-trip';
123 $row->update({ amount => 200 });
124 } 'updated a money value';
126 cmp_ok $rs->find($row->id)->amount, '==', 200,
127 'updated money value round-trip';
130 $row->update({ amount => undef });
131 } 'updated a money value to NULL';
133 is $rs->find($row->id)->amount,
134 undef, 'updated money value to NULL round-trip';
136 $rs->create({ amount => 300 }) for (1..3);
138 # test multiple active statements
140 my $artist_rs = $schema->resultset('Artist');
141 while (my $row = $rs->next) {
142 my $artist = $artist_rs->next;
145 } 'multiple active statements';
149 # test simple transaction with commit
151 $schema->txn_do(sub {
152 $rs->create({ amount => 400 });
154 } 'simple transaction';
156 cmp_ok $rs->first->amount, '==', 400, 'committed';
163 $schema->txn_do(sub {
164 $rs->create({ amount => 400 });
167 } qr/mtfnpy/, 'simple failed txn';
169 is $rs->first, undef, 'rolled back';
172 # test RNO detection when version detection fails
174 my $storage = $schema->storage;
175 my $version = $storage->_server_info->{normalized_dbms_version};
177 skip 'could not detect SQL Server version', 1 if not defined $version;
179 my $have_rno = $version >= 9 ? 1 : 0;
181 local $storage->{_dbh_details}{info} = {}; # delete cache
184 ($storage->sql_limit_dialect eq 'RowNumberOver') ? 1 : 0;
186 ok (($have_rno == $rno_detected),
187 'row_number() over support detected correctly');
191 my $schema = DBICTest::Schema->clone;
192 $schema->connection($dsn, $user, $pass);
194 like $schema->storage->sql_maker->{limit_dialect},
195 qr/^(?:Top|RowNumberOver)\z/,
196 'sql_maker is correct on unconnected schema';
200 # test op-induced autoconnect
203 my $schema = DBICTest::Schema->clone;
204 $schema->connection($dsn, $user, $pass);
206 my $artist = $schema->resultset ('Artist')->search ({}, { order_by => 'artistid' })->next;
207 is ($artist->id, 1, 'Artist retrieved successfully');
208 }, 'Query-induced autoconnect works');
214 if (my $dbh = eval { $schema->storage->dbh }) {
215 $dbh->do("IF OBJECT_ID('artist', 'U') IS NOT NULL DROP TABLE artist");
216 $dbh->do("IF OBJECT_ID('cd', 'U') IS NOT NULL DROP TABLE cd");
217 $dbh->do("IF OBJECT_ID('money_test', 'U') IS NOT NULL DROP TABLE money_test");