Fix a couple of mistakes in the PG parser
[dbsrgits/SQL-Translator.git] / t / 60roundtrip.t
CommitLineData
6c9e9546 1#!/usr/bin/perl
2
3use warnings;
4use strict;
5use Test::More qw/no_plan/;
6use Test::Exception;
ce6c267a 7use Test::Differences;
6c9e9546 8use FindBin qw/$Bin/;
9
10use SQL::Translator;
11
12### Set $ENV{SQLTTEST_RT_DEBUG} = 1 for more output
13
14# What tests to run - parser/producer name, and optional args
15my $plan = [
16 {
3a328a0a 17 engine => 'XML',
18 },
19 {
6c9e9546 20 engine => 'SQLite',
21 producer_args => {},
22 parser_args => {},
23 },
24 {
25 engine => 'MySQL',
26 producer_args => {},
27 parser_args => {},
28 },
29 {
30 engine => 'MySQL',
31 name => 'MySQL 5.0',
32 producer_args => { mysql_version => 5 },
33 parser_args => { mysql_parser_version => 5 },
34 },
35 {
36 engine => 'MySQL',
37 name => 'MySQL 5.1',
38 producer_args => { mysql_version => '5.1' },
39 parser_args => { mysql_parser_version => '5.1' },
40 },
41 {
42 engine => 'PostgreSQL',
43 producer_args => {},
44 parser_args => {},
45 },
10aa04a5 46# {
47# engine => 'Oracle',
48# producer_args => {},
49# parser_args => {},
50# },
51# {
52# engine => 'SQLServer',
53# producer_args => {},
54# parser_args => {},
55# },
56# {
57# engine => 'Sybase',
58# producer_args => {},
59# parser_args => {},
60# },
61# {
62# engine => 'DB2',
63# producer_args => {},
64# parser_args => {},
65# },
0e0ca612 66
67# There is no Access producer
68# {
69# engine => 'Access',
70# producer_args => {},
71# parser_args => {},
72# },
6c9e9546 73];
74
75
76# This data file has the right mix of table/view/procedure/trigger
77# definitions, and lists enough quirks to trip up most combos
78# I am not sure if augmenting it will break other tests - experiment
79my $base_file = "$Bin/data/xml/schema.xml";
80
81my $base_t = SQL::Translator->new;
0e0ca612 82$base_t->$_ (1) for qw/add_drop_table no_comments/;
6c9e9546 83
84my $base_schema = $base_t->translate (
85 parser => 'XML',
86 file => $base_file,
87) or die $base_t->error;
88
89
90for my $args (@$plan) {
91
92 $args->{name} ||= $args->{engine};
93
94 lives_ok (
95 sub { check_roundtrip ($args, $base_schema) },
96 "Round trip for $args->{name} did not throw an exception",
97 );
98}
99
100
101sub check_roundtrip {
102 my ($args, $base_schema) = @_;
103 my $base_t = $base_schema->translator;
104
3a328a0a 105# create some output from the submitted schema
106 my $base_out = $base_t->translate (
6c9e9546 107 data => $base_schema,
108 producer => $args->{engine},
109 producer_args => $args->{producer_args},
110 );
111
112 like (
3a328a0a 113 $base_out,
114 $args->{engine} eq 'XML' #assume there is at least one table
115 ? qr/<tables>\s*<table/m
116 : qr/^\s*CREATE TABLE/m
117 ,
6c9e9546 118 "Received some meaningful output from the first $args->{name} production",
4c549812 119 ) or do {
120 diag ( _gen_diag ($base_t->error) );
121 return;
122 };
6c9e9546 123
124# parse the sql back
125 my $parser_t = SQL::Translator->new;
0e0ca612 126 $parser_t->$_ (1) for qw/add_drop_table no_comments/;
6c9e9546 127 my $mid_schema = $parser_t->translate (
3a328a0a 128 data => $base_out,
6c9e9546 129 parser => $args->{engine},
130 parser_args => $args->{parser_args},
131 );
132
133 isa_ok ($mid_schema, 'SQL::Translator::Schema', "First $args->{name} parser pass produced a schema:")
4c549812 134 or do {
3a328a0a 135 diag (_gen_diag ( $parser_t->error, $base_out ) );
4c549812 136 return;
137 };
6c9e9546 138
139# schemas should be comparable at least as far as table/field numbers go
140 is_deeply (
141 _get_table_info ($mid_schema->get_tables),
142 _get_table_info ($base_schema->get_tables),
143 "Schema tables generally match afer $args->{name} parser trip",
4c549812 144 ) or return;
6c9e9546 145
146# and produce sql once again
147
148# Producing a schema with a Translator different from the one the schema was generated
149# from does not work. This is arguably a bug, 61translator_agnostic.t works with that
150# my $producer_t = SQL::Translator->new;
0e0ca612 151# $producer_t->$_ (1) for qw/add_drop_table no_comments/;
6c9e9546 152
153# my $rt_sql = $producer_t->translate (
154# data => $mid_schema,
155# producer => $args->{engine},
156# producer_args => $args->{producer_args},
157# );
158
3a328a0a 159 my $rt_out = $parser_t->translate (
6c9e9546 160 data => $mid_schema,
161 producer => $args->{engine},
162 producer_args => $args->{producer_args},
163 );
164
165 like (
3a328a0a 166 $rt_out,
167 $args->{engine} eq 'XML' #assume there is at least one table
168 ? qr/<tables>\s*<table/m
169 : qr/^\s*CREATE TABLE/m
170 ,
6c9e9546 171 "Received some meaningful output from the second $args->{name} production",
4c549812 172 ) or do {
173 diag ( _gen_diag ( $parser_t->error ) );
174 return;
175 };
6c9e9546 176
177# the two sql strings should be identical
178 my $msg = "$args->{name} SQL roundtrip successful - SQL statements match";
ce6c267a 179 $ENV{SQLTTEST_RT_DEBUG} #stringify below because IO::Scalar does not behave nice
180 ? eq_or_diff ("$rt_out", "$base_out", $msg)
181 : ok ("$rt_out" eq "$base_out", $msg)
6c9e9546 182 ;
183}
184
185sub _get_table_info {
186 my @tables = @_;
187
188 my @info;
189
190 for my $t (@tables) {
191 push @info, {
192 name => $t->name,
193 fields => [
194 map { $_->name } ($t->get_fields),
195 ],
196 };
197 }
198
199 return \@info;
200}
201
3a328a0a 202# takes an error string and an optional output block
6c9e9546 203# returns the string conctenated with a line-numbered block for
204# easier reading
205sub _gen_diag {
3a328a0a 206 my ($err, $out) = @_;
6c9e9546 207
208 return 'Unknown error' unless $err;
209
210
3a328a0a 211 if ($out and $ENV{SQLTTEST_RT_DEBUG}) {
212 my @lines;
213 for (split /\n/, $out) {
214 push @lines, sprintf ('%03d: %s',
215 scalar @lines + 1,
6c9e9546 216 $_,
217 );
218 }
219
3a328a0a 220 return "$err\n\n" . join ("\n", @lines);
6c9e9546 221 }
222
223 return $err;
224}