Changed tests to use the Schema objects instead of looking at the data
[dbsrgits/SQL-Translator.git] / t / 13schema.t
1 #!/usr/bin/perl
2 # vim:set ft=perl:
3
4 $| = 1;
5
6 use strict;
7 use Test::More 'no_plan'; # plans => 1;
8 use SQL::Translator::Schema::Constants;
9
10 require_ok( 'SQL::Translator::Schema' );
11
12 {
13     #
14     # Schema
15     #
16     my $schema = SQL::Translator::Schema->new( 
17         name => 'foo',
18         database => 'MySQL',
19     );
20     isa_ok( $schema, 'SQL::Translator::Schema' );
21
22     is( $schema->name, 'foo', 'Schema name is "foo"' );
23     is( $schema->name('bar'), 'bar', 'Schema name changed to "bar"' );
24
25     is( $schema->database, 'MySQL', 'Schema database is "MySQL"' );
26     is( $schema->database('PostgreSQL'), 'PostgreSQL', 
27         'Schema database changed to "PostgreSQL"' );
28
29     is( $schema->is_valid, undef, 'Schema not valid...' );
30     like( $schema->error, qr/no tables/i, '...because there are no tables' );
31
32     #
33     # $schema->add_*
34     #
35     my $foo_table = $schema->add_table(name => 'foo') or warn $schema->error;
36     isa_ok( $foo_table, 'SQL::Translator::Schema::Table', 'Table "foo"' );
37
38     my $bar_table = SQL::Translator::Schema::Table->new( name => 'bar' ) or 
39         warn SQL::Translator::Schema::Table->error;
40     $bar_table = $schema->add_table( $bar_table );
41     isa_ok( $bar_table, 'SQL::Translator::Schema::Table', 'Table "bar"' );
42     is( $bar_table->name, 'bar', 'Add table "bar"' );
43
44     $schema = $bar_table->schema( $schema );
45     isa_ok( $schema, 'SQL::Translator::Schema', 'Schema' );
46
47     is( $bar_table->name('foo'), undef, 
48         q[Can't change name of table "bar" to "foo"...]);
49     like( $bar_table->error, qr/can't use table name/i, 
50         q[...because "foo" exists] );
51
52     my $redundant_table = $schema->add_table(name => 'foo');
53     is( $redundant_table, undef, qq[Can't create another "foo" table...] );
54     like( $schema->error, qr/can't use table name/i, '... because "foo" exists' );
55
56     #
57     # Table default new
58     #
59     is( $foo_table->name, 'foo', 'Table name is "foo"' );
60     is( $foo_table->is_valid, undef, 'Table "foo" is not yet valid' );
61
62     my $fields = $foo_table->get_fields;
63     is( scalar @{ $fields || [] }, 0, 'Table "foo" has no fields' );
64     like( $foo_table->error, qr/no fields/i, 'Error for no fields' );
65
66     #
67     # New table with args
68     #
69     my $person_table = $schema->add_table( name => 'person' );
70     is( $person_table->name, 'person', 'Table name is "person"' );
71     is( $person_table->is_valid, undef, 'Table is not yet valid' );
72
73     #
74     # Field default new
75     #
76     my $f1 = $person_table->add_field(name => 'foo') or 
77         warn $person_table->error;
78     isa_ok( $f1, 'SQL::Translator::Schema::Field', 'Field' );
79     is( $f1->name, 'foo', 'Field name is "foo"' );
80     is( $f1->data_type, '', 'Field data type is blank' );
81     is( $f1->size, 0, 'Field size is "0"' );
82     is( $f1->is_primary_key, '0', 'Field is_primary_key is false' );
83     is( $f1->is_nullable, 1, 'Field can be NULL' );
84     is( $f1->default_value, undef, 'Field default is undefined' );
85
86     my $f2 = SQL::Translator::Schema::Field->new (name => 'f2') or 
87         warn SQL::Translator::Schema::Field->error;
88     $f2 = $person_table->add_field( $f2 );
89     isa_ok( $f1, 'SQL::Translator::Schema::Field', 'f2' );
90     is( $f2->name, 'f2', 'Add field "f2"' );
91     is( $f2->is_nullable(0), 0, 'Field cannot be NULL' );
92     is( $f2->is_nullable(''), 0, 'Field cannot be NULL' );
93     is( $f2->is_nullable('0'), 0, 'Field cannot be NULL' );
94     is( $f1->default_value(''), '', 'Field default is empty string' );
95
96     $person_table = $f2->table( $person_table );
97     isa_ok( $person_table, 'SQL::Translator::Schema::Table', 'person_table' );
98
99     is( $f2->name('foo'), undef, q[Can't set field name of "f2" to "foo"...] );
100     like( $f2->error, qr/can't use field name/i, '...because name exists' );
101
102     my $redundant_field = $person_table->add_field(name => 'f2');
103     is( $redundant_field, undef, qq[Didn't create another "f2" field...] );
104     like( $person_table->error, qr/can't use field/i, 
105         '... because it exists' );
106
107     my @fields = $person_table->get_fields;
108     is( scalar @fields, 2, 'Table "foo" has 2 fields' );
109
110     is( $fields[0]->name, 'foo', 'First field is "foo"' );
111     is( $fields[1]->name, 'f2', 'Second field is "f2"' );
112
113     #
114     # Field methods
115     #
116     is( $f1->name('person_name'), 'person_name', 
117         'Field name is "person_name"' );
118     is( $f1->data_type('varchar'), 'varchar', 'Field data type is "varchar"' );
119     is( $f1->size('30'), '30', 'Field size is "30"' );
120     is( $f1->is_primary_key(0), '0', 'Field is_primary_key is negative' );
121
122     #
123     # New field with args
124     #
125     my $age       = $person_table->add_field(
126         name      => 'age',
127         data_type => 'float',
128         size      => '10,2',
129     );
130     is( $age->name, 'age', 'Field name is "age"' );
131     is( $age->data_type, 'float', 'Field data type is "float"' );
132     is( $age->size, '10,2', 'Field size is "10,2"' );
133     is( $age->size(10,2), '10,2', 'Field size still "10,2"' );
134     is( $age->size([10,2]), '10,2', 'Field size still "10,2"' );
135     is( $age->size(qw[ 10 2 ]), '10,2', 'Field size still "10,2"' );
136     is( join(':', $age->size), '10:2', 'Field size returns array' );
137
138     #
139     # Index
140     #
141     my @indices = $person_table->get_indices;
142     is( scalar @indices, 0, 'No indices' );
143     like( $person_table->error, qr/no indices/i, 'Error for no indices' );
144     my $index1 = $person_table->add_index( name => "foo" ) 
145         or warn $person_table->error;
146     isa_ok( $index1, 'SQL::Translator::Schema::Index', 'Index' );
147     is( $index1->name, 'foo', 'Index name is "foo"' );
148
149     is( $index1->is_valid, undef, 'Index name is not valid...' );
150     like( $index1->error, qr/no fields/i, '...because it has no fields' );
151
152     is( join(':', $index1->fields('foo,bar')), 'foo:bar', 
153         'Index accepts fields');
154
155     is( $index1->is_valid, undef, 'Index name is not valid...' );
156     like( $index1->error, qr/does not exist in table/i, 
157         '...because it used fields not in the table' );
158
159     is( join(':', $index1->fields(qw[foo age])), 'foo:age', 
160         'Index accepts fields');
161     is( $index1->is_valid, 1, 'Index name is now valid' );
162
163     is( $index1->type, NORMAL, 'Index type is "normal"' );
164
165     my $index2 = SQL::Translator::Schema::Index->new( name => "bar" ) 
166         or warn SQL::Translator::Schema::Index->error;
167     $index2    = $person_table->add_index( $index2 );
168     isa_ok( $index2, 'SQL::Translator::Schema::Index', 'Index' );
169     is( $index2->name, 'bar', 'Index name is "bar"' );
170
171     my $indices = $person_table->get_indices;
172     is( scalar @$indices, 2, 'Two indices' );
173     is( $indices->[0]->name, 'foo', '"foo" index' );
174     is( $indices->[1]->name, 'bar', '"bar" index' );
175
176     #
177     # Constraint
178     #
179     my @constraints = $person_table->get_constraints;
180     is( scalar @constraints, 0, 'No constraints' );
181     like( $person_table->error, qr/no constraints/i, 
182         'Error for no constraints' );
183     my $constraint1 = $person_table->add_constraint( name => 'foo' ) 
184         or warn $person_table->error;
185     isa_ok( $constraint1, 'SQL::Translator::Schema::Constraint', 'Constraint' );
186     is( $constraint1->name, 'foo', 'Constraint name is "foo"' );
187
188     $fields = join(',', $constraint1->fields('id') );
189     is( $fields, 'id', 'Constraint field = "id"' );
190
191     $fields = join(',', $constraint1->fields('id,id') );
192     is( $fields, 'id', 'Constraint field = "id"' );
193
194     $fields = join(',', $constraint1->fields('id', 'name') );
195     is( $fields, 'id,name', 'Constraint field = "id,name"' );
196
197     $fields = join(',', $constraint1->fields( 'id,name,id' ) );
198     is( $fields, 'id,name', 'Constraint field = "id,name"' );
199
200     $fields = join(',', $constraint1->fields( 'id, name' ) );
201     is( $fields, 'id,name', 'Constraint field = "id,name"' );
202
203     $fields = join(',', $constraint1->fields( [ 'id', 'name' ] ) );
204     is( $fields, 'id,name', 'Constraint field = "id,name"' );
205
206     $fields = join(',', $constraint1->fields( qw[ id name ] ) );
207     is( $fields, 'id,name', 'Constraint field = "id,name"' );
208
209     is( $constraint1->match_type, '', 'Constraint match type is empty' );
210     is( $constraint1->match_type('foo'), undef, 
211         'Constraint match type rejects bad arg...' );
212     like( $constraint1->error, qr/invalid match type/i,
213         '...because it is invalid');
214     is( $constraint1->match_type('FULL'), 'full', 
215         'Constraint match type = "full"' );
216
217     my $constraint2 = SQL::Translator::Schema::Constraint->new( name => 'bar' );
218     $constraint2    = $person_table->add_constraint( $constraint2 );
219     isa_ok( $constraint2, 'SQL::Translator::Schema::Constraint', 'Constraint' );
220     is( $constraint2->name, 'bar', 'Constraint name is "bar"' );
221
222     my $constraints = $person_table->get_constraints;
223     is( scalar @$constraints, 2, 'Two constraints' );
224     is( $constraints->[0]->name, 'foo', '"foo" constraint' );
225     is( $constraints->[1]->name, 'bar', '"bar" constraint' );
226
227     #
228     # View
229     #
230     my $view = $schema->add_view( name => 'view1' ) or warn $schema->error;
231     isa_ok( $view, 'SQL::Translator::Schema::View', 'View' );
232     my $view_sql = 'select * from table';
233     is( $view->sql( $view_sql ), $view_sql, 'View SQL is good' );
234
235     my $view2 = SQL::Translator::Schema::View->new(name => 'view2') or
236         warn SQL::Translator::Schema::View->error;
237     my $check_view = $schema->add_view( $view2 );
238     is( $check_view->name, 'view2', 'Add view "view2"' );
239
240     my $redundant_view = $schema->add_view(name => 'view2');
241     is( $redundant_view, undef, qq[Didn't create another "view2" view...] );
242     like( $schema->error, qr/can't create view/i, '... because it exists' );
243
244     #
245     # $schema->get_*
246     #
247     my $bad_table = $schema->get_table;
248     like( $schema->error, qr/no table/i, 'Error on no arg to get_table' );
249
250     $bad_table = $schema->get_table('baz');
251     like( $schema->error, qr/does not exist/i, 
252         'Error on bad arg to get_table' );
253
254     my $bad_view = $schema->get_view;
255     like( $schema->error, qr/no view/i, 'Error on no arg to get_view' );
256
257     $bad_view = $schema->get_view('bar');
258     like( $schema->error, qr/does not exist/i, 
259         'Error on bad arg to get_view' );
260
261     my $good_table = $schema->get_table('foo');
262     isa_ok( $good_table, 'SQL::Translator::Schema::Table', 'Table "foo"' );
263
264     my $good_view = $schema->get_view('view1');
265     isa_ok( $good_view, 'SQL::Translator::Schema::View', 'View "view1"' );
266     is( $view->sql( $view_sql ), $view_sql, 'View SQL is good' );
267
268     #
269     # $schema->get_*s
270     #
271     my @tables = $schema->get_tables;
272     is( scalar @tables, 3, 'Found 2 tables' );
273
274     my @views = $schema->get_views;
275     is( scalar @views, 2, 'Found 1 view' );
276 }
277
278 #
279 # Test ability to introspect some values
280 #
281
282     my $s        =  SQL::Translator::Schema->new( 
283         name     => 'foo',
284         database => 'PostgreSQL',
285     );
286     my $t = $s->add_table( name => 'person' ) or warn $s->erro;
287     my $f = $t->add_field( name => 'person_id' ) or warn $t->error;
288     $f->data_type('serial');
289
290     my $c          = $t->add_constraint(
291         type       => PRIMARY_KEY,
292         fields     => 'person_id',
293     ) or warn $t->error;
294
295     is( $f->is_primary_key, 1, 'Field is PK' );
296     is( $f->is_auto_increment, 1, 'Field is auto inc' );
297 }
298
299 #
300 # FK constraint validity
301 #
302 {
303     my $s = SQL::Translator::Schema->new;
304     my $t = $s->add_table( name => 'person' ) or warn $s->error;
305     my $c = $t->add_constraint or warn $t->error;
306
307     is( $c->is_valid, undef, 'Constraint on "person" not valid...');
308     like( $c->error, qr/no type/i, '...because it has no type' );
309
310     is( $c->type( FOREIGN_KEY ), FOREIGN_KEY, 'Constraint type now a FK' );
311
312     is( $c->is_valid, undef, 'Constraint on "person" not valid...');
313     like( $c->error, qr/no fields/i, '...because it has no fields' );
314
315     is( join('', $c->fields('foo')), 'foo', 'Fields now = "foo"' );
316
317     is( $c->is_valid, undef, 'Constraint on "person" not valid...');
318     like( $c->error, qr/non-existent field/i, 
319         q[...because field "foo" doesn't exist] );
320
321     my $fk = $t->add_field( name => 'pet_id' );
322     is( $fk->name, 'pet_id', 'Added field "pet_id"' );
323     is( join('', $c->fields('pet_id')), 'pet_id', 'Fields now = "pet_id"' );
324
325     $t->add_field( name => 'f1' );
326     $t->add_field( name => 'f2' );
327     is( join(',', $c->fields('f1,f2')), 'f1,f2', 'Fields now = "f1,f2"' );
328     is( $c->is_valid, undef, 'Constraint on "person" not valid...');
329     like( $c->error, qr/only one field/i, 
330         q[...because too many fields for FK] );
331
332     $c->fields('f1');
333
334     is( $c->is_valid, undef, 'Constraint on "person" not valid...');
335     like( $c->error, qr/no reference table/i, 
336         q[...because there's no reference table] );
337
338     is( $c->reference_table('foo'), 'foo', 'Reference table now = "foo"' );
339     is( $c->is_valid, undef, 'Constraint on "person" not valid...');
340     like( $c->error, qr/no table named/i, 
341         q[...because reference table "foo" doesn't exist] );
342
343     my $t2 = $s->add_table( name => 'pet' );
344     is( $t2->name, 'pet', 'Added "pet" table' );
345
346     is( $c->reference_table('pet'), 'pet', 'Reference table now = "pet"' );
347
348     is( $c->is_valid, undef, 'Constraint on "person" not valid...');
349     like( $c->error, qr/no reference fields/i,
350         q[...because there're no reference fields]);
351
352     is( join('', $c->reference_fields('pet_id')), 'pet_id', 
353         'Reference fields = "pet_id"' );
354
355     is( $c->is_valid, undef, 'Constraint on "person" not valid...');
356     like( $c->error, qr/non-existent field/i,
357         q[...because there's no "pet_id" field in "pet"]);
358
359     my $pet_id = $t2->add_field( name => 'pet_id' );
360     is( $pet_id->name, 'pet_id', 'Added field "pet_id"' );
361     
362     is( $c->is_valid, 1, 'Constraint now valid' );
363 }
364
365 #
366 # $table->primary_key test
367 #
368 {
369     my $s = SQL::Translator::Schema->new;
370     my $t = $s->add_table( name => 'person' );
371
372     is( $t->primary_key, undef, 'No primary key' );
373     like( $t->error, qr/no primary key/i, 'No primary key error' );
374
375     is( $t->primary_key('person_id'), undef, 
376             q[Can't make PK on "person_id"...] );
377     like( $t->error, qr/invalid field/i, "...because it doesn't exist" );
378
379     $t->add_field( name => 'person_id' );
380     my $c = $t->primary_key('person_id');
381
382     isa_ok( $c, 'SQL::Translator::Schema::Constraint', 'Constraint' );
383
384     is( join('', $c->fields), 'person_id', 'Constraint now on "person_id"' );
385
386     $t->add_field( name => 'name' );
387     $c = $t->primary_key('name');
388     is( join(',', $c->fields), 'person_id,name', 
389         'Constraint now on "person_id" and "name"' );
390
391     is( scalar @{ $t->get_constraints }, 1, 'Found 1 constraint' );
392 }
393
394 #
395 # FK finds PK
396 #
397 {
398     my $s  = SQL::Translator::Schema->new;
399     my $t1 = $s->add_table( name => 'person' );
400     my $t2 = $s->add_table( name => 'pet' );
401     $t1->add_field( name => 'id' );
402     my $c1 = $t1->primary_key( 'id' ) or warn $t1->error;
403     is( $c1->type, PRIMARY_KEY, 'Made "person_id" PK on "person"' );
404
405     $t2->add_field( name => 'person_id' );
406     my $c2 = $t2->add_constraint(
407         type            => PRIMARY_KEY,
408         fields          => 'person_id',
409         reference_table => 'person',
410     );
411
412     is( join('', $c2->reference_fields), 'id', 'FK found PK "person.id"' );
413 }
414
415 #
416 # View
417 #
418 {
419     my $name   = 'foo_view';
420     my $sql    = 'select name, age from person';
421     my $fields = 'name, age';
422     my $s      = SQL::Translator::Schema->new;
423     my $v      = $s->add_view(
424         name   => $name,
425         sql    => $sql,
426         fields => $fields,
427     );
428
429     isa_ok( $v, 'SQL::Translator::Schema::View', 'View' );
430     is( $v->name, $name, qq[Name is "$name"] );
431     is( $v->sql, $sql, qq[Name is "$sql"] );
432     is( join(':', $v->fields), 'name:age', qq[Fields are "$fields"] );
433 }