- Refactored some, moved more stuff over to using get/store column instead of direct...
[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
25This provides a simple base class for DBIx::Class tests using SQLite.
26Each class for the test should inherit from this, provide a create_sql()
27method which returns a string representing the SQL used to create the
28table for the class, and then call set_table() to create the table, and
29tie it to the class.
30
31=cut
32
33use strict;
34
c1d23573 35use base qw/DBIx::Class::CDBICompat DBIx::Class::PK::Auto::SQLite DBIx::Class::PK::Auto DBIx::Class::Core/;
ea2e61bf 36use File::Temp qw/tempfile/;
37my (undef, $DB) = tempfile();
38END { unlink $DB if -e $DB }
39
40my @DSN = ("dbi:SQLite:dbname=$DB", '', '', { AutoCommit => 1 });
41
42__PACKAGE__->connection(@DSN);
a3018bd3 43__PACKAGE__->set_sql(_table_pragma => 'PRAGMA table_info(__TABLE__)');
44__PACKAGE__->set_sql(_create_me => 'CREATE TABLE __TABLE__ (%s)');
ea2e61bf 45
46=head1 METHODS
47
48=head2 set_table
49
50 __PACKAGE__->set_table('test');
51
52This combines creating the table with the normal DBIx::Class table()
53call.
54
55=cut
56
57sub set_table {
58 my ($class, $table) = @_;
59 $class->table($table);
60 $class->_create_test_table;
61}
62
63sub _create_test_table {
64 my $class = shift;
a3018bd3 65 my @vals = $class->sql__table_pragma->select_row;
66 $class->sql__create_me($class->create_sql)->execute unless @vals;
67# my @vals = $class->_sql_to_sth(
68# 'PRAGMA table_info(__TABLE__)')->select_row;
69# $class->_sql_to_sth(
70# 'CREATE TABLE '.$class->table.' ('.$class->create_sql.')'
71# )->execute unless @vals;
ea2e61bf 72}
73
74=head2 create_sql (abstract)
75
76 sub create_sql {
77 return q{
78 id INTEGER PRIMARY KEY,
79 name CHAR(40),
80 film VARCHAR(255),
81 salary INT
82 }
83 }
84
85This should return, as a text string, the schema for the table represented
86by this class.
87
88=cut
89
90sub create_sql { die "create_sql() not implemented by $_[0]\n" }
91
921;