X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F02where.t;h=1b97d7cce88d0965d1fcad24c8f4533fd46c9edf;hb=6f2a5b668d6d34e8aee21c2b0cf51fdbf5dee991;hp=d268062c7edb8687d8d50e4d80868ce3d359aefa;hpb=2281c758334f3576306fdece81d65665dd2a6f04;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/02where.t b/t/02where.t index d268062..1b97d7c 100644 --- a/t/02where.t +++ b/t/02where.t @@ -201,6 +201,24 @@ my @handle_tests = ( stmt => " WHERE ( (bar > ? AND bar < ?) AND foo IN (?, ?) )", bind => [44, 55, 22, 33], }, + + { + where => { + -and => [ + user => 'nwiger', + [ + -and => [ workhrs => {'>', 20}, geo => 'ASIA' ], + -or => { workhrs => {'<', 50}, geo => 'EURO' }, + ], + ], + }, + stmt => "WHERE ( user = ? AND ( + ( workhrs > ? AND geo = ? ) + OR ( geo = ? OR workhrs < ? ) + ) )", + bind => [qw/nwiger 20 ASIA EURO 50/], + }, + { where => { -and => [{}, { 'me.id' => '1'}] }, stmt => " WHERE ( ( me.id = ? ) )", @@ -323,16 +341,65 @@ my @handle_tests = ( # Op against random functions (these two are oracle-specific) { - where => { timestamp => { '!=' => { -trunc => \'sysdate' } } }, - stmt => " WHERE ( timestamp != TRUNC(sysdate) )", + 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(?) )", + 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;