moved tests to compose_namespace instead of compose_connection, marked compose_connec...
[dbsrgits/DBIx-Class.git] / t / 93nobindvars.t
CommitLineData
d5130dd2 1use strict;
2use 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
8use Test::More;
9use lib qw(t/lib);
10use DBICTest;
11use DBI::Const::GetInfoType;
12
13my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/};
14
15#warn "$dsn $user $pass";
16
17plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test'
18 unless ($dsn && $user);
19
20plan 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
31DBICTest::Schema->storage(undef); # just in case?
32DBICTest::Schema->storage_type('::DBI::MySQLNoBindVars');
c216324a 33DBICTest::Schema->compose_namespace('MySQLTest' => $dsn, $user, $pass);
d5130dd2 34
35my $dbh = MySQLTest->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#'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
42
43MySQLTest::Artist->load_components('PK::Auto');
44
45# test primary key handling
46my $new = MySQLTest::Artist->create({ name => 'foo' });
47ok($new->artistid, "Auto-PK worked");
48
49# test LIMIT support
50for (1..6) {
51 MySQLTest::Artist->create({ name => 'Artist ' . $_ });
52}
53my $it = MySQLTest::Artist->search( {},
54 { rows => 3,
55 offset => 2,
56 order_by => 'artistid' }
57);
58is( $it->count, 3, "LIMIT count ok" );
59is( $it->next->name, "Artist 2", "iterator->next ok" );
60$it->next;
61$it->next;
62is( $it->next, undef, "next past end of resultset ok" );
63
64# clean up our mess
65$dbh->do("DROP TABLE artist");