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