1 package # hide from PAUSE
12 DBICTest - Library to be used by DBIx::Class test scripts.
20 my $schema = DBICTest->init_schema();
24 This module provides the basic utilities to write tests against
31 my $schema = DBICTest->init_schema(
36 This method removes the test SQLite database in t/var/DBIxClass.db
37 and then creates a new, empty database.
39 This method will call deploy_schema() by default, unless the
40 no_deploy flag is set.
42 Also, by default, this method will call populate_schema() by
43 default, unless the no_deploy or no_populate flags are set.
50 my $db_file = temp_root->file("main.db");
52 my $dsn = $ENV{"DBICTEST_DSN"} || "dbi:SQLite:${db_file}";
53 my $dbuser = $ENV{"DBICTEST_DBUSER"} || '';
54 my $dbpass = $ENV{"DBICTEST_DBPASS"} || '';
57 my @connect_info = ($dsn, $dbuser, $dbpass, { AutoCommit => 1 });
59 if ($args{compose_connection}) {
60 $schema = DBICTest::Schema->compose_connection(
61 'DBICTest', @connect_info
64 $schema = DBICTest::Schema->compose_namespace('DBICTest')
65 ->connect(@connect_info);
66 print STDERR "Created Schema: ", ref($schema), "\n";
68 # my $schema = DBICTest::Schema->compose_connection('DBICTest' => $dsn, $dbuser, $dbpass);
69 # $schema->storage->on_connect_do(['PRAGMA synchronous = OFF']);
70 if ( !$args{no_deploy} ) {
71 __PACKAGE__->deploy_schema( $schema );
72 __PACKAGE__->populate_schema( $schema ) if( !$args{no_populate} );
79 DBICTest->deploy_schema( $schema );
81 This method does one of two things to the schema. It can either call
82 the experimental $schema->deploy() if the DBICTEST_SQLT_DEPLOY environment
83 variable is set, otherwise the default is to read in the t/lib/sqlite.sql
84 file and execute the SQL within. Either way you end up with a fresh set
85 of tables for testing.
93 # if ($ENV{"DBICTEST_SQLT_DEPLOY"}) {
94 return $schema->deploy();
96 # open IN, "t/lib/sqlite.sql";
98 # { local $/ = undef; $sql = <IN>; }
100 # ($schema->storage->dbh->do($_) || print "Error on SQL: $_\n") for split(/;\n/, $sql);
104 =head2 populate_schema
106 DBICTest->populate_schema( $schema );
108 After you deploy your schema you can use this method to populate
109 the tables with test data.
113 sub populate_schema {
117 $schema->populate('Artist', [
118 [ qw/artistid name/ ],
119 [ 1, 'Caterwauler McCrae' ],
120 [ 2, 'Random Boy Band' ],
121 [ 3, 'We Are Goth' ],
124 $schema->populate('CD', [
125 [ qw/cdid artist title year/ ],
126 [ 1, 1, "Spoonful of bees", 1999 ],
127 [ 2, 1, "Forkful of bees", 2001 ],
128 [ 3, 1, "Caterwaulin' Blues", 1997 ],
129 [ 4, 2, "Generic Manufactured Singles", 2001 ],
130 [ 5, 3, "Come Be Depressed With Us", 1998 ],
133 $schema->populate('LinerNotes', [
134 [ qw/liner_id notes/ ],
135 [ 2, "Buy Whiskey!" ],
137 [ 5, "Kill Yourself!" ],
140 $schema->populate('Tag', [
141 [ qw/tagid cd tag/ ],
153 $schema->populate('TwoKeys', [
160 $schema->populate('FourKeys', [
161 [ qw/foo bar hello goodbye sensors/ ],
162 [ 1, 2, 3, 4, 'online' ],
163 [ 5, 4, 3, 6, 'offline' ],
166 $schema->populate('OneKey', [
167 [ qw/id artist cd/ ],
173 $schema->populate('SelfRef', [
179 $schema->populate('SelfRefAlias', [
180 [ qw/self_ref alias/ ],
184 $schema->populate('ArtistUndirectedMap', [
189 $schema->populate('Producer', [
190 [ qw/producerid name/ ],
191 [ 1, 'Matt S Trout' ],
192 [ 2, 'Bob The Builder' ],
193 [ 3, 'Fred The Phenotype' ],
196 $schema->populate('CD_to_Producer', [
203 $schema->populate('TreeLike', [
204 [ qw/id parent name/ ],
213 $schema->populate('Track', [
214 [ qw/trackid cd position title/ ],
215 [ 4, 2, 1, "Stung with Success"],
216 [ 5, 2, 2, "Stripy"],
217 [ 6, 2, 3, "Sticky Honey"],
218 [ 7, 3, 1, "Yowlin"],
219 [ 8, 3, 2, "Howlin"],
220 [ 9, 3, 3, "Fowlin"],
221 [ 10, 4, 1, "Boring Name"],
222 [ 11, 4, 2, "Boring Song"],
223 [ 12, 4, 3, "No More Ideas"],
225 [ 14, 5, 2, "Under The Weather"],
226 [ 15, 5, 3, "Suicidal"],
227 [ 16, 1, 1, "The Bees Knees"],
228 [ 17, 1, 2, "Apiary"],
229 [ 18, 1, 3, "Beehind You"],
232 $schema->populate('Event', [
233 [ qw/id starts_at created_on/ ],
234 [ 1, '2006-04-25 22:24:33', '2006-06-22 21:00:05'],
237 $schema->populate('Link', [
242 $schema->populate('Bookmark', [
247 $schema->populate('Collection', [
248 [ qw/collectionid name/ ],
253 $schema->populate('CollectionObject', [
254 [ qw/collection object/ ],
262 $schema->populate('TypedObject', [
263 [ qw/objectid type value/ ],
264 [ 1, "pointy", "Awl" ],
265 [ 2, "round", "Bearing" ],
266 [ 3, "pointy", "Knife" ],
267 [ 4, "pointy", "Tooth" ],
268 [ 5, "round", "Head" ],
271 $schema->populate('Owners', [
272 [ qw/ownerid name/ ],
277 $schema->populate('BooksInLibrary', [
278 [ qw/id owner title source/ ],
279 [ 1, 1, "Programming Perl", "Library" ],
280 [ 2, 1, "Dynamical Systems", "Library" ],
281 [ 3, 2, "Best Recipe Cookbook", "Library" ],