basic structure in place
[dbsrgits/DBIx-Class-ResultSet-WithMetaData.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 IN, $file;
101     my $sql;
102     { local $/ = undef; $sql = <IN>; }
103     close IN;
104     ($schema->storage->dbh->do($_) || print "Error on SQL: $_\n") for split(/;\n/, $sql);
105 }
106  
107
108 =head2 clear_schema
109
110   DBICTest->clear_schema( $schema );
111
112 =cut
113
114 sub clear_schema {
115     my $self = shift;
116     my $schema = shift;
117
118     foreach my $class ($schema->sources) {
119       $schema->resultset($class)->delete;
120     }
121 }
122
123
124 =head2 populate_schema
125
126   DBICTest->populate_schema( $schema );
127
128 After you deploy your schema you can use this method to populate 
129 the tables with test data.
130
131 =cut
132
133 sub populate_schema {
134     my $self = shift;
135     my $schema = shift;
136
137     $schema->populate('Artist', [
138         [ qw/artistid name/ ],
139         [ 1, 'Caterwauler McCrae' ],
140         [ 2, 'Random Boy Band' ],
141         [ 3, 'We Are Goth' ],
142     ]);
143
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 ],
152     ]);
153
154     $schema->populate('Tag', [
155         [ qw/tagid cd tag/ ],
156         [ 1, 1, "Blue" ],
157         [ 2, 2, "Blue" ],
158         [ 3, 3, "Blue" ],
159         [ 4, 5, "Blue" ],
160         [ 5, 2, "Cheesy" ],
161         [ 6, 4, "Cheesy" ],
162         [ 7, 5, "Cheesy" ],
163         [ 8, 2, "Shiny" ],
164         [ 9, 4, "Shiny" ],
165     ]);
166
167     $schema->populate('Producer', [
168         [ qw/producerid name/ ],
169         [ 1, 'Matt S Trout' ],
170         [ 2, 'Bob The Builder' ],
171         [ 3, 'Fred The Phenotype' ],
172     ]);
173
174     $schema->populate('CD_to_Producer', [
175         [ qw/cd producer/ ],
176         [ 1, 1 ],
177         [ 1, 2 ],
178         [ 1, 3 ],
179     ]);
180
181     $schema->populate('Track', [
182         [ qw/trackid cd  position title last_updated_on/ ],
183         [ 4, 2, 1, "Stung with Success"],
184         [ 5, 2, 2, "Stripy"],
185         [ 6, 2, 3, "Sticky Honey"],
186         [ 7, 3, 1, "Yowlin"],
187         [ 8, 3, 2, "Howlin"],
188         [ 9, 3, 3, "Fowlin", '2007-10-20 00:00:00'],
189         [ 10, 4, 1, "Boring Name"],
190         [ 11, 4, 2, "Boring Song"],
191         [ 12, 4, 3, "No More Ideas"],
192         [ 13, 5, 1, "Sad"],
193         [ 14, 5, 2, "Under The Weather"],
194         [ 15, 5, 3, "Suicidal"],
195         [ 16, 1, 1, "The Bees Knees"],
196         [ 17, 1, 2, "Apiary"],
197         [ 18, 1, 3, "Beehind You"],
198     ]);
199 }
200
201 1;