Update TODO file
[dbsrgits/SQL-Translator.git] / t / 16xml-parser.t
CommitLineData
c957e92d 1#!/usr/bin/perl -w
2# vim:filetype=perl
3
4# Before `make install' is performed this script should be runnable with
5# `make test'. After `make install' it should work as `perl test.pl'
c957e92d 6#
1c375f48 7# Run script with -d for debug.
c957e92d 8
2e11379e 9use strict;
1c375f48 10
11use FindBin qw/$Bin/;
12
b3530353 13use Test::More;
1c375f48 14use Test::SQL::Translator;
c957e92d 15use Test::Exception;
c957e92d 16use Data::Dumper;
1c375f48 17use SQL::Translator;
18use SQL::Translator::Schema::Constants;
19
20# Simple options. -d for debug
2e11379e 21my %opt;
c957e92d 22BEGIN { map { $opt{$_}=1 if s/^-// } @ARGV; }
23use constant DEBUG => (exists $opt{d} ? 1 : 0);
c957e92d 24
c957e92d 25
26# Testing 1,2,3,4...
27#=============================================================================
c957e92d 28
ec791002 29BEGIN {
08d91aad 30 maybe_plan(162, 'SQL::Translator::Parser::XML::SQLFairy');
07a82527 31}
32
ec791002 33my $testschema = "$Bin/data/xml/schema.xml";
34
35my $sqlt;
36$sqlt = SQL::Translator->new(
37 debug => DEBUG,
38 show_warnings => 1,
39 add_drop_table => 1,
40);
41die "Can't find test schema $testschema" unless -e $testschema;
42my $sql = $sqlt->translate(
43 from => 'XML-SQLFairy',
44 to => 'MySQL',
45 filename => $testschema,
46) or die $sqlt->error;
47print $sql if DEBUG;
48
49# Test the schema objs generted from the XML
50#
51my $scma = $sqlt->schema;
52
53# Hmmm, when using schema_ok the field test data gets a bit too nested and
54# fiddly to work with. (See 28xml-xmi-parser-sqlfairy.t for more a split out
55# version)
56schema_ok( $scma, {
57 tables => [
58 {
59 name => "Basic",
b1789409 60 extra => {
61 foo => "bar",
62 hello => "world",
63 bar => "baz",
5a0c7b43 64 mysql_table_type => "InnoDB",
b1789409 65 },
ec791002 66 fields => [
67 {
68 name => "id",
69 data_type => "int",
70 default_value => undef,
71 is_nullable => 0,
72 size => 10,
73 is_primary_key => 1,
74 is_auto_increment => 1,
94ed484b 75 extra => { ZEROFILL => 1 },
ec791002 76 },
77 {
78 name => "title",
79 data_type => "varchar",
80 is_nullable => 0,
81 default_value => "hello",
82 size => 100,
83 },
84 {
85 name => "description",
86 data_type => "text",
87 is_nullable => 1,
88 default_value => "",
89 },
90 {
91 name => "email",
92 data_type => "varchar",
93 size => 255,
94 is_unique => 1,
95 default_value => undef,
96 is_nullable => 1,
94ed484b 97 extra => {
98 foo => "bar",
99 hello => "world",
100 bar => "baz",
101 }
ec791002 102 },
103 {
104 name => "explicitnulldef",
105 data_type => "varchar",
106 default_value => undef,
107 is_nullable => 1,
108 },
109 {
110 name => "explicitemptystring",
111 data_type => "varchar",
112 default_value => "",
113 is_nullable => 1,
114 },
115 {
116 name => "emptytagdef",
117 data_type => "varchar",
118 default_value => "",
119 is_nullable => 1,
94ed484b 120 comments => "Hello emptytagdef",
ec791002 121 },
08d91aad 122 {
123 name => "timest",
124 data_type => "timestamp",
125 size => "0",
126 is_nullable => 1,
127 },
ec791002 128 ],
129 constraints => [
130 {
131 type => PRIMARY_KEY,
132 fields => ["id"],
b1789409 133 extra => {
134 foo => "bar",
135 hello => "world",
136 bar => "baz",
137 },
ec791002 138 },
139 {
140 name => 'emailuniqueindex',
141 type => UNIQUE,
142 fields => ["email"],
143 }
144 ],
145 indices => [
146 {
147 name => "titleindex",
148 fields => ["title"],
b1789409 149 extra => {
150 foo => "bar",
151 hello => "world",
152 bar => "baz",
153 },
ec791002 154 },
155 ],
156 } # end table Basic
157 ], # end tables
158
159 views => [
160 {
161 name => 'email_list',
162 sql => "SELECT email FROM Basic WHERE email IS NOT NULL",
163 fields => ['email'],
b1789409 164 extra => {
165 foo => "bar",
166 hello => "world",
167 bar => "baz",
168 },
ec791002 169 },
170 ],
171
172 triggers => [
173 {
174 name => 'foo_trigger',
175 perform_action_when => 'after',
176 database_event => 'insert',
8ce5d615 177 on_table => 'Basic',
ec791002 178 action => 'update modified=timestamp();',
b1789409 179 extra => {
180 foo => "bar",
181 hello => "world",
182 bar => "baz",
183 },
ec791002 184 },
185 ],
186
187 procedures => [
188 {
189 name => 'foo_proc',
190 sql => 'select foo from bar',
191 parameters => ['foo', 'bar'],
192 owner => 'Nomar',
193 comments => 'Go Sox!',
b1789409 194 extra => {
195 foo => "bar",
196 hello => "world",
197 bar => "baz",
198 },
ec791002 199 },
200 ],
201
202}); # end schema