X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F02where.t;h=55929772d36815c76409cf668ff1bb4a5f9d2c04;hb=7e5600e994c4f4f7958a19cc246d43bdee9d3890;hp=0c28faf2eb67b2ddf4a433ec441bf39f49722840;hpb=e30faf881505a049a20b9d9a3ca5d3cc1d0e09a0;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/02where.t b/t/02where.t old mode 100755 new mode 100644 index 0c28faf..5592977 --- a/t/02where.t +++ b/t/02where.t @@ -117,6 +117,14 @@ my @handle_tests = ( { where => { + requestor => { '!=', ['-and', undef, ''] }, + }, + stmt => " WHERE ( requestor IS NOT NULL AND requestor != ? )", + bind => [''], + }, + + { + where => { priority => [ {'>', 3}, {'<', 1} ], requestor => { '!=', undef }, }, @@ -156,6 +164,7 @@ my @handle_tests = ( }, { +# LDNOTE 23.03.09 : modified test below, just parentheses differ where => { foo => {-not_like => [7,8,9]}, fum => {'like' => [qw/a b/]}, nix => {'between' => [100,200] }, @@ -163,16 +172,23 @@ my @handle_tests = ( wix => {'in' => [qw/zz yy/]}, wux => {'not_in' => [qw/30 40/]} }, - stmt => " WHERE ( ( ( foo NOT LIKE ? ) OR ( foo NOT LIKE ? ) OR ( foo NOT LIKE ? ) ) AND ( ( fum LIKE ? ) OR ( fum LIKE ? ) ) AND nix BETWEEN ? AND ? AND nox NOT BETWEEN ? AND ? AND wix IN ( ?, ? ) AND wux NOT IN ( ?, ? ) )", + stmt => " WHERE ( ( ( foo NOT LIKE ? ) OR ( foo NOT LIKE ? ) OR ( foo NOT LIKE ? ) ) AND ( ( fum LIKE ? ) OR ( fum LIKE ? ) ) AND ( nix BETWEEN ? AND ? ) AND ( nox NOT BETWEEN ? AND ? ) AND wix IN ( ?, ? ) AND wux NOT IN ( ?, ? ) )", bind => [7,8,9,'a','b',100,200,150,160,'zz','yy','30','40'], }, { where => { - id => [], bar => {'!=' => []}, }, - stmt => " WHERE ( 1=1 AND 0=1 )", + stmt => " WHERE ( 1=1 )", + bind => [], + }, + + { + where => { + id => [], + }, + stmt => " WHERE ( 0=1 )", bind => [], }, @@ -208,86 +224,164 @@ my @handle_tests = ( stmt => " WHERE (foo = ?)", bind => [ "bar" ], }, -); -# add extra modifier tests, based on 2 outcomes -my $mod_or_and = { - stmt => 'WHERE ( foo = ? OR bar = ? ) AND baz = ? ', - bind => [qw/1 2 3/], -}; -my $mod_or_or = { - stmt => 'WHERE ( foo = ? OR bar = ? ) OR baz = ?', - bind => [qw/1 2 3/], -}; -my $mod_and_or = { - stmt => 'WHERE ( foo = ? AND bar = ? ) OR baz = ?', - bind => [qw/1 2 3/], -}; + { + where => { -bool => \'function(x)' }, + stmt => " WHERE function(x)", + bind => [], + }, + + { + where => { -bool => 'foo' }, + stmt => " WHERE foo", + bind => [], + }, + + { + where => { -and => [-bool => 'foo', -bool => 'bar'] }, + stmt => " WHERE foo AND bar", + bind => [], + }, + + { + where => { -or => [-bool => 'foo', -bool => 'bar'] }, + stmt => " WHERE foo OR bar", + bind => [], + }, + + { + where => { -not_bool => \'function(x)' }, + stmt => " WHERE NOT function(x)", + bind => [], + }, + + { + where => { -not_bool => 'foo' }, + stmt => " WHERE NOT foo", + bind => [], + }, -push @handle_tests, ( - # test modifiers within hashrefs { - where => { -or => [ - [ foo => 1, bar => 2 ], - baz => 3, - ]}, - %$mod_or_or, + where => { -and => [-not_bool => 'foo', -not_bool => 'bar'] }, + stmt => " WHERE (NOT foo) AND (NOT bar)", + bind => [], }, + + { + where => { -or => [-not_bool => 'foo', -not_bool => 'bar'] }, + stmt => " WHERE (NOT foo) OR (NOT bar)", + bind => [], + }, + + { + where => { -bool => \['function(?)', 20] }, + stmt => " WHERE function(?)", + bind => [20], + }, + + { + where => { -not_bool => \['function(?)', 20] }, + stmt => " WHERE NOT function(?)", + bind => [20], + }, + + { + where => { -bool => { a => 1, b => 2} }, + stmt => " WHERE a = ? AND b = ?", + bind => [1, 2], + }, + + { + where => { -bool => [ a => 1, b => 2] }, + stmt => " WHERE a = ? OR b = ?", + bind => [1, 2], + }, + + { + where => { -not_bool => { a => 1, b => 2} }, + stmt => " WHERE NOT (a = ? AND b = ?)", + bind => [1, 2], + }, + { - where => { -and => [ - [ foo => 1, bar => 2 ], - baz => 3, - ]}, - %$mod_or_and, + where => { -not_bool => [ a => 1, b => 2] }, + stmt => " WHERE NOT ( a = ? OR b = ? )", + bind => [1, 2], }, - # test modifiers within arrayrefs +# Op against internal function { - where => [ -or => [ - [ foo => 1, bar => 2 ], - baz => 3, - ]], - %$mod_or_or, + where => { bool1 => { '=' => { -not_bool => 'bool2' } } }, + stmt => " WHERE ( bool1 = (NOT bool2) )", + bind => [], }, { - where => [ -and => [ - [ foo => 1, bar => 2 ], - baz => 3, - ]], - %$mod_or_and, + where => { -not_bool => { -not_bool => { -not_bool => 'bool2' } } }, + stmt => " WHERE ( NOT ( NOT ( NOT bool2 ) ) )", + bind => [], }, - # test ambiguous modifiers within hashrefs (op extends to to immediate RHS only) +# Op against random functions (these two are oracle-specific) { - where => { -and => [ -or => - [ foo => 1, bar => 2 ], - baz => 3, - ]}, - %$mod_or_and, + where => { timestamp => { '!=' => { -trunc => { -year => \'sysdate' } } } }, + stmt => " WHERE ( timestamp != TRUNC (YEAR sysdate) )", + bind => [], }, { - where => { -or => [ -and => - [ foo => 1, bar => 2 ], - baz => 3, - ]}, - %$mod_and_or, + where => { timestamp => { '>=' => { -TO_DATE => '2009-12-21 00:00:00' } } }, + stmt => " WHERE ( timestamp >= TO DATE ? )", + bind => ['2009-12-21 00:00:00'], }, - # test ambiguous modifiers within arrayrefs (op extends to to immediate RHS only) +# Legacy function specs { - where => [ -and => [ -or => - [ foo => 1, bar => 2 ], - baz => 3, - ]], - %$mod_or_and, + where => { ip => {'<<=' => '127.0.0.1/32' } }, + stmt => "WHERE ( ip <<= ? )", + bind => ['127.0.0.1/32'], }, { - where => [ -or => [ -and => - [ foo => 1, bar => 2 ], - baz => 3, - ]], - %$mod_and_or, + where => { foo => { 'GLOB' => '*str*' } }, + stmt => " WHERE foo GLOB ? ", + bind => [ '*str*' ], }, + { + where => { foo => { 'REGEXP' => 'bar|baz' } }, + stmt => " WHERE foo REGEXP ? ", + bind => [ 'bar|baz' ], + }, + +# Tests for -not +# Basic tests only + { + where => { -not => { a => 1 } }, + stmt => " WHERE ( (NOT a = ?) ) ", + bind => [ 1 ], + }, + { + where => { a => 1, -not => { b => 2 } }, + stmt => " WHERE ( ( (NOT b = ?) AND a = ? ) ) ", + bind => [ 2, 1 ], + }, + { + where => { -not => { a => 1, b => 2, c => 3 } }, + stmt => " WHERE ( (NOT ( a = ? AND b = ? AND c = ? )) ) ", + bind => [ 1, 2, 3 ], + }, + { + where => { -not => [ a => 1, b => 2, c => 3 ] }, + stmt => " WHERE ( (NOT ( a = ? OR b = ? OR c = ? )) ) ", + bind => [ 1, 2, 3 ], + }, + { + where => { -not => { c => 3, -not => { b => 2, -not => { a => 1 } } } }, + stmt => " WHERE ( (NOT ( (NOT ( (NOT a = ?) AND b = ? )) AND c = ? )) ) ", + bind => [ 1, 2, 3 ], + }, + { + where => { -not => { -bool => 'c', -not => { -not_bool => 'b', -not => { a => 1 } } } }, + stmt => " WHERE ( (NOT ( c AND (NOT ( (NOT a = ?) AND (NOT b) )) )) ) ", + bind => [ 1 ], + }, ); plan tests => ( @handle_tests * 2 ) + 1;