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(
34 This method removes the test SQLite database in t/var/DBIxClass.db
35 and then creates a new, empty database.
37 This method will call deploy_schema() by default, unless the
38 no_deploy flag is set.
40 Also, by default, this method will call populate_schema() by
41 default, unless the no_deploy or no_populate flags are set.
49 my $db_file = "t/var/DBIxClass.db";
51 mkdir("t/var") unless -d "t/var";
52 if ( !$args{no_deploy} ) {
53 unlink($db_file) if -e $db_file;
54 unlink($db_file . "-journal") if -e $db_file . "-journal";
57 my $dsn = $args{"dsn"} || "dbi:SQLite:${db_file}";
58 my $dbuser = $args{"user"} || '';
59 my $dbpass = $args{"pass"} || '';
63 my @connect_info = ($dsn, $dbuser, $dbpass, { AutoCommit => 1 });
65 if ($args{compose_connection}) {
66 $schema = DBICTest::Schema->compose_connection(
67 'DBICTest', @connect_info
70 $schema = DBICTest::Schema->compose_namespace('DBICTest')
71 ->connect(@connect_info);
74 if ( !$args{no_deploy} ) {
75 __PACKAGE__->deploy_schema( $schema );
76 __PACKAGE__->populate_schema( $schema ) if( !$args{no_populate} );
86 return 't/lib/' . lc($schema->storage->dbh->{Driver}->{Name}) . '.sql';
91 DBICTest->deploy_schema( $schema );
99 my $file = shift || $self->get_ddl_file($schema);
102 { local $/ = undef; $sql = <IN>; }
104 ($schema->storage->dbh->do($_) || print "Error on SQL: $_\n") for split(/;\n/, $sql);
110 DBICTest->clear_schema( $schema );
118 foreach my $class ($schema->sources) {
119 $schema->resultset($class)->delete;
124 =head2 populate_schema
126 DBICTest->populate_schema( $schema );
128 After you deploy your schema you can use this method to populate
129 the tables with test data.
133 sub populate_schema {
137 $schema->populate('Artist', [
138 [ qw/artistid name/ ],
139 [ 1, 'Caterwauler McCrae' ],
140 [ 2, 'Random Boy Band' ],
141 [ 3, 'We Are Goth' ],
144 $schema->populate('CD', [
145 [ qw/cdid artist title year/ ],
146 [ 1, 1, "Spoonful of bees", 1999 ],
147 [ 2, 1, "Forkful of bees", 2001 ],
148 [ 3, 1, "Caterwaulin' Blues", 1997 ],
149 [ 4, 2, "Generic Manufactured Singles", 2001 ],
150 [ 5, 2, "We like girls and stuff", 2003 ],
151 [ 6, 3, "Come Be Depressed With Us", 1998 ],
154 $schema->populate('Tag', [
155 [ qw/tagid cd tag/ ],
167 $schema->populate('Producer', [
168 [ qw/producerid name/ ],
169 [ 1, 'Matt S Trout' ],
170 [ 2, 'Bob The Builder' ],
171 [ 3, 'Fred The Phenotype' ],
174 $schema->populate('CD_to_Producer', [
184 $schema->populate('Track', [
185 [ qw/trackid cd position title last_updated_on/ ],
186 [ 4, 2, 1, "Stung with Success"],
187 [ 5, 2, 2, "Stripy"],
188 [ 6, 2, 3, "Sticky Honey"],
189 [ 7, 3, 1, "Yowlin"],
190 [ 8, 3, 2, "Howlin"],
191 [ 9, 3, 3, "Fowlin", '2007-10-20 00:00:00'],
192 [ 10, 4, 1, "Boring Name"],
193 [ 11, 4, 2, "Boring Song"],
194 [ 12, 4, 3, "No More Ideas"],
196 [ 14, 5, 2, "Under The Weather"],
197 [ 15, 5, 3, "Suicidal"],
198 [ 16, 1, 1, "The Bees Knees"],
199 [ 17, 1, 2, "Apiary"],
200 [ 18, 1, 3, "Beehind You"],