1 package # hide from PAUSE
10 DBICTest - Library to be used by DBIx::Class test scripts.
18 my $schema = DBICTest->init_schema();
22 This module provides the basic utilities to write tests against
29 my $schema = DBICTest->init_schema(
32 storage_type=>'::DBI::Replicated',
34 balancer_type=>'DBIx::Class::Storage::DBI::Replicated::Balancer::Random'
38 This method removes the test SQLite database in t/var/DBIxClass.db
39 and then creates a new, empty database.
41 This method will call deploy_schema() by default, unless the
42 no_deploy flag is set.
44 Also, by default, this method will call populate_schema() by
45 default, unless the no_deploy or no_populate flags are set.
50 return $ENV{"DBICTEST_DSN"} ? 1:0;
53 sub _sqlite_dbfilename {
54 return "t/var/DBIxClass.db";
60 return $self->_sqlite_dbfilename if $args{sqlite_use_file} or $ENV{"DBICTEST_SQLITE_USE_FILE"};
67 my $db_file = $self->_sqlite_dbname(%args);
69 unlink($db_file) if -e $db_file;
70 unlink($db_file . "-journal") if -e $db_file . "-journal";
71 mkdir("t/var") unless -d "t/var";
73 my $dsn = $ENV{"DBICTEST_DSN"} || "dbi:SQLite:${db_file}";
74 my $dbuser = $ENV{"DBICTEST_DBUSER"} || '';
75 my $dbpass = $ENV{"DBICTEST_DBPASS"} || '';
77 my @connect_info = ($dsn, $dbuser, $dbpass, { AutoCommit => 1 });
88 if ($args{compose_connection}) {
89 $schema = DBICTest::Schema->compose_connection(
90 'DBICTest', $self->_database(%args)
93 $schema = DBICTest::Schema->compose_namespace('DBICTest');
95 if( $args{storage_type}) {
96 $schema->storage_type($args{storage_type});
98 if ( !$args{no_connect} ) {
99 $schema = $schema->connect($self->_database(%args));
100 $schema->storage->on_connect_do(['PRAGMA synchronous = OFF'])
101 unless $self->has_custom_dsn;
103 if ( !$args{no_deploy} ) {
104 __PACKAGE__->deploy_schema( $schema, $args{deploy_args} );
105 __PACKAGE__->populate_schema( $schema )
106 if( !$args{no_populate} );
113 DBICTest->deploy_schema( $schema );
115 This method does one of two things to the schema. It can either call
116 the experimental $schema->deploy() if the DBICTEST_SQLT_DEPLOY environment
117 variable is set, otherwise the default is to read in the t/lib/sqlite.sql
118 file and execute the SQL within. Either way you end up with a fresh set
119 of tables for testing.
126 my $args = shift || {};
128 if ($ENV{"DBICTEST_SQLT_DEPLOY"}) {
129 $schema->deploy($args);
131 open IN, "t/lib/sqlite.sql";
133 { local $/ = undef; $sql = <IN>; }
135 for my $chunk ( split (/;\s*\n+/, $sql) ) {
136 if ( $chunk =~ / ^ (?! --\s* ) \S /xm ) { # there is some real sql in the chunk - a non-space at the start of the string which is not a comment
137 $schema->storage->dbh->do($chunk) or print "Error on SQL: $chunk\n";
144 =head2 populate_schema
146 DBICTest->populate_schema( $schema );
148 After you deploy your schema you can use this method to populate
149 the tables with test data.
153 sub populate_schema {
157 $schema->populate('Artist', [
158 [ qw/artistid name/ ],
159 [ 1, 'Caterwauler McCrae' ],
160 [ 2, 'Random Boy Band' ],
161 [ 3, 'We Are Goth' ],
164 $schema->populate('CD', [
165 [ qw/cdid artist title year/ ],
166 [ 1, 1, "Spoonful of bees", 1999 ],
167 [ 2, 1, "Forkful of bees", 2001 ],
168 [ 3, 1, "Caterwaulin' Blues", 1997 ],
169 [ 4, 2, "Generic Manufactured Singles", 2001 ],
170 [ 5, 3, "Come Be Depressed With Us", 1998 ],
173 $schema->populate('LinerNotes', [
174 [ qw/liner_id notes/ ],
175 [ 2, "Buy Whiskey!" ],
177 [ 5, "Kill Yourself!" ],
180 $schema->populate('Tag', [
181 [ qw/tagid cd tag/ ],
193 $schema->populate('TwoKeys', [
200 $schema->populate('FourKeys', [
201 [ qw/foo bar hello goodbye sensors/ ],
202 [ 1, 2, 3, 4, 'online' ],
203 [ 5, 4, 3, 6, 'offline' ],
206 $schema->populate('OneKey', [
207 [ qw/id artist cd/ ],
213 $schema->populate('SelfRef', [
219 $schema->populate('SelfRefAlias', [
220 [ qw/self_ref alias/ ],
224 $schema->populate('ArtistUndirectedMap', [
229 $schema->populate('Producer', [
230 [ qw/producerid name/ ],
231 [ 1, 'Matt S Trout' ],
232 [ 2, 'Bob The Builder' ],
233 [ 3, 'Fred The Phenotype' ],
236 $schema->populate('CD_to_Producer', [
243 $schema->populate('TreeLike', [
244 [ qw/id parent name/ ],
245 [ 1, undef, 'root' ],
254 $schema->populate('Track', [
255 [ qw/trackid cd position title/ ],
256 [ 4, 2, 1, "Stung with Success"],
257 [ 5, 2, 2, "Stripy"],
258 [ 6, 2, 3, "Sticky Honey"],
259 [ 7, 3, 1, "Yowlin"],
260 [ 8, 3, 2, "Howlin"],
261 [ 9, 3, 3, "Fowlin"],
262 [ 10, 4, 1, "Boring Name"],
263 [ 11, 4, 2, "Boring Song"],
264 [ 12, 4, 3, "No More Ideas"],
266 [ 14, 5, 2, "Under The Weather"],
267 [ 15, 5, 3, "Suicidal"],
268 [ 16, 1, 1, "The Bees Knees"],
269 [ 17, 1, 2, "Apiary"],
270 [ 18, 1, 3, "Beehind You"],
273 $schema->populate('Event', [
274 [ qw/id starts_at created_on varchar_date varchar_datetime skip_inflation/ ],
275 [ 1, '2006-04-25 22:24:33', '2006-06-22 21:00:05', '2006-07-23', '2006-05-22 19:05:07', '2006-04-21 18:04:06'],
278 $schema->populate('Link', [
279 [ qw/id url title/ ],
283 $schema->populate('Bookmark', [
288 $schema->populate('Collection', [
289 [ qw/collectionid name/ ],
294 $schema->populate('TypedObject', [
295 [ qw/objectid type value/ ],
296 [ 1, "pointy", "Awl" ],
297 [ 2, "round", "Bearing" ],
298 [ 3, "pointy", "Knife" ],
299 [ 4, "pointy", "Tooth" ],
300 [ 5, "round", "Head" ],
302 $schema->populate('CollectionObject', [
303 [ qw/collection object/ ],
311 $schema->populate('Owners', [
312 [ qw/ownerid name/ ],
317 $schema->populate('BooksInLibrary', [
318 [ qw/id owner title source price/ ],
319 [ 1, 1, "Programming Perl", "Library", 23 ],
320 [ 2, 1, "Dynamical Systems", "Library", 37 ],
321 [ 3, 2, "Best Recipe Cookbook", "Library", 65 ],