testing for when resources are nested
[dbsrgits/DBIx-Class-Fixtures.git] / t / lib / DBICTest.pm
1 package # hide from PAUSE 
2     DBICTest;
3
4 use strict;
5 use warnings;
6 use DBICTest::Schema;
7
8 =head1 NAME
9
10 DBICTest - 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
22 This module provides the basic utilities to write tests against 
23 DBIx::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
34 This method removes the test SQLite database in t/var/DBIxClass.db 
35 and then creates a new, empty database.
36
37 This method will call deploy_schema() by default, unless the 
38 no_deploy flag is set.
39
40 Also, by default, this method will call populate_schema() by 
41 default, unless the no_deploy or no_populate flags are set.
42
43 =cut
44
45 sub init_schema {
46     my $self = shift;
47     my %args = @_;
48
49     my $db_file = "t/var/DBIxClass.db";
50
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";
55     }
56
57     my $dsn = $args{"dsn"} || "dbi:SQLite:${db_file}";
58     my $dbuser = $args{"user"} || '';
59     my $dbpass = $args{"pass"} || '';
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     }
73
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
81
82 sub 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
89 =head2 deploy_schema
90
91   DBICTest->deploy_schema( $schema );
92
93 =cut
94
95 sub deploy_schema {
96     my $self = shift;
97     my $schema = shift;
98
99     my $file = shift || $self->get_ddl_file($schema);
100     open(  my $fh, "<",$file ) or die "couldnt open $file, $!";
101     my $sql;
102     { local $/ = undef; $sql = <$fh>; }
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     }
114 }
115  
116
117 =head2 clear_schema
118
119   DBICTest->clear_schema( $schema );
120
121 =cut
122
123 sub 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
132
133 =head2 populate_schema
134
135   DBICTest->populate_schema( $schema );
136
137 After you deploy your schema you can use this method to populate 
138 the tables with test data.
139
140 =cut
141
142 sub 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' ],
151         [ 4, '' ], # Test overridden new will default name to "Test Name" using use_create => 1.
152         [ 32948, 'Big PK' ],
153     ]);
154
155     $schema->populate('Artist::WashedUp', [
156         [ qw/fk_artistid/ ],
157         [ 2 ],
158     ]);
159
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 ],
166         [ 5, 2, "We like girls and stuff", 2003 ],
167         [ 6, 3, "Come Be Depressed With Us", 1998 ],
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 ],
195         [ 2, 1 ],
196         [ 2, 2 ],
197         [ 3, 3 ],
198     ]);
199
200     $schema->populate('Track', [
201         [ qw/trackid cd  position title last_updated_on/ ],
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"],
207         [ 9, 3, 3, "Fowlin", '2007-10-20 00:00:00'],
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
220 1;