8 use DBIC::SqlMakerTest;
10 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_ODBC_${_}" } qw/DSN USER PASS/};
12 plan skip_all => 'Set $ENV{DBICTEST_MSSQL_ODBC_DSN}, _USER and _PASS to run this test'
13 unless ($dsn && $user);
17 DBICTest::Schema->load_classes('ArtistGUID');
18 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
21 no warnings 'redefine';
22 my $connect_count = 0;
23 my $orig_connect = \&DBI::connect;
24 local *DBI::connect = sub { $connect_count++; goto &$orig_connect };
26 $schema->storage->ensure_connected;
28 is( $connect_count, 1, 'only one connection made');
31 isa_ok( $schema->storage, 'DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server' );
33 $schema->storage->dbh_do (sub {
34 my ($storage, $dbh) = @_;
35 eval { $dbh->do("DROP TABLE artist") };
38 artistid INT IDENTITY NOT NULL,
40 rank INT NOT NULL DEFAULT '13',
41 charfield CHAR(10) NULL,
50 { on_connect_call => 'use_dynamic_cursors' },
55 # test Auto-PK with different options
56 for my $opts (@opts) {
57 $schema = DBICTest::Schema->clone;
58 $schema->connection($dsn, $user, $pass, $opts);
60 $schema->resultset('Artist')->search({ name => 'foo' })->delete;
62 $new = $schema->resultset('Artist')->create({ name => 'foo' });
63 ok($new->artistid > 0, "Auto-PK worked");
66 $seen_id{$new->artistid}++;
70 $new = $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
71 is ( $seen_id{$new->artistid}, undef, "id for Artist $_ is unique" );
72 $seen_id{$new->artistid}++;
75 my $it = $schema->resultset('Artist')->search( {}, {
77 order_by => 'artistid',
80 is( $it->count, 3, "LIMIT count ok" );
81 is( $it->next->name, "foo", "iterator->next ok" );
83 is( $it->next->name, "Artist 2", "iterator->next ok" );
84 is( $it->next, undef, "next past end of resultset ok" );
88 $schema->storage->dbh_do (sub {
89 my ($storage, $dbh) = @_;
90 eval { $dbh->do("DROP TABLE artist") };
93 artistid UNIQUEIDENTIFIER NOT NULL,
95 rank INT NOT NULL DEFAULT '13',
96 charfield CHAR(10) NULL,
97 a_guid UNIQUEIDENTIFIER,
103 # start disconnected to make sure insert works on an un-reblessed storage
104 $schema = DBICTest::Schema->connect($dsn, $user, $pass);
108 $row = $schema->resultset('ArtistGUID')->create({ name => 'mtfnpy' })
109 } 'created a row with a GUID';
112 eval { $row->artistid },
113 'row has GUID PK col populated',
118 eval { $row->a_guid },
119 'row has a GUID col with auto_nextval populated',
123 my $row_from_db = $schema->resultset('ArtistGUID')
124 ->search({ name => 'mtfnpy' })->first;
126 is $row_from_db->artistid, $row->artistid,
127 'PK GUID round trip';
129 is $row_from_db->a_guid, $row->a_guid,
130 'NON-PK GUID round trip';
133 $schema->storage->dbh_do (sub {
134 my ($storage, $dbh) = @_;
135 eval { $dbh->do("DROP TABLE money_test") };
138 CREATE TABLE money_test (
139 id INT IDENTITY PRIMARY KEY,
147 my $rs = $schema->resultset('Money');
150 $row = $rs->create({ amount => 100 });
151 } 'inserted a money value';
153 is $rs->find($row->id)->amount, '100.00', 'money value round-trip';
156 $row->update({ amount => 200 });
157 } 'updated a money value';
159 is $rs->find($row->id)->amount, '200.00', 'updated money value round-trip';
162 $row->update({ amount => undef });
163 } 'updated a money value to NULL';
165 is $rs->find($row->id)->amount, undef,'updated money value to NULL round-trip';
167 $schema->storage->dbh_do (sub {
168 my ($storage, $dbh) = @_;
169 eval { $dbh->do("DROP TABLE Owners") };
170 eval { $dbh->do("DROP TABLE Books") };
173 id INT IDENTITY (1, 1) NOT NULL,
180 CREATE TABLE Owners (
181 id INT IDENTITY (1, 1) NOT NULL,
189 $schema->populate ('Owners', [
202 [qw/12 face_to_face/],
207 }, 'populate with PKs supplied ok' );
210 $schema->populate ('BooksInLibrary', [
211 [qw/source owner title /],
212 [qw/Library 1 secrets0/],
213 [qw/Library 1 secrets1/],
214 [qw/Eatery 1 secrets2/],
215 [qw/Library 2 secrets3/],
216 [qw/Library 3 secrets4/],
217 [qw/Eatery 3 secrets5/],
218 [qw/Library 4 secrets6/],
219 [qw/Library 5 secrets7/],
220 [qw/Eatery 5 secrets8/],
221 [qw/Library 6 secrets9/],
222 [qw/Library 7 secrets10/],
223 [qw/Eatery 7 secrets11/],
224 [qw/Library 8 secrets12/],
226 }, 'populate without PKs supplied ok' );
229 # try a prefetch on tables with identically named columns
232 # set quote char - make sure things work while quoted
233 $schema->storage->_sql_maker->{quote_char} = [qw/[ ]/];
234 $schema->storage->_sql_maker->{name_sep} = '.';
237 # try a ->has_many direction
238 my $owners = $schema->resultset ('Owners')->search ({
239 'books.id' => { '!=', undef }
243 rows => 3, # 8 results total
246 is ($owners->page(1)->all, 3, 'has_many prefetch returns correct number of rows');
247 is ($owners->page(1)->count, 3, 'has-many prefetch returns correct count');
250 local $TODO = 'limit past end of resultset problem';
251 is ($owners->page(3)->all, 2, 'has_many prefetch returns correct number of rows');
252 is ($owners->page(3)->count, 2, 'has-many prefetch returns correct count');
253 is ($owners->page(3)->count_rs->next, 2, 'has-many prefetch returns correct count_rs');
255 # make sure count does not become overly complex FIXME
257 $owners->page(3)->count_rs->as_query,
261 SELECT TOP 3 [me].[id]
263 LEFT JOIN [books] [books] ON [books].[owner] = [me].[id]
264 WHERE ( [books].[id] IS NOT NULL )
266 ORDER BY [me].[id] DESC
273 # try a ->belongs_to direction (no select collapse, group_by should work)
274 my $books = $schema->resultset ('BooksInLibrary')->search ({
275 'owner.name' => [qw/wiggle woggle/],
279 rows => 2, # 3 results total
280 order_by => { -desc => 'owner' },
281 # there is no sane way to order by the right side of a grouped prefetch currently :(
282 #order_by => { -desc => 'owner.name' },
286 is ($books->page(1)->all, 2, 'Prefetched grouped search returns correct number of rows');
287 is ($books->page(1)->count, 2, 'Prefetched grouped search returns correct count');
290 local $TODO = 'limit past end of resultset problem';
291 is ($books->page(2)->all, 1, 'Prefetched grouped search returns correct number of rows');
292 is ($books->page(2)->count, 1, 'Prefetched grouped search returns correct count');
293 is ($books->page(2)->count_rs->next, 1, 'Prefetched grouped search returns correct count_rs');
295 # make sure count does not become overly complex FIXME
297 $books->page(2)->count_rs->as_query,
301 SELECT TOP 2 [me].[id]
303 JOIN [owners] [owner] ON [owner].[id] = [me].[owner]
304 WHERE ( ( ( [owner].[name] = ? OR [owner].[name] = ? ) AND [source] = ? ) )
305 GROUP BY [me].[id], [me].[source], [me].[owner], [me].[title], [me].[price], [owner].[id], [owner].[name]
306 ORDER BY [me].[id] DESC
310 [ 'owner.name' => 'wiggle' ],
311 [ 'owner.name' => 'woggle' ],
312 [ 'source' => 'Library' ],
321 if (my $dbh = eval { $schema->storage->_dbh }) {
322 eval { $dbh->do("DROP TABLE $_") }
323 for qw/artist money_test Books Owners/;