7 use DBIC::SqlMakerTest;
9 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_ODBC_${_}" } qw/DSN USER PASS/};
11 plan skip_all => 'Set $ENV{DBICTEST_MSSQL_ODBC_DSN}, _USER and _PASS to run this test'
12 unless ($dsn && $user);
16 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
19 no warnings 'redefine';
20 my $connect_count = 0;
21 my $orig_connect = \&DBI::connect;
22 local *DBI::connect = sub { $connect_count++; goto &$orig_connect };
24 $schema->storage->ensure_connected;
26 is( $connect_count, 1, 'only one connection made');
29 isa_ok( $schema->storage, 'DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server' );
31 $schema->storage->dbh_do (sub {
32 my ($storage, $dbh) = @_;
33 eval { $dbh->do("DROP TABLE artist") };
37 artistid INT IDENTITY NOT NULL,
39 rank INT NOT NULL DEFAULT '13',
40 charfield CHAR(10) NULL,
50 # fresh $schema so we start unconnected
51 $schema = DBICTest::Schema->connect($dsn, $user, $pass);
53 # test primary key handling
54 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
55 ok($new->artistid > 0, "Auto-PK worked");
57 $seen_id{$new->artistid}++;
61 $new = $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
62 is ( $seen_id{$new->artistid}, undef, "id for Artist $_ is unique" );
63 $seen_id{$new->artistid}++;
66 my $it = $schema->resultset('Artist')->search( {}, {
68 order_by => 'artistid',
71 is( $it->count, 3, "LIMIT count ok" );
72 is( $it->next->name, "foo", "iterator->next ok" );
74 is( $it->next->name, "Artist 2", "iterator->next ok" );
75 is( $it->next, undef, "next past end of resultset ok" );
77 $schema->storage->dbh_do (sub {
78 my ($storage, $dbh) = @_;
79 eval { $dbh->do("DROP TABLE Owners") };
80 eval { $dbh->do("DROP TABLE Books") };
85 id INT IDENTITY (1, 1) NOT NULL,
93 id INT IDENTITY (1, 1) NOT NULL,
100 $schema->populate ('Owners', [
113 [qw/12 face_to_face/],
119 $schema->populate ('BooksInLibrary', [
120 [qw/source owner title /],
121 [qw/Library 1 secrets0/],
122 [qw/Library 1 secrets1/],
123 [qw/Eatery 1 secrets2/],
124 [qw/Library 2 secrets3/],
125 [qw/Library 3 secrets4/],
126 [qw/Eatery 3 secrets5/],
127 [qw/Library 4 secrets6/],
128 [qw/Library 5 secrets7/],
129 [qw/Eatery 5 secrets8/],
130 [qw/Library 6 secrets9/],
131 [qw/Library 7 secrets10/],
132 [qw/Eatery 7 secrets11/],
133 [qw/Library 8 secrets12/],
137 # try a distinct + prefetch on tables with identically named columns
141 # try a ->has_many direction (group_by is not possible on has_many with limit)
142 my $owners = $schema->resultset ('Owners')->search ({
143 'books.id' => { '!=', undef }
147 rows => 3, # 8 results total
150 is ($owners->page(1)->all, 3, 'has_many prefetch returns correct number of rows');
151 is ($owners->page(1)->count, 3, 'has-many prefetch returns correct count');
154 local $TODO = 'limit past end of resultset problem';
155 is ($owners->page(3)->all, 2, 'has_many prefetch returns correct number of rows');
156 is ($owners->page(3)->count, 2, 'has-many prefetch returns correct count');
159 # make sure count does not become overly complex FIXME
161 $owners->page(2)->count_rs->as_query,
169 LEFT JOIN books books ON books.owner = me.id
170 WHERE ( books.id IS NOT NULL )
180 # try a ->belongs_to direction (no select collapse, group_by should work)
181 my $books = $schema->resultset ('BooksInLibrary')->search ({
182 'owner.name' => [qw/wiggle woggle/],
187 rows => 2, # 3 results total
191 is ($books->page(1)->all, 2, 'Prefetched grouped search returns correct number of rows');
192 is ($books->page(1)->count, 2, 'Prefetched grouped search returns correct count');
195 local $TODO = 'limit past end of resultset problem';
196 is ($books->page(2)->all, 1, 'Prefetched grouped search returns correct number of rows');
197 is ($books->page(2)->count, 1, 'Prefetched grouped search returns correct count');
200 # make sure count does not become overly complex FIXME
202 $books->page(2)->count_rs->as_query,
210 JOIN owners owner ON owner.id = me.owner
211 WHERE ( ( ( owner.name = ? OR owner.name = ? ) AND source = ? ) )
212 GROUP BY me.id, me.source, me.owner, me.title, me.price, owner.id, owner.name
219 [ 'owner.name' => 'wiggle' ],
220 [ 'owner.name' => 'woggle' ],
221 [ 'source' => 'Library' ],
229 my $dbh = eval { $schema->storage->_dbh };
230 $dbh->do('DROP TABLE artist') if $dbh;