converted the vendor tests to use schema objects intead of schema classes
[dbsrgits/DBIx-Class.git] / t / 93nobindvars.t
1 use strict;
2 use warnings;  
3
4 # Copied from 71mysql.t, manually using NoBindVars.  This is to give that code
5 #  wider testing, since virtually nobody who regularly runs the test suite
6 #  is using DBD::Sybase+FreeTDS+MSSQL -- blblack
7
8 use Test::More;
9 use lib qw(t/lib);
10 use DBICTest;
11 use DBI::Const::GetInfoType;
12
13 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/};
14
15 #warn "$dsn $user $pass";
16
17 plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test'
18   unless ($dsn && $user);
19
20 plan tests => 4;
21
22 { # Fake storage driver for mysql + no bind variables
23     package DBIx::Class::Storage::DBI::MySQLNoBindVars;
24     use base qw/
25         DBIx::Class::Storage::DBI::mysql
26         DBIx::Class::Storage::DBI::NoBindVars
27     /;
28     $INC{'DBIx/Class/Storage/DBI/MySQLNoBindVars.pm'} = 1;
29 }
30
31 my $schema = DBICTest::Schema->clone;
32 $schema->storage_type('::DBI::MySQLNoBindVars');
33 $schema->connection($dsn, $user, $pass);
34
35 my $dbh = $schema->storage->dbh;
36
37 $dbh->do("DROP TABLE IF EXISTS artist;");
38
39 $dbh->do("CREATE TABLE artist (artistid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255), charfield CHAR(10));");
40
41 $schema->class('Artist')->load_components('PK::Auto');
42
43 # test primary key handling
44 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
45 ok($new->artistid, "Auto-PK worked");
46
47 # test LIMIT support
48 for (1..6) {
49     $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
50 }
51 my $it = $schema->resultset('Artist')->search( {},
52     { rows => 3,
53       offset => 2,
54       order_by => 'artistid' }
55 );
56 is( $it->count, 3, "LIMIT count ok" );
57 is( $it->next->name, "Artist 2", "iterator->next ok" );
58 $it->next;
59 $it->next;
60 is( $it->next, undef, "next past end of resultset ok" );
61
62 # clean up our mess
63 END {
64     $dbh->do("DROP TABLE artist");
65 }