7 use SQL::Abstract::Test import => ['is_same_sql_bind'];
9 #LDNOTE: renamed all "bind" into "where" because that's what they are
14 args => {logic => 'OR'},
15 # stmt => 'SELECT * FROM test WHERE ( a = ? OR b = ? )'
16 # LDNOTE: modified the line above (changing the test suite!!!) because
17 # the test was not consistent with the doc: hashrefs should not be
18 # influenced by the current logic, they always mean 'AND'. So
19 # { a => 4, b => 0} should ALWAYS mean ( a = ? AND b = ? ).
20 stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
25 stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
29 args => {case => "upper"},
30 stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
34 args => {case => "upper", cmp => "="},
35 stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
39 args => {cmp => "=", logic => 'or'},
41 # stmt => 'SELECT * FROM test WHERE ( a = ? OR b = ? )'
42 stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
46 args => {cmp => "like"},
47 stmt => 'SELECT * FROM test WHERE ( a LIKE ? AND b LIKE ? )'
51 args => {logic => "or", cmp => "like"},
53 # stmt => 'SELECT * FROM test WHERE ( a LIKE ? OR b LIKE ? )'
54 stmt => 'SELECT * FROM test WHERE ( a LIKE ? AND b LIKE ? )'
58 args => {case => "lower"},
59 stmt => 'select * from test where ( a = ? and b = ? )'
63 args => {case => "lower", cmp => "="},
64 stmt => 'select * from test where ( a = ? and b = ? )'
68 args => {case => "lower", cmp => "like"},
69 stmt => 'select * from test where ( a like ? and b like ? )'
73 args => {case => "lower", convert => "lower", cmp => "like"},
74 stmt => 'select * from test where ( lower(a) like lower(?) and lower(b) like lower(?) )'
78 args => {convert => "Round"},
79 stmt => 'SELECT * FROM test WHERE ( ROUND(a) = ROUND(?) AND ROUND(b) = ROUND(?) )',
83 args => {convert => "lower"},
84 stmt => 'SELECT * FROM test WHERE ( ( LOWER(ticket) = LOWER(?) ) OR ( LOWER(hostname) = LOWER(?) ) OR ( LOWER(taco) = LOWER(?) ) OR ( LOWER(salami) = LOWER(?) ) )',
85 where => [ { ticket => 11 }, { hostname => 11 }, { taco => 'salad' }, { salami => 'punch' } ],
89 args => {convert => "upper"},
90 # LDNOTE : modified the test below, because modified the semantics
91 # of "e => { '!=', [qw(f g)] }" : generating "e != 'f' OR e != 'g'"
92 # is nonsense (will always be true whatever the value of e). Since
93 # this is a 'negative' operator, we must apply the Morgan laws and
94 # interpret it as "e != 'f' AND e != 'g'" (and actually the user
95 # should rather write "e => {-not_in => [qw/f g/]}".
97 # stmt => 'SELECT * FROM test WHERE ( ( UPPER(hostname) IN ( UPPER(?), UPPER(?), UPPER(?), UPPER(?) ) AND ( ( UPPER(ticket) = UPPER(?) ) OR ( UPPER(ticket) = UPPER(?) ) OR ( UPPER(ticket) = UPPER(?) ) ) ) OR ( UPPER(tack) BETWEEN UPPER(?) AND UPPER(?) ) OR ( ( ( UPPER(a) = UPPER(?) ) OR ( UPPER(a) = UPPER(?) ) OR ( UPPER(a) = UPPER(?) ) ) AND ( ( UPPER(e) != UPPER(?) ) OR ( UPPER(e) != UPPER(?) ) ) AND UPPER(q) NOT IN ( UPPER(?), UPPER(?), UPPER(?), UPPER(?), UPPER(?), UPPER(?), UPPER(?) ) ) )',
98 stmt => 'SELECT * FROM test WHERE ( ( UPPER(hostname) IN ( UPPER(?), UPPER(?), UPPER(?), UPPER(?) ) AND ( ( UPPER(ticket) = UPPER(?) ) OR ( UPPER(ticket) = UPPER(?) ) OR ( UPPER(ticket) = UPPER(?) ) ) ) OR ( UPPER(tack) BETWEEN UPPER(?) AND UPPER(?) ) OR ( ( ( UPPER(a) = UPPER(?) ) OR ( UPPER(a) = UPPER(?) ) OR ( UPPER(a) = UPPER(?) ) ) AND ( ( UPPER(e) != UPPER(?) ) AND ( UPPER(e) != UPPER(?) ) ) AND UPPER(q) NOT IN ( UPPER(?), UPPER(?), UPPER(?), UPPER(?), UPPER(?), UPPER(?), UPPER(?) ) ) )',
99 where => [ { ticket => [11, 12, 13],
100 hostname => { in => ['ntf', 'avd', 'bvd', '123'] } },
101 { tack => { between => [qw/tick tock/] } },
103 e => { '!=', [qw(f g)] },
104 q => { 'not in', [14..20] } } ],
109 plan tests => (1 + scalar(@handle_tests));
111 use_ok('SQL::Abstract');
113 for (@handle_tests) {
115 #print "creating a handle with args ($_->{args}): ";
116 my $sql = SQL::Abstract->new($_->{args});
117 my $where = $_->{where} || { a => 4, b => 0};
118 my($stmt, @bind) = $sql->select('test', '*', $where);
120 # LDNOTE: this original test suite from NWIGER did no comparisons
121 # on @bind values, just checking if @bind is nonempty.
122 # So here we just fake a [1] bind value for the comparison.
123 is_same_sql_bind($stmt, [@bind ? 1 : 0], $_->{stmt}, [1]);