svn-log stealer script
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Test / SQLite.pm
CommitLineData
ea2e61bf 1package DBIx::Class::Test::SQLite;
2
3=head1 NAME
4
b8e1e21f 5DBIx::Class::Test::SQLite - Base class for running Class::DBI tests against DBIx::Class compat layer, shamelessly ripped from Class::DBI::Test::SQLite
ea2e61bf 6
7=head1 SYNOPSIS
8
9 use base 'DBIx::Class::Test::SQLite';
10
11 __PACKAGE__->set_table('test');
12 __PACKAGE__->columns(All => qw/id name film salary/);
13
14 sub create_sql {
15 return q{
16 id INTEGER PRIMARY KEY,
17 name CHAR(40),
18 film VARCHAR(255),
19 salary INT
20 }
21 }
22
23=head1 DESCRIPTION
24
c7ce65e6 25This provides a simple base class for DBIx::Class::CDBICompat tests using
26SQLite. Each class for the test should inherit from this, provide a
27create_sql() method which returns a string representing the SQL used to
28create the table for the class, and then call set_table() to create the
29table, and tie it to the class.
ea2e61bf 30
31=cut
32
33use strict;
34
126042ee 35use base qw/DBIx::Class/;
36
77254782 37__PACKAGE__->load_components(qw/PK::Auto CDBICompat Core DB/);
126042ee 38
ea2e61bf 39use File::Temp qw/tempfile/;
40my (undef, $DB) = tempfile();
41END { unlink $DB if -e $DB }
42
126042ee 43my @DSN = ("dbi:SQLite:dbname=$DB", '', '', { AutoCommit => 1, RaiseError => 1 });
ea2e61bf 44
45__PACKAGE__->connection(@DSN);
a3018bd3 46__PACKAGE__->set_sql(_table_pragma => 'PRAGMA table_info(__TABLE__)');
47__PACKAGE__->set_sql(_create_me => 'CREATE TABLE __TABLE__ (%s)');
bfb2bd4f 48__PACKAGE__->storage->dbh->do("PRAGMA synchronous = OFF");
ea2e61bf 49
50=head1 METHODS
51
52=head2 set_table
53
54 __PACKAGE__->set_table('test');
55
56This combines creating the table with the normal DBIx::Class table()
57call.
58
59=cut
60
61sub set_table {
62 my ($class, $table) = @_;
63 $class->table($table);
64 $class->_create_test_table;
65}
66
67sub _create_test_table {
68 my $class = shift;
a3018bd3 69 my @vals = $class->sql__table_pragma->select_row;
70 $class->sql__create_me($class->create_sql)->execute unless @vals;
ea2e61bf 71}
72
87c4e602 73=head2 create_sql
74
75This is an abstract method you must override.
ea2e61bf 76
77 sub create_sql {
78 return q{
79 id INTEGER PRIMARY KEY,
80 name CHAR(40),
81 film VARCHAR(255),
82 salary INT
83 }
84 }
85
86This should return, as a text string, the schema for the table represented
87by this class.
88
89=cut
90
91sub create_sql { die "create_sql() not implemented by $_[0]\n" }
92
931;