Switch the main dev branch back to 'master'
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / DBIC / Test / SQLite.pm
CommitLineData
2f1d53c5 1package # hide from PAUSE
93b52b2c 2 DBIC::Test::SQLite;
ea2e61bf 3
83eef562 4use strict;
5use warnings;
6
ea2e61bf 7=head1 NAME
8
b8e1e21f 9DBIx::Class::Test::SQLite - Base class for running Class::DBI tests against DBIx::Class compat layer, shamelessly ripped from Class::DBI::Test::SQLite
ea2e61bf 10
11=head1 SYNOPSIS
12
75d07914 13 use base 'DBIx::Class::Test::SQLite';
14
15 __PACKAGE__->set_table('test');
16 __PACKAGE__->columns(All => qw/id name film salary/);
17
18 sub create_sql {
19 return q{
20 id INTEGER PRIMARY KEY,
21 name CHAR(40),
22 film VARCHAR(255),
23 salary INT
24 }
25 }
8273e845 26
ea2e61bf 27=head1 DESCRIPTION
28
c7ce65e6 29This provides a simple base class for DBIx::Class::CDBICompat tests using
30SQLite. Each class for the test should inherit from this, provide a
31create_sql() method which returns a string representing the SQL used to
32create the table for the class, and then call set_table() to create the
33table, and tie it to the class.
ea2e61bf 34
35=cut
36
1b658919 37# adding implicit search criteria to the iterator will alter the test
38# mechanics - leave everything as-is instead, and hope SQLite won't
39# change too much
40BEGIN { $ENV{DBIC_SHUFFLE_UNORDERED_RESULTSETS} = 0 }
41
d9bd5195 42use lib 't/lib';
43use DBICTest;
44
126042ee 45use base qw/DBIx::Class/;
46
eb47985e 47__PACKAGE__->load_components(qw/CDBICompat Core DB/);
126042ee 48
8d6b1478 49my $DB = DBICTest->_sqlite_dbfilename;
126042ee 50my @DSN = ("dbi:SQLite:dbname=$DB", '', '', { AutoCommit => 1, RaiseError => 1 });
ea2e61bf 51
52__PACKAGE__->connection(@DSN);
a3018bd3 53__PACKAGE__->set_sql(_table_pragma => 'PRAGMA table_info(__TABLE__)');
54__PACKAGE__->set_sql(_create_me => 'CREATE TABLE __TABLE__ (%s)');
bfb2bd4f 55__PACKAGE__->storage->dbh->do("PRAGMA synchronous = OFF");
ea2e61bf 56
57=head1 METHODS
58
59=head2 set_table
60
75d07914 61 __PACKAGE__->set_table('test');
ea2e61bf 62
63This combines creating the table with the normal DBIx::Class table()
64call.
65
66=cut
67
68sub set_table {
75d07914 69 my ($class, $table) = @_;
70 $class->table($table);
71 $class->_create_test_table;
ea2e61bf 72}
73
74sub _create_test_table {
75d07914 75 my $class = shift;
76 my @vals = $class->sql__table_pragma->select_row;
77 $class->sql__create_me($class->create_sql)->execute unless @vals;
ea2e61bf 78}
79
87c4e602 80=head2 create_sql
81
82This is an abstract method you must override.
ea2e61bf 83
75d07914 84 sub create_sql {
85 return q{
86 id INTEGER PRIMARY KEY,
87 name CHAR(40),
88 film VARCHAR(255),
89 salary INT
90 }
91 }
ea2e61bf 92
93This should return, as a text string, the schema for the table represented
94by this class.
95
96=cut
97
98sub create_sql { die "create_sql() not implemented by $_[0]\n" }
99
1001;