Update tests to use maybe_plan.
[dbsrgits/SQL-Translator.git] / t / 15oracle-parser.t
CommitLineData
75484db3 1#!/usr/bin/perl
fbc0552f 2# vim: set ft=perl:
75484db3 3
4use strict;
fbc0552f 5use Test::More;
75484db3 6use SQL::Translator;
7use SQL::Translator::Schema::Constants;
2d691ec1 8use Test::SQL::Translator qw(maybe_plan);
fbc0552f 9
2d691ec1 10maybe_plan(76, 'SQL::Translator::Parser::Oracle');
11SQL::Translator::Parser::Oracle->import('parse');
75484db3 12
13my $t = SQL::Translator->new( trace => 0 );
14my $sql = q[
15 CREATE TABLE qtl_trait_category
16 (
17 qtl_trait_category_id NUMBER(11) NOT NULL
18 CONSTRAINT pk_qtl_trait_category PRIMARY KEY,
19 trait_category VARCHAR2(100) NOT NULL,
20 UNIQUE ( trait_category )
21 );
22 comment on table qtl_trait_category is 'hey, hey, hey, hey';
23 comment on column qtl_trait_category.qtl_trait_category_id
24 is 'the primary key!';
25
b03b4951 26 -- foo bar comment
75484db3 27 CREATE TABLE qtl_trait
28 (
29 qtl_trait_id NUMBER(11) NOT NULL
30 CONSTRAINT pk_qtl_trait PRIMARY KEY,
31 trait_symbol VARCHAR2(100) NOT NULL,
32 trait_name VARCHAR2(200) NOT NULL,
33 qtl_trait_category_id NUMBER(11) NOT NULL,
34 UNIQUE ( trait_symbol ),
35 UNIQUE ( trait_name ),
36 FOREIGN KEY ( qtl_trait_category_id ) REFERENCES qtl_trait_category
37 );
38
2eb042e6 39 /* qtl table comment */
75484db3 40 CREATE TABLE qtl
41 (
2eb042e6 42 /* qtl_id comment */
75484db3 43 qtl_id NUMBER(11) NOT NULL
44 CONSTRAINT pk_qtl PRIMARY KEY,
2eb042e6 45 qtl_accession_id VARCHAR2(20) NOT NULL /* accession comment */,
75484db3 46 published_symbol VARCHAR2(100),
47 qtl_trait_id NUMBER(11) NOT NULL,
48 linkage_group VARCHAR2(32) NOT NULL,
49 start_position NUMBER(11,2) NOT NULL,
50 stop_position NUMBER(11,2) NOT NULL,
51 comments long,
52 UNIQUE ( qtl_accession_id ),
53 FOREIGN KEY ( qtl_trait_id ) REFERENCES qtl_trait
54 );
55
56 CREATE TABLE qtl_trait_synonym
57 (
58 qtl_trait_synonym_id NUMBER(11) NOT NULL
59 CONSTRAINT pk_qtl_trait_synonym PRIMARY KEY,
60 trait_synonym VARCHAR2(200) NOT NULL,
61 qtl_trait_id NUMBER(11) NOT NULL,
62 UNIQUE( qtl_trait_id, trait_synonym ),
63 FOREIGN KEY ( qtl_trait_id ) REFERENCES qtl_trait
64 );
65];
66
67$| = 1;
68
69my $data = parse( $t, $sql );
70my $schema = $t->schema;
71
75484db3 72isa_ok( $schema, 'SQL::Translator::Schema', 'Schema object' );
73my @tables = $schema->get_tables;
74is( scalar @tables, 4, 'Found four tables' );
75
76#
77# qtl_trait_category
78#
79my $t1 = shift @tables;
80is( $t1->name, 'qtl_trait_category', 'First table is "qtl_trait_category"' );
81is( $t1->comments, 'hey, hey, hey, hey', 'Comment = "hey, hey, hey, hey"' );
82
83my @t1_fields = $t1->get_fields;
84is( scalar @t1_fields, 2, '2 fields in table' );
85
86my $f1 = shift @t1_fields;
87is( $f1->name, 'qtl_trait_category_id',
88 'First field is "qtl_trait_category_id"' );
89is( $f1->data_type, 'number', 'Field is a number' );
90is( $f1->size, 11, 'Size is "11"' );
91is( $f1->is_nullable, 0, 'Field cannot be null' );
92is( $f1->default_value, undef, 'Default value is undefined' );
93is( $f1->is_primary_key, 1, 'Field is PK' );
a378a96f 94is( join(',', $f1->comments), 'the primary key!', 'Comment = "the primary key!"' );
75484db3 95
96my $f2 = shift @t1_fields;
97is( $f2->name, 'trait_category', 'Second field is "trait_category"' );
98is( $f2->data_type, 'varchar2', 'Field is a varchar2' );
99is( $f2->size, 100, 'Size is "100"' );
100is( $f2->is_nullable, 0, 'Field cannot be null' );
101is( $f2->default_value, undef, 'Default value is undefined' );
102is( $f2->is_primary_key, 0, 'Field is not PK' );
103
104my @t1_indices = $t1->get_indices;
105is( scalar @t1_indices, 0, '0 indices on table' );
106
107my @t1_constraints = $t1->get_constraints;
108is( scalar @t1_constraints, 2, '2 constraints on table' );
109
110my $c1 = $t1_constraints[0];
111is( $c1->name, 'pk_qtl_trait_category',
112 'Constraint name is "pk_qtl_trait_category"' );
113is( $c1->type, PRIMARY_KEY, 'First constraint is PK' );
114is( join(',', $c1->fields), 'qtl_trait_category_id',
115 'Constraint is on field "qtl_trait_category_id"' );
116
117my $c2 = $t1_constraints[1];
118is( $c2->type, UNIQUE, 'Second constraint is unique' );
119is( join(',', $c2->fields), 'trait_category',
120 'Constraint is on field "trait_category"' );
121
122#
123# qtl_trait
124#
125my $t2 = shift @tables;
126is( $t2->name, 'qtl_trait', 'Table "qtl_trait" exists' );
b03b4951 127is( $t2->comments, 'foo bar comment', 'Comment "foo bar" exists' );
75484db3 128
129my @t2_fields = $t2->get_fields;
130is( scalar @t2_fields, 4, '4 fields in table' );
131
132my $t2_f1 = shift @t2_fields;
133is( $t2_f1->name, 'qtl_trait_id', 'First field is "qtl_trait_id"' );
134is( $t2_f1->data_type, 'number', 'Field is a number' );
135is( $t2_f1->size, 11, 'Size is "11"' );
136is( $t2_f1->is_nullable, 0, 'Field cannot be null' );
137is( $t2_f1->default_value, undef, 'Default value is undefined' );
138is( $t2_f1->is_primary_key, 1, 'Field is PK' );
139
140my $t2_f2 = shift @t2_fields;
141is( $t2_f2->name, 'trait_symbol', 'Second field is "trait_symbol"' );
142is( $t2_f2->data_type, 'varchar2', 'Field is a varchar2' );
143is( $t2_f2->size, 100, 'Size is "100"' );
144is( $t2_f2->is_nullable, 0, 'Field cannot be null' );
145is( $t2_f2->is_foreign_key, 0, 'Field is not a FK' );
146
147my $t2_f3 = shift @t2_fields;
148is( $t2_f3->name, 'trait_name', 'Third field is "trait_name"' );
149is( $t2_f3->data_type, 'varchar2', 'Field is a varchar2' );
150is( $t2_f3->size, 200, 'Size is "200"' );
151is( $t2_f3->is_nullable, 0, 'Field cannot be null' );
152is( $t2_f3->is_foreign_key, 0, 'Field is not a FK' );
153
154my $t2_f4 = shift @t2_fields;
155is( $t2_f4->name, 'qtl_trait_category_id',
156 'Fourth field is "qtl_trait_category_id"' );
157is( $t2_f4->data_type, 'number', 'Field is a number' );
158is( $t2_f4->size, 11, 'Size is "11"' );
159is( $t2_f4->is_nullable, 0, 'Field cannot be null' );
160is( $t2_f4->is_foreign_key, 1, 'Field is a FK' );
161my $f4_fk = $t2_f4->foreign_key_reference;
162isa_ok( $f4_fk, 'SQL::Translator::Schema::Constraint', 'FK' );
163is( $f4_fk->reference_table, 'qtl_trait_category',
164 'FK references table "qtl_trait_category"' );
165is( join(',', $f4_fk->reference_fields), 'qtl_trait_category_id',
166 'FK references field "qtl_trait_category_id"' );
167
168my @t2_constraints = $t2->get_constraints;
169is( scalar @t2_constraints, 4, '4 constraints on table' );
170
171my $t2_c1 = shift @t2_constraints;
172is( $t2_c1->type, PRIMARY_KEY, 'First constraint is PK' );
173is( $t2_c1->name, 'pk_qtl_trait', 'Name is "pk_qtl_trait"' );
174is( join(',', $t2_c1->fields), 'qtl_trait_id', 'Fields = "qtl_trait_id"' );
175
176my $t2_c2 = shift @t2_constraints;
177is( $t2_c2->type, UNIQUE, 'Second constraint is unique' );
178is( $t2_c2->name, '', 'No name' );
179is( join(',', $t2_c2->fields), 'trait_symbol', 'Fields = "trait_symbol"' );
180
181my $t2_c3 = shift @t2_constraints;
182is( $t2_c3->type, UNIQUE, 'Third constraint is unique' );
183is( $t2_c3->name, '', 'No name' );
184is( join(',', $t2_c3->fields), 'trait_name', 'Fields = "trait_name"' );
185
186my $t2_c4 = shift @t2_constraints;
187is( $t2_c4->type, FOREIGN_KEY, 'Fourth constraint is FK' );
188is( $t2_c4->name, '', 'No name' );
189is( join(',', $t2_c4->fields), 'qtl_trait_category_id',
190 'Fields = "qtl_trait_category_id"' );
191is( $t2_c4->reference_table, 'qtl_trait_category',
192 'Reference table = "qtl_trait_category"' );
193is( join(',', $t2_c4->reference_fields), 'qtl_trait_category_id',
194 'Reference fields = "qtl_trait_category_id"' );
195
196
197#
198# qtl
199#
200my $t3 = shift @tables;
201is( $t3->name, 'qtl', 'Table "qtl" exists' );
202
203my @t3_fields = $t3->get_fields;
204is( scalar @t3_fields, 8, '8 fields in table' );
205
206my @t3_constraints = $t3->get_constraints;
207is( scalar @t3_constraints, 3, '3 constraints on table' );
208
2eb042e6 209is( $t3->comments, 'qtl table comment', 'Comment "qtl table comment" exists' );
210
211my $t3_f1 = shift @t3_fields;
212is( $t3_f1->comments, 'qtl_id comment', 'Comment "qtl_id comment" exists' );
213
214my $t3_f2 = shift @t3_fields;
215is( $t3_f2->comments, 'accession comment',
216 'Comment "accession comment" exists' );
217
75484db3 218#
219# qtl_trait_synonym
220#
221my $t4 = shift @tables;
222is( $t4->name, 'qtl_trait_synonym', 'Table "qtl_trait_synonym" exists' );
223
224my @t4_fields = $t4->get_fields;
225is( scalar @t4_fields, 3, '3 fields in table' );
226
227my @t4_constraints = $t4->get_constraints;
228is( scalar @t4_constraints, 3, '3 constraints on table' );