Release commit for 1.62
[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;
bdf60588 11use SQL::Translator::Utils qw/ddl_parser_instance/;
6c9e9546 12
05603c3a 13
6c9e9546 14### Set $ENV{SQLTTEST_RT_DEBUG} = 1 for more output
15
16# What tests to run - parser/producer name, and optional args
17my $plan = [
18 {
3a328a0a 19 engine => 'XML',
89e19730 20 req => 'XML::LibXML 1.69',
bdf60588 21 no_grammar => 1,
05603c3a 22 },
23 {
24 engine => 'YAML',
bdf60588 25 no_grammar => 1,
3a328a0a 26 },
05603c3a 27
3a328a0a 28 {
6c9e9546 29 engine => 'SQLite',
30 producer_args => {},
31 parser_args => {},
32 },
33 {
34 engine => 'MySQL',
35 producer_args => {},
36 parser_args => {},
37 },
38 {
39 engine => 'MySQL',
40 name => 'MySQL 5.0',
41 producer_args => { mysql_version => 5 },
42 parser_args => { mysql_parser_version => 5 },
43 },
44 {
45 engine => 'MySQL',
46 name => 'MySQL 5.1',
47 producer_args => { mysql_version => '5.1' },
48 parser_args => { mysql_parser_version => '5.1' },
49 },
50 {
51 engine => 'PostgreSQL',
52 producer_args => {},
53 parser_args => {},
54 },
e2fb9ad3 55 {
56 engine => 'SQLServer',
57 producer_args => {},
58 parser_args => {},
59 },
05603c3a 60
bdf60588 61 {
62 engine => 'Oracle',
63 producer_args => {},
64 parser_args => {},
4c9c21e6 65 todo_cmp => "auto-increment triggers aren't detected",
bdf60588 66 },
67 {
68 engine => 'Sybase',
69 producer_args => {},
70 parser_args => {},
71 todo => 'Needs volunteers',
72 },
7e666ece 73 {
74 engine => 'DB2',
75 producer_args => {},
76 parser_args => {},
77 todo => 'Needs volunteers',
78 },
0e0ca612 79
80# There is no Access producer
81# {
82# engine => 'Access',
83# producer_args => {},
84# parser_args => {},
85# },
6c9e9546 86];
87
88
89# This data file has the right mix of table/view/procedure/trigger
90# definitions, and lists enough quirks to trip up most combos
05603c3a 91my $base_file = "$Bin/data/roundtrip_autogen.yaml";
92open (my $base_fh, '<', $base_file) or die "$base_file: $!";
6c9e9546 93
94my $base_t = SQL::Translator->new;
4d6f8a80 95$base_t->$_ (1) for qw/add_drop_table no_comments quote_identifiers/;
6c9e9546 96
97my $base_schema = $base_t->translate (
05603c3a 98 parser => 'YAML',
99 data => do { local $/; <$base_fh>; },
6c9e9546 100) or die $base_t->error;
101
05603c3a 102
474910ee 103#assume there is at least one table
104my $string_re = {
105 XML => qr/<tables>\s*<table/,
106 YAML => qr/\A---\n.+tables\:/s,
107 SQL => qr/^\s*CREATE TABLE/m,
108};
6c9e9546 109
110for my $args (@$plan) {
05603c3a 111 SKIP: {
0a2d7cf1 112 $args->{name} ||= $args->{engine};
6c9e9546 113
05603c3a 114 my @req = ref $args->{req} ? @{$args->{req}} : $args->{req}||();
115 my @missing;
116 for (@req) {
89e19730 117 eval "use $_ ()";
05603c3a 118 push @missing, $_ if ($@);
119 }
120 if (@missing) {
121 skip sprintf ('Need %s for %s roundtrip test',
122 join (', ', @missing),
123 $args->{name},
124 );
125 }
126
bdf60588 127 use_ok("SQL::Translator::Producer::$args->{engine}");
128 use_ok("SQL::Translator::Parser::$args->{engine}");
129
130 ok(ddl_parser_instance($args->{engine}), 'Got proper parser instance')
131 unless $args->{no_grammar};
132
05603c3a 133 TODO: {
134 local $TODO = $args->{todo} if $args->{todo};
135
bdf60588 136 no warnings 'once';
137 # silence PR::D from spewing on STDERR
138 local $::RD_ERRORS = 0 if $args->{todo};
139 local $::RD_WARN = 0 if $args->{todo};
140 local $::RD_HINT = 0 if $args->{todo};
141
05603c3a 142 lives_ok (
4c9c21e6 143 sub { check_roundtrip ($args, $base_schema, $args->{todo_cmp}) },
05603c3a 144 "Round trip for $args->{name} did not throw an exception",
145 );
146 }
0a2d7cf1 147 }
6c9e9546 148}
149
150
151sub check_roundtrip {
4c9c21e6 152 my ($args, $base_schema, $todo_cmp) = @_;
6c9e9546 153 my $base_t = $base_schema->translator;
154
3a328a0a 155# create some output from the submitted schema
156 my $base_out = $base_t->translate (
6c9e9546 157 data => $base_schema,
158 producer => $args->{engine},
159 producer_args => $args->{producer_args},
160 );
161
162 like (
3a328a0a 163 $base_out,
474910ee 164 $string_re->{$args->{engine}} || $string_re->{SQL},
6c9e9546 165 "Received some meaningful output from the first $args->{name} production",
4c549812 166 ) or do {
167 diag ( _gen_diag ($base_t->error) );
168 return;
169 };
6c9e9546 170
171# parse the sql back
172 my $parser_t = SQL::Translator->new;
4d6f8a80 173 $parser_t->$_ (1) for qw/add_drop_table no_comments quote_identifiers/;
6c9e9546 174 my $mid_schema = $parser_t->translate (
3a328a0a 175 data => $base_out,
6c9e9546 176 parser => $args->{engine},
177 parser_args => $args->{parser_args},
178 );
179
180 isa_ok ($mid_schema, 'SQL::Translator::Schema', "First $args->{name} parser pass produced a schema:")
4c549812 181 or do {
3a328a0a 182 diag (_gen_diag ( $parser_t->error, $base_out ) );
28224573 183 my $i;
184 note join ("\n" . ( '=' x 76) . "\n",
185 'Unparseable DDL:',
186 (join ("\n", map { ++$i . ":\t$_" } split /\n/, $base_out) ),
187 ''
188 );
4c549812 189 return;
190 };
6c9e9546 191
192# schemas should be comparable at least as far as table/field numbers go
193 is_deeply (
194 _get_table_info ($mid_schema->get_tables),
195 _get_table_info ($base_schema->get_tables),
196 "Schema tables generally match afer $args->{name} parser trip",
4d6f8a80 197 ) or (diag(explain _get_table_info($mid_schema->get_tables)), return);
6c9e9546 198
199# and produce sql once again
200
201# Producing a schema with a Translator different from the one the schema was generated
202# from does not work. This is arguably a bug, 61translator_agnostic.t works with that
203# my $producer_t = SQL::Translator->new;
0e0ca612 204# $producer_t->$_ (1) for qw/add_drop_table no_comments/;
6c9e9546 205
206# my $rt_sql = $producer_t->translate (
207# data => $mid_schema,
208# producer => $args->{engine},
209# producer_args => $args->{producer_args},
210# );
211
3a328a0a 212 my $rt_out = $parser_t->translate (
6c9e9546 213 data => $mid_schema,
214 producer => $args->{engine},
215 producer_args => $args->{producer_args},
216 );
217
218 like (
3a328a0a 219 $rt_out,
474910ee 220 $string_re->{$args->{engine}} || $string_re->{SQL},
6c9e9546 221 "Received some meaningful output from the second $args->{name} production",
4c549812 222 ) or do {
223 diag ( _gen_diag ( $parser_t->error ) );
224 return;
225 };
6c9e9546 226
4c9c21e6 227 local $TODO = $todo_cmp;
6c9e9546 228# the two sql strings should be identical
229 my $msg = "$args->{name} SQL roundtrip successful - SQL statements match";
b5bd4580 230 $ENV{SQLTTEST_RT_DEBUG}
231 ? eq_or_diff ($rt_out, $base_out, $msg)
232 : ok ($rt_out eq $base_out, $msg)
6c9e9546 233 ;
234}
235
236sub _get_table_info {
237 my @tables = @_;
238
239 my @info;
240
241 for my $t (@tables) {
242 push @info, {
243 name => $t->name,
244 fields => [
245 map { $_->name } ($t->get_fields),
246 ],
247 };
248 }
249
250 return \@info;
251}
252
3a328a0a 253# takes an error string and an optional output block
6c9e9546 254# returns the string conctenated with a line-numbered block for
255# easier reading
256sub _gen_diag {
3a328a0a 257 my ($err, $out) = @_;
6c9e9546 258
259 return 'Unknown error' unless $err;
260
261
3a328a0a 262 if ($out and $ENV{SQLTTEST_RT_DEBUG}) {
263 my @lines;
264 for (split /\n/, $out) {
265 push @lines, sprintf ('%03d: %s',
266 scalar @lines + 1,
6c9e9546 267 $_,
268 );
269 }
270
3a328a0a 271 return "$err\n\n" . join ("\n", @lines);
6c9e9546 272 }
273
274 return $err;
275}