X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F02where.t;h=5fea555cf449dfaf2b417cd6a35ed786da51f468;hb=667dd26d1b9e5f03407ca8656f8bef95062e5c51;hp=9d22beb0b8378412e450bd2964cdf965424460bb;hpb=0e9a4b38988ebfeec6397d881c95e8947fb7fb5d;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/02where.t b/t/02where.t index 9d22beb..5fea555 100644 --- 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 }, }, @@ -301,6 +309,79 @@ my @handle_tests = ( bind => [1, 2], }, +# Op against internal function + { + where => { bool1 => { '=' => { -not_bool => 'bool2' } } }, + stmt => " WHERE ( bool1 = (NOT bool2) )", + bind => [], + }, + { + where => { -not_bool => { -not_bool => { -not_bool => 'bool2' } } }, + stmt => " WHERE ( NOT ( NOT ( NOT bool2 ) ) )", + bind => [], + }, + +# Op against random functions (these two are oracle-specific) + { + where => { timestamp => { '!=' => { -trunc => { -year => \'sysdate' } } } }, + stmt => " WHERE ( timestamp != TRUNC (YEAR sysdate) )", + bind => [], + }, + { + where => { timestamp => { '>=' => { -to_date => '2009-12-21 00:00:00' } } }, + stmt => " WHERE ( timestamp >= TO_DATE ? )", + bind => ['2009-12-21 00:00:00'], + }, + +# Legacy function specs + { + where => { ip => {'<<=' => '127.0.0.1/32' } }, + stmt => "WHERE ( ip <<= ? )", + bind => ['127.0.0.1/32'], + }, + { + 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;