X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F746mssql.t;h=b1871f13edd8580ca8cb31f126f88c922f80d1dc;hb=259c0e40224d4ff95d347eafa20aae7c6ecc2ec7;hp=9d46eea5ebdf772100a9f39f9d4411b253bf15e9;hpb=2eebd801e7300ecc24a68c0062f35aa72775908f;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/746mssql.t b/t/746mssql.t index 9d46eea..b1871f1 100644 --- a/t/746mssql.t +++ b/t/746mssql.t @@ -1,5 +1,5 @@ use strict; -use warnings; +use warnings; use Test::More; use lib qw(t/lib); @@ -10,25 +10,40 @@ my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_ODBC_${_}" } qw/DSN USER PA plan skip_all => 'Set $ENV{DBICTEST_MSSQL_ODBC_DSN}, _USER and _PASS to run this test' unless ($dsn && $user); -plan tests => 12; +plan tests => 21; my $schema = DBICTest::Schema->connect($dsn, $user, $pass, {AutoCommit => 1}); -$schema->storage->ensure_connected; -isa_ok( $schema->storage, 'DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server' ); +{ + no warnings 'redefine'; + my $connect_count = 0; + my $orig_connect = \&DBI::connect; + local *DBI::connect = sub { $connect_count++; goto &$orig_connect }; + + $schema->storage->ensure_connected; -my $dbh = $schema->storage->_dbh; + is( $connect_count, 1, 'only one connection made'); +} + +isa_ok( $schema->storage, 'DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server' ); -eval { $dbh->do("DROP TABLE artist") }; +$schema->storage->dbh_do (sub { + my ($storage, $dbh) = @_; + eval { $dbh->do("DROP TABLE artist") }; + $dbh->do(<<'SQL'); - $dbh->do(<<''); CREATE TABLE artist ( artistid INT IDENTITY NOT NULL, - name VARCHAR(255), + name VARCHAR(100), + rank INT NOT NULL DEFAULT '13', charfield CHAR(10) NULL, primary key(artistid) ) +SQL + +}); + my %seen_id; # fresh $schema so we start unconnected @@ -58,10 +73,117 @@ $it->next; is( $it->next->name, "Artist 2", "iterator->next ok" ); is( $it->next, undef, "next past end of resultset ok" ); +$schema->storage->dbh_do (sub { + my ($storage, $dbh) = @_; + eval { $dbh->do("DROP TABLE Owners") }; + eval { $dbh->do("DROP TABLE Books") }; + $dbh->do(<<'SQL'); + + +CREATE TABLE Books ( + id INT IDENTITY (1, 1) NOT NULL, + source VARCHAR(100), + owner INT, + title VARCHAR(10), + price INT NULL +) + +CREATE TABLE Owners ( + id INT IDENTITY (1, 1) NOT NULL, + [name] VARCHAR(100), +) + +SET IDENTITY_INSERT Owners ON + +SQL + +}); +$schema->populate ('Owners', [ + [qw/id [name] /], + [qw/1 wiggle/], + [qw/2 woggle/], + [qw/3 boggle/], + [qw/4 fREW/], + [qw/5 fRIOUX/], + [qw/6 fROOH/], + [qw/7 fRUE/], + [qw/8 fISMBoC/], + [qw/9 station/], + [qw/10 mirror/], + [qw/11 dimly/], + [qw/12 face_to_face/], + [qw/13 icarus/], + [qw/14 dream/], + [qw/15 dyrstyggyr/], +]); + +$schema->populate ('BooksInLibrary', [ + [qw/source owner title /], + [qw/Library 1 secrets1/], + [qw/Eatery 1 secrets2/], + [qw/Library 2 secrets3/], + [qw/Library 3 secrets4/], + [qw/Eatery 3 secrets5/], + [qw/Library 4 secrets6/], + [qw/Library 5 secrets7/], + [qw/Eatery 5 secrets8/], + [qw/Library 6 secrets9/], + [qw/Library 7 secrets10/], + [qw/Eatery 7 secrets11/], + [qw/Library 8 secrets12/], +]); + +# +# try a distinct + prefetch on tables with identically named columns +# + +{ + # try a ->has_many direction (due to a 'multi' accessor the select/group_by group is collapsed) + my $owners = $schema->resultset ('Owners')->search ({ + 'books.id' => { '!=', undef } + }, { + prefetch => 'books', + distinct => 1, + order_by => 'name', + page => 2, + rows => 5, + }); + + my $owners2 = $schema->resultset ('Owners')->search ({ id => { -in => $owners->get_column ('me.id')->as_query }}); + for ($owners, $owners2) { + is ($_->all, 2, 'Prefetched grouped search returns correct number of rows'); + is ($_->count, 2, 'Prefetched grouped search returns correct count'); + } + + # try a ->belongs_to direction (no select collapse) + my $books = $schema->resultset ('BooksInLibrary')->search ({ + 'owner.name' => 'wiggle' + }, { + prefetch => 'owner', + distinct => 1, + order_by => 'name', + page => 2, + rows => 5, + }); + + my $books2 = $schema->resultset ('BooksInLibrary')->search ({ id => { -in => $books->get_column ('me.id')->as_query }}); + for ($books, $books2) { + is ($_->all, 1, 'Prefetched grouped search returns correct number of rows'); + is ($_->count, 1, 'Prefetched grouped search returns correct count'); + } + + #my $result = $schema->resultset('BooksInLibrary')->search(undef, { + #page => 1, + #rows => 25, + #order_by => ['name', 'title'], + #prefetch => 'owner' + #})->first; + +} # clean up our mess END { - $dbh = eval { $schema->storage->_dbh }; + my $dbh = eval { $schema->storage->_dbh }; $dbh->do('DROP TABLE artist') if $dbh; } - +# vim:sw=2 sts=2