testing for when resources are nested
[dbsrgits/DBIx-Class-Fixtures.git] / t / lib / DBICTest.pm
CommitLineData
c1a04675 1package # hide from PAUSE
2 DBICTest;
3
4use strict;
5use warnings;
6use DBICTest::Schema;
7
8=head1 NAME
9
10DBICTest - Library to be used by DBIx::Class test scripts.
11
12=head1 SYNOPSIS
13
14 use lib qw(t/lib);
15 use DBICTest;
16 use Test::More;
17
18 my $schema = DBICTest->init_schema();
19
20=head1 DESCRIPTION
21
22This module provides the basic utilities to write tests against
23DBIx::Class.
24
25=head1 METHODS
26
27=head2 init_schema
28
29 my $schema = DBICTest->init_schema(
30 no_deploy=>1,
31 no_populate=>1,
32 );
33
34This method removes the test SQLite database in t/var/DBIxClass.db
35and then creates a new, empty database.
36
37This method will call deploy_schema() by default, unless the
38no_deploy flag is set.
39
40Also, by default, this method will call populate_schema() by
41default, unless the no_deploy or no_populate flags are set.
42
43=cut
44
45sub init_schema {
46 my $self = shift;
47 my %args = @_;
0566a82d 48
c1a04675 49 my $db_file = "t/var/DBIxClass.db";
50
c1a04675 51 mkdir("t/var") unless -d "t/var";
8a1df391 52 if ( !$args{no_deploy} ) {
53 unlink($db_file) if -e $db_file;
54 unlink($db_file . "-journal") if -e $db_file . "-journal";
55 }
c1a04675 56
0566a82d 57 my $dsn = $args{"dsn"} || "dbi:SQLite:${db_file}";
58 my $dbuser = $args{"user"} || '';
59 my $dbpass = $args{"pass"} || '';
c1a04675 60
61 my $schema;
62
63 my @connect_info = ($dsn, $dbuser, $dbpass, { AutoCommit => 1 });
64
65 if ($args{compose_connection}) {
66 $schema = DBICTest::Schema->compose_connection(
67 'DBICTest', @connect_info
68 );
69 } else {
70 $schema = DBICTest::Schema->compose_namespace('DBICTest')
71 ->connect(@connect_info);
72 }
0566a82d 73
c1a04675 74 if ( !$args{no_deploy} ) {
75 __PACKAGE__->deploy_schema( $schema );
76 __PACKAGE__->populate_schema( $schema ) if( !$args{no_populate} );
77 }
78 return $schema;
79}
80
0566a82d 81
82sub get_ddl_file {
83 my $self = shift;
84 my $schema = shift;
85
86 return 't/lib/' . lc($schema->storage->dbh->{Driver}->{Name}) . '.sql';
87}
88
c1a04675 89=head2 deploy_schema
90
91 DBICTest->deploy_schema( $schema );
92
93=cut
94
95sub deploy_schema {
96 my $self = shift;
97 my $schema = shift;
98
b099fee9 99 my $file = shift || $self->get_ddl_file($schema);
a9fe6f36 100 open( my $fh, "<",$file ) or die "couldnt open $file, $!";
c1a04675 101 my $sql;
a9fe6f36 102 { local $/ = undef; $sql = <$fh>; }
885f16cb 103
104 foreach my $line (split(/;\n/, $sql)) {
105 print "$line\n";
106 next if(!$line);
107 next if($line =~ /^--/);
108 next if($line =~ /^BEGIN TRANSACTION/m);
109 next if($line =~ /^COMMIT/m);
110 next if $line =~ /^\s+$/; # skip whitespace only
111
112 $schema->storage->dbh->do($line) || print "Error on SQL: $line\n";
113 }
c1a04675 114}
3c528252 115
116
117=head2 clear_schema
118
119 DBICTest->clear_schema( $schema );
120
121=cut
122
123sub clear_schema {
124 my $self = shift;
125 my $schema = shift;
126
127 foreach my $class ($schema->sources) {
128 $schema->resultset($class)->delete;
129 }
130}
131
c1a04675 132
133=head2 populate_schema
134
135 DBICTest->populate_schema( $schema );
136
137After you deploy your schema you can use this method to populate
138the tables with test data.
139
140=cut
141
142sub populate_schema {
143 my $self = shift;
144 my $schema = shift;
145
146 $schema->populate('Artist', [
147 [ qw/artistid name/ ],
148 [ 1, 'Caterwauler McCrae' ],
149 [ 2, 'Random Boy Band' ],
150 [ 3, 'We Are Goth' ],
017d2ab4 151 [ 4, '' ], # Test overridden new will default name to "Test Name" using use_create => 1.
ae7b4675 152 [ 32948, 'Big PK' ],
c1a04675 153 ]);
154
c7aececc 155 $schema->populate('Artist::WashedUp', [
156 [ qw/fk_artistid/ ],
157 [ 2 ],
158 ]);
159
c1a04675 160 $schema->populate('CD', [
161 [ qw/cdid artist title year/ ],
162 [ 1, 1, "Spoonful of bees", 1999 ],
163 [ 2, 1, "Forkful of bees", 2001 ],
164 [ 3, 1, "Caterwaulin' Blues", 1997 ],
165 [ 4, 2, "Generic Manufactured Singles", 2001 ],
5eab44a9 166 [ 5, 2, "We like girls and stuff", 2003 ],
167 [ 6, 3, "Come Be Depressed With Us", 1998 ],
c1a04675 168 ]);
169
170 $schema->populate('Tag', [
171 [ qw/tagid cd tag/ ],
172 [ 1, 1, "Blue" ],
173 [ 2, 2, "Blue" ],
174 [ 3, 3, "Blue" ],
175 [ 4, 5, "Blue" ],
176 [ 5, 2, "Cheesy" ],
177 [ 6, 4, "Cheesy" ],
178 [ 7, 5, "Cheesy" ],
179 [ 8, 2, "Shiny" ],
180 [ 9, 4, "Shiny" ],
181 ]);
182
183 $schema->populate('Producer', [
184 [ qw/producerid name/ ],
185 [ 1, 'Matt S Trout' ],
186 [ 2, 'Bob The Builder' ],
187 [ 3, 'Fred The Phenotype' ],
188 ]);
189
190 $schema->populate('CD_to_Producer', [
191 [ qw/cd producer/ ],
192 [ 1, 1 ],
193 [ 1, 2 ],
194 [ 1, 3 ],
610be089 195 [ 2, 1 ],
196 [ 2, 2 ],
197 [ 3, 3 ],
c1a04675 198 ]);
199
200 $schema->populate('Track', [
0566a82d 201 [ qw/trackid cd position title last_updated_on/ ],
c1a04675 202 [ 4, 2, 1, "Stung with Success"],
203 [ 5, 2, 2, "Stripy"],
204 [ 6, 2, 3, "Sticky Honey"],
205 [ 7, 3, 1, "Yowlin"],
206 [ 8, 3, 2, "Howlin"],
0566a82d 207 [ 9, 3, 3, "Fowlin", '2007-10-20 00:00:00'],
c1a04675 208 [ 10, 4, 1, "Boring Name"],
209 [ 11, 4, 2, "Boring Song"],
210 [ 12, 4, 3, "No More Ideas"],
211 [ 13, 5, 1, "Sad"],
212 [ 14, 5, 2, "Under The Weather"],
213 [ 15, 5, 3, "Suicidal"],
214 [ 16, 1, 1, "The Bees Knees"],
215 [ 17, 1, 2, "Apiary"],
216 [ 18, 1, 3, "Beehind You"],
217 ]);
218}
219
2201;