X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F01generate.t;h=4fa38edc6ac49dd39b589b44cef3810ed8ea876a;hb=7e461775f27e8015b6bd29a71f57e39e4bd0a772;hp=ebe3aad95ebc7bc747f9ed6ee982fd6756d8671b;hpb=ca4f826a37ccb5194b0b5b9b4190b4007d647d9c;p=scpubgit%2FQ-Branch.git diff --git a/t/01generate.t b/t/01generate.t index ebe3aad..4fa38ed 100644 --- a/t/01generate.t +++ b/t/01generate.t @@ -16,7 +16,6 @@ use SQL::Abstract; # ################# - my @tests = ( { func => 'select', @@ -75,6 +74,14 @@ my @tests = ( bind => ['boom'] }, { + # this is maybe wrong but a single arg doesn't get quoted + func => 'select', + args => ['test', 'id', { a => { '!=', 'boom' } }], + stmt => 'SELECT id FROM test WHERE ( a != ? )', + stmt_q => 'SELECT id FROM `test` WHERE ( `a` != ? )', + bind => ['boom'] + }, + { func => 'update', args => ['test', {a => 'boom'}, {a => undef}], stmt => 'UPDATE test SET a = ? WHERE ( a IS NULL )', @@ -83,6 +90,13 @@ my @tests = ( }, { func => 'update', + args => ['test', {a => undef }, {a => 'boom'}], + stmt => 'UPDATE test SET a = ? WHERE ( a = ? )', + stmt_q => 'UPDATE `test` SET `a` = ? WHERE ( `a` = ? )', + bind => [undef,'boom'] + }, + { + func => 'update', args => ['test', {a => 'boom'}, { a => {'!=', "bang" }} ], stmt => 'UPDATE test SET a = ? WHERE ( a != ? )', stmt_q => 'UPDATE `test` SET `a` = ? WHERE ( `a` != ? )', @@ -726,9 +740,6 @@ for my $lhs (undef, '') { [ foo => "bar", $lhs => \["baz"], bizz => "buzz" ], [ $lhs => \"baz" ], [ $lhs => \["baz"] ], - - # except for this one, that is automagically arrayified - { foo => "bar", -or => { $lhs => \"baz" }, bizz => "buzz" }, ) { push @tests, { func => 'where', @@ -741,6 +752,7 @@ for my $lhs (undef, '') { ## deprecations - sorta worked, likely abused by folks for my $where_arg ( # the arrayref forms of this never worked and throw above + { foo => "bar", -or => { $lhs => \"baz" }, bizz => "buzz" }, { foo => "bar", -and => { $lhs => \"baz" }, bizz => "buzz" }, { foo => "bar", $lhs => \"baz", bizz => "buzz" }, { foo => "bar", $lhs => \["baz"], bizz => "buzz" }, @@ -850,17 +862,19 @@ for my $t (@tests) { ) || diag dumper({ args => $t->{args}, result => $stmt }); } else { - warnings_like( - sub { $cref->() }, - $t->{warns} || [], - ) || diag dumper({ args => $t->{args}, result => $stmt }); + lives_ok(sub { + warnings_like( + sub { $cref->() }, + $t->{warns} || [], + ) || diag dumper({ args => $t->{args}, result => $stmt }); + }) || diag dumper({ args => $t->{args}, result => $stmt, threw => $@ }); is_same_sql_bind( $stmt, \@bind, $quoted ? $t->{stmt_q}: $t->{stmt}, $t->{bind} - ); + ) || diag dumper({ args => $t->{args}, result => $stmt });; } } }