Add value-only insert test with a literal sql snippet
[scpubgit/Q-Branch.git] / lib / SQL / Abstract / Test.pm
CommitLineData
fffe6900 1package SQL::Abstract::Test; # see doc at end of file
2
3use strict;
4use warnings;
5aad8cf3 5use base qw/Test::Builder::Module Exporter/;
fffe6900 6use Data::Dumper;
7use Carp;
4abea32b 8use Test::Builder;
9use Test::Deep qw(eq_deeply);
fffe6900 10
e7827ba2 11our @EXPORT_OK = qw/&is_same_sql_bind &is_same_sql &is_same_bind
12 &eq_sql_bind &eq_sql &eq_bind
fffe6900 13 $case_sensitive $sql_differ/;
14
15our $case_sensitive = 0;
16our $sql_differ; # keeps track of differing portion between SQLs
5aad8cf3 17our $tb = __PACKAGE__->builder;
fffe6900 18
25823711 19# Parser states for _recurse_parse()
5221d7fc 20use constant PARSE_TOP_LEVEL => 0;
21use constant PARSE_IN_EXPR => 1;
22use constant PARSE_IN_PARENS => 2;
25823711 23
24# These SQL keywords always signal end of the current expression (except inside
25# of a parenthesized subexpression).
26# Format: A list of strings that will be compiled to extended syntax (ie.
27# /.../x) regexes, without capturing parentheses. They will be automatically
28# anchored to word boundaries to match the whole token).
29my @expression_terminator_sql_keywords = (
30 'FROM',
31 '(?:
32 (?:
33 (?: \b (?: LEFT | RIGHT | FULL ) \s+ )?
34 (?: \b (?: CROSS | INNER | OUTER ) \s+ )?
35 )?
36 JOIN
37 )',
38 'ON',
39 'WHERE',
40 'GROUP \s+ BY',
41 'HAVING',
42 'ORDER \s+ BY',
43 'LIMIT',
44 'OFFSET',
45 'FOR',
46 'UNION',
47 'INTERSECT',
48 'EXCEPT',
49);
50
51my $tokenizer_re_str = join('|',
52 map { '\b' . $_ . '\b' }
53 @expression_terminator_sql_keywords, 'AND', 'OR'
54);
55
56my $tokenizer_re = qr/
57 \s*
58 (
59 \(
60 |
61 \)
62 |
63 $tokenizer_re_str
64 )
65 \s*
66/xi;
67
68
fffe6900 69sub is_same_sql_bind {
70 my ($sql1, $bind_ref1, $sql2, $bind_ref2, $msg) = @_;
71
72 # compare
25823711 73 my $same_sql = eq_sql($sql1, $sql2);
fffe6900 74 my $same_bind = eq_bind($bind_ref1, $bind_ref2);
75
a6daa642 76 # call Test::Builder::ok
5aad8cf3 77 $tb->ok($same_sql && $same_bind, $msg);
fffe6900 78
79 # add debugging info
80 if (!$same_sql) {
e7827ba2 81 _sql_differ_diag($sql1, $sql2);
fffe6900 82 }
83 if (!$same_bind) {
e7827ba2 84 _bind_differ_diag($bind_ref1, $bind_ref2);
fffe6900 85 }
86}
87
e7827ba2 88sub is_same_sql {
89 my ($sql1, $sql2, $msg) = @_;
90
91 # compare
92 my $same_sql = eq_sql($sql1, $sql2);
93
94 # call Test::Builder::ok
95 $tb->ok($same_sql, $msg);
96
97 # add debugging info
98 if (!$same_sql) {
99 _sql_differ_diag($sql1, $sql2);
100 }
101}
102
103sub is_same_bind {
104 my ($bind_ref1, $bind_ref2, $msg) = @_;
105
106 # compare
107 my $same_bind = eq_bind($bind_ref1, $bind_ref2);
108
109 # call Test::Builder::ok
110 $tb->ok($same_bind, $msg);
111
112 # add debugging info
113 if (!$same_bind) {
114 _bind_differ_diag($bind_ref1, $bind_ref2);
115 }
116}
117
118sub _sql_differ_diag {
119 my ($sql1, $sql2) = @_;
120
121 $tb->diag("SQL expressions differ\n"
122 ." got: $sql1\n"
123 ."expected: $sql2\n"
124 ."differing in :\n$sql_differ\n"
125 );
126}
127
128sub _bind_differ_diag {
129 my ($bind_ref1, $bind_ref2) = @_;
130
131 $tb->diag("BIND values differ\n"
132 ." got: " . Dumper($bind_ref1)
133 ."expected: " . Dumper($bind_ref2)
134 );
135}
136
137sub eq_sql_bind {
138 my ($sql1, $bind_ref1, $sql2, $bind_ref2) = @_;
139
140 return eq_sql($sql1, $sql2) && eq_bind($bind_ref1, $bind_ref2);
141}
142
143
fffe6900 144sub eq_bind {
145 my ($bind_ref1, $bind_ref2) = @_;
fffe6900 146
4abea32b 147 return eq_deeply($bind_ref1, $bind_ref2);
fffe6900 148}
149
150sub eq_sql {
25823711 151 my ($sql1, $sql2) = @_;
152
153 # parse
154 my $tree1 = parse($sql1);
155 my $tree2 = parse($sql2);
156
157 return _eq_sql($tree1, $tree2);
158}
159
160sub _eq_sql {
fffe6900 161 my ($left, $right) = @_;
162
163 # ignore top-level parentheses
164 while ($left->[0] eq 'PAREN') {$left = $left->[1] }
165 while ($right->[0] eq 'PAREN') {$right = $right->[1]}
166
167 # if operators are different
168 if ($left->[0] ne $right->[0]) {
169 $sql_differ = sprintf "OP [$left->[0]] != [$right->[0]] in\nleft: %s\nright: %s\n",
170 unparse($left),
171 unparse($right);
172 return 0;
173 }
174 # elsif operators are identical, compare operands
175 else {
176 if ($left->[0] eq 'EXPR' ) { # unary operator
177 (my $l = " $left->[1] " ) =~ s/\s+/ /g;
178 (my $r = " $right->[1] ") =~ s/\s+/ /g;
179 my $eq = $case_sensitive ? $l eq $r : uc($l) eq uc($r);
180 $sql_differ = "[$left->[1]] != [$right->[1]]\n" if not $eq;
181 return $eq;
182 }
183 else { # binary operator
25823711 184 return _eq_sql($left->[1][0], $right->[1][0]) # left operand
185 && _eq_sql($left->[1][1], $right->[1][1]); # right operand
fffe6900 186 }
187 }
188}
189
190
191sub parse {
192 my $s = shift;
193
25823711 194 # tokenize string, and remove all optional whitespace
195 my $tokens = [];
196 foreach my $token (split $tokenizer_re, $s) {
197 $token =~ s/\s+/ /g;
198 $token =~ s/\s+([^\w\s])/$1/g;
199 $token =~ s/([^\w\s])\s+/$1/g;
200 push @$tokens, $token if $token !~ /^$/;
201 }
fffe6900 202
25823711 203 my $tree = _recurse_parse($tokens, PARSE_TOP_LEVEL);
fffe6900 204 return $tree;
205}
206
207sub _recurse_parse {
25823711 208 my ($tokens, $state) = @_;
fffe6900 209
210 my $left;
211 while (1) { # left-associative parsing
212
213 my $lookahead = $tokens->[0];
25823711 214 return $left if !defined($lookahead)
215 || ($state == PARSE_IN_PARENS && $lookahead eq ')')
216 || ($state == PARSE_IN_EXPR && grep { $lookahead =~ /^$_$/xi }
217 '\)', @expression_terminator_sql_keywords
218 );
fffe6900 219
220 my $token = shift @$tokens;
221
222 # nested expression in ()
223 if ($token eq '(') {
25823711 224 my $right = _recurse_parse($tokens, PARSE_IN_PARENS);
fffe6900 225 $token = shift @$tokens or croak "missing ')'";
226 $token eq ')' or croak "unexpected token : $token";
227 $left = $left ? [CONCAT => [$left, [PAREN => $right]]]
228 : [PAREN => $right];
229 }
230 # AND/OR
231 elsif ($token eq 'AND' || $token eq 'OR') {
25823711 232 my $right = _recurse_parse($tokens, PARSE_IN_EXPR);
fffe6900 233 $left = [$token => [$left, $right]];
234 }
25823711 235 # expression terminator keywords (as they start a new expression)
236 elsif (grep { $token =~ /^$_$/xi } @expression_terminator_sql_keywords) {
237 my $right = _recurse_parse($tokens, PARSE_IN_EXPR);
238 $left = $left ? [CONCAT => [$left, [CONCAT => [[EXPR => $token], [PAREN => $right]]]]]
239 : [CONCAT => [[EXPR => $token], [PAREN => $right]]];
240 }
fffe6900 241 # leaf expression
242 else {
243 $left = $left ? [CONCAT => [$left, [EXPR => $token]]]
244 : [EXPR => $token];
245 }
246 }
247}
248
249
250
251sub unparse {
252 my $tree = shift;
253 my $dispatch = {
254 EXPR => sub {$tree->[1] },
255 PAREN => sub {"(" . unparse($tree->[1]) . ")" },
256 CONCAT => sub {join " ", map {unparse($_)} @{$tree->[1]}},
257 AND => sub {join " AND ", map {unparse($_)} @{$tree->[1]}},
258 OR => sub {join " OR ", map {unparse($_)} @{$tree->[1]}},
259 };
260 $dispatch->{$tree->[0]}->();
261}
262
263
2641;
265
266
267__END__
268
269=head1 NAME
270
271SQL::Abstract::Test - Helper function for testing SQL::Abstract
272
273=head1 SYNOPSIS
274
275 use SQL::Abstract;
276 use Test::More;
e7827ba2 277 use SQL::Abstract::Test import => [qw/
278 is_same_sql_bind is_same_sql is_same_bind
279 eq_sql_bind eq_sql eq_bind
280 /];
fffe6900 281
282 my ($sql, @bind) = SQL::Abstract->new->select(%args);
e7827ba2 283
fffe6900 284 is_same_sql_bind($given_sql, \@given_bind,
285 $expected_sql, \@expected_bind, $test_msg);
286
e7827ba2 287 is_same_sql($given_sql, $expected_sql, $test_msg);
288 is_same_bind(\@given_bind, \@expected_bind, $test_msg);
289
290 my $is_same = eq_sql_bind($given_sql, \@given_bind,
291 $expected_sql, \@expected_bind);
292
293 my $sql_same = eq_sql($given_sql, $expected_sql);
294 my $bind_same = eq_bind(\@given_bind, \@expected_bind);
295
fffe6900 296=head1 DESCRIPTION
297
298This module is only intended for authors of tests on
299L<SQL::Abstract|SQL::Abstract> and related modules;
300it exports functions for comparing two SQL statements
301and their bound values.
302
303The SQL comparison is performed on I<abstract syntax>,
304ignoring differences in spaces or in levels of parentheses.
305Therefore the tests will pass as long as the semantics
306is preserved, even if the surface syntax has changed.
307
308B<Disclaimer> : this is only a half-cooked semantic equivalence;
309parsing is simple-minded, and comparison of SQL abstract syntax trees
310ignores commutativity or associativity of AND/OR operators, Morgan
311laws, etc.
312
313=head1 FUNCTIONS
314
315=head2 is_same_sql_bind
316
317 is_same_sql_bind($given_sql, \@given_bind,
318 $expected_sql, \@expected_bind, $test_msg);
319
320Compares given and expected pairs of C<($sql, \@bind)>, and calls
e7827ba2 321L<Test::Builder/ok> on the result, with C<$test_msg> as message. If the test
322fails, a detailed diagnostic is printed. For clients which use L<Test::More>,
323this is the one of the three functions (L</is_same_sql_bind>, L</is_same_sql>,
324L</is_same_bind>) that needs to be imported.
325
326=head2 is_same_sql
327
328 is_same_sql($given_sql, $expected_sql, $test_msg);
329
330Compares given and expected SQL statements, and calls L<Test::Builder/ok> on
331the result, with C<$test_msg> as message. If the test fails, a detailed
332diagnostic is printed. For clients which use L<Test::More>, this is the one of
333the three functions (L</is_same_sql_bind>, L</is_same_sql>, L</is_same_bind>)
334that needs to be imported.
335
336=head2 is_same_bind
337
338 is_same_bind(\@given_bind, \@expected_bind, $test_msg);
339
340Compares given and expected bind values, and calls L<Test::Builder/ok> on the
341result, with C<$test_msg> as message. If the test fails, a detailed diagnostic
342is printed. For clients which use L<Test::More>, this is the one of the three
343functions (L</is_same_sql_bind>, L</is_same_sql>, L</is_same_bind>) that needs
344to be imported.
345
346=head2 eq_sql_bind
347
348 my $is_same = eq_sql_bind($given_sql, \@given_bind,
349 $expected_sql, \@expected_bind);
350
351Compares given and expected pairs of C<($sql, \@bind)>. Similar to
352L</is_same_sql_bind>, but it just returns a boolean value and does not print
353diagnostics or talk to L<Test::Builder>.
fffe6900 354
355=head2 eq_sql
356
357 my $is_same = eq_sql($given_sql, $expected_sql);
358
e7827ba2 359Compares the abstract syntax of two SQL statements. Similar to L</is_same_sql>,
360but it just returns a boolean value and does not print diagnostics or talk to
361L<Test::Builder>. If the result is false, the global variable L</$sql_differ>
362will contain the SQL portion where a difference was encountered; this is useful
363for printing diagnostics.
fffe6900 364
365=head2 eq_bind
366
367 my $is_same = eq_sql(\@given_bind, \@expected_bind);
368
e7827ba2 369Compares two lists of bind values, taking into account the fact that some of
370the values may be arrayrefs (see L<SQL::Abstract/bindtype>). Similar to
371L</is_same_bind>, but it just returns a boolean value and does not print
372diagnostics or talk to L<Test::Builder>.
fffe6900 373
374=head1 GLOBAL VARIABLES
375
e7827ba2 376=head2 $case_sensitive
fffe6900 377
378If true, SQL comparisons will be case-sensitive. Default is false;
379
e7827ba2 380=head2 $sql_differ
fffe6900 381
382When L</eq_sql> returns false, the global variable
383C<$sql_differ> contains the SQL portion
384where a difference was encountered.
385
386
387=head1 SEE ALSO
388
a6daa642 389L<SQL::Abstract>, L<Test::More>, L<Test::Builder>.
fffe6900 390
25823711 391=head1 AUTHORS
fffe6900 392
393Laurent Dami, E<lt>laurent.dami AT etat geneve chE<gt>
394
25823711 395Norbert Buchmuller <norbi@nix.hu>
396
fffe6900 397=head1 COPYRIGHT AND LICENSE
398
399Copyright 2008 by Laurent Dami.
400
401This library is free software; you can redistribute it and/or modify
402it under the same terms as Perl itself.