X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F05in_between.t;h=5bcbe554fa5fc159799ad20c79315bc47999a2a0;hb=c7e9c808fa4346e2c2692f107852626c0ccde404;hp=fc3aa1d231e361f722467cdec212d45da4bd03cc;hpb=ddd6fbb6f333f2247acd57f93a2307ce4ef0ae97;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/05in_between.t b/t/05in_between.t index fc3aa1d..5bcbe55 100644 --- a/t/05in_between.t +++ b/t/05in_between.t @@ -174,6 +174,17 @@ my @in_between_tests = ( bind => [], test => '-in multi-line subquery test', }, + + # check that the outer paren opener is not too agressive + # note: this syntax *is not legal* on SQLite (maybe others) + # see end of https://rt.cpan.org/Ticket/Display.html?id=99503 + { + where => { foo => { -in => \ '(SELECT 1) UNION (SELECT 2)' } }, + stmt => 'WHERE foo IN ( (SELECT 1) UNION (SELECT 2) )', + bind => [], + test => '-in paren-opening works on balanced pairs only', + }, + { where => { customer => { -in => \[ @@ -268,15 +279,59 @@ my @in_between_tests = ( }, { - where => { -in => [42] }, - throws => qr/Illegal use of top-level '-in'/, + where => { -in => [ 'bob', 4, 2 ] }, + stmt => ' WHERE (bob IN (?, ?))', + bind => [ 4, 2 ], test => 'Top level -in', }, +# This works but then SQL::Abstract::Tree breaks - something for a later commit +# { +# where => { -in => [ { -list => [ qw(x y) ] }, { -list => [ 1, 3 ] }, { -list => [ 2, 4 ] } ] }, +# stmt => ' WHERE ((x, y) IN ((?, ?), (?, ?))', +# bind => [ 1, 3, 2, 4 ], +# test => 'Top level -in with list args', +# }, { where => { -between => [42, 69] }, - throws => qr/Illegal use of top-level '-between'/, - test => 'Top level -between', + throws => qr/Fatal: Operator 'BETWEEN' requires/, + test => 'Top level -between with broken args', }, + { + where => { + -between => [ + { -op => [ '+', { -ident => 'foo' }, 2 ] }, + 3, 4 + ], + }, + stmt => ' WHERE (foo + ? BETWEEN ? AND ?)', + bind => [ 2, 3, 4 ], + test => 'Top level -between with useful LHS', + }, + { + where => { + -in => [ + { -row => [ 'x', 'y' ] }, + { -row => [ 1, 2 ] }, + { -row => [ 3, 4 ] }, + ], + }, + stmt => ' WHERE (x, y) IN ((?, ?), (?, ?))', + bind => [ 1..4 ], + test => 'Complex top-level -in', + }, + { + where => { -is => [ 'bob', undef ] }, + stmt => ' WHERE bob IS NULL', + bind => [], + test => 'Top level -is ok', + }, + { + where => { -op => [ in => x => 1, 2, 3 ] }, + stmt => ' WHERE x IN (?, ?, ?)', + bind => [ 1, 2, 3 ], + test => 'Raw -op passes through correctly' + }, + ); for my $case (@in_between_tests) { @@ -285,7 +340,7 @@ for my $case (@in_between_tests) { local $SQL::Abstract::Test::parenthesis_significant = $case->{parenthesis_significant}; my $label = $case->{test} || 'in-between test'; - my $sql = SQL::Abstract->new ($case->{args} || {}); + my $sql = SQL::Abstract->new($case->{args} || {}); if (my $e = $case->{throws}) { my $stmt; @@ -294,17 +349,19 @@ for my $case (@in_between_tests) { } else { my ($stmt, @bind); - warnings_are { - ($stmt, @bind) = $sql->where($case->{where}); - } [], "$label gives no warnings"; - - is_same_sql_bind( - $stmt, - \@bind, - $case->{stmt}, - $case->{bind}, - "$label generates correct SQL and bind", - ) || diag_where ( $case->{where} ); + lives_ok { + warnings_are { + ($stmt, @bind) = $sql->where($case->{where}); + } [], "$label gives no warnings"; + + is_same_sql_bind( + $stmt, + \@bind, + $case->{stmt}, + $case->{bind}, + "$label generates correct SQL and bind", + ) || diag dumper ({ where => $case->{where}, exp => $sql->_expand_expr($case->{where}) }); + } || diag dumper ({ where => $case->{where}, exp => $sql->_expand_expr($case->{where}) }); } } }