moved internal test module into published SQL/Abstract/Test, so that clients of SQLA...
[scpubgit/Q-Branch.git] / t / 00new.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5 use Test::More;
6
7 use SQL::Abstract::Test qw/is_same_sql_bind/;
8
9 plan tests => 15;
10
11 use_ok('SQL::Abstract');
12
13 #LDNOTE: renamed all "bind" into "where" because that's what they are
14
15
16 my @handle_tests = (
17       #1
18       {
19               args => {logic => 'OR'},
20 #              stmt => 'SELECT * FROM test WHERE ( a = ? OR b = ? )'
21 # LDNOTE: modified the line above (changing the test suite!!!) because
22 # the test was not consistent with the doc: hashrefs should not be
23 # influenced by the current logic, they always mean 'AND'. So 
24 # { a => 4, b => 0} should ALWAYS mean ( a = ? AND b = ? ).
25               stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
26       },
27       #2
28       {
29               args => {},
30               stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
31       },
32       #3
33       {
34               args => {case => "upper"},
35               stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
36       },
37       #4
38       {
39               args => {case => "upper", cmp => "="},
40               stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
41       },
42       #5
43       {
44               args => {cmp => "=", logic => 'or'},
45 # LDNOTE idem
46 #              stmt => 'SELECT * FROM test WHERE ( a = ? OR b = ? )'
47               stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
48       },
49       #6
50       {
51               args => {cmp => "like"},
52               stmt => 'SELECT * FROM test WHERE ( a LIKE ? AND b LIKE ? )'
53       },
54       #7
55       {
56               args => {logic => "or", cmp => "like"},
57 # LDNOTE idem
58 #              stmt => 'SELECT * FROM test WHERE ( a LIKE ? OR b LIKE ? )'
59               stmt => 'SELECT * FROM test WHERE ( a LIKE ? AND b LIKE ? )'
60       },
61       #8
62       {
63               args => {case => "lower"},
64               stmt => 'select * from test where ( a = ? and b = ? )'
65       },
66       #9
67       {
68               args => {case => "lower", cmp => "="},
69               stmt => 'select * from test where ( a = ? and b = ? )'
70       },
71       #10
72       {
73               args => {case => "lower", cmp => "like"},
74               stmt => 'select * from test where ( a like ? and b like ? )'
75       },
76       #11
77       {
78               args => {case => "lower", convert => "lower", cmp => "like"},
79               stmt => 'select * from test where ( lower(a) like lower(?) and lower(b) like lower(?) )'
80       },
81       #12
82       {
83               args => {convert => "Round"},
84               stmt => 'SELECT * FROM test WHERE ( ROUND(a) = ROUND(?) AND ROUND(b) = ROUND(?) )',
85       },
86       #13
87       {
88               args => {convert => "lower"},
89               stmt => 'SELECT * FROM test WHERE ( ( LOWER(ticket) = LOWER(?) ) OR ( LOWER(hostname) = LOWER(?) ) OR ( LOWER(taco) = LOWER(?) ) OR ( LOWER(salami) = LOWER(?) ) )',
90               where => [ { ticket => 11 }, { hostname => 11 }, { taco => 'salad' }, { salami => 'punch' } ],
91       },
92       #14
93       {
94               args => {convert => "upper"},
95 # LDNOTE : modified the test below, because modified the semantics
96 # of "e => { '!=', [qw(f g)] }" : generating "e != 'f' OR e != 'g'"
97 # is nonsense (will always be true whatever the value of e). Since
98 # this is a 'negative' operator, we must apply the Morgan laws and
99 # interpret it as "e != 'f' AND e != 'g'" (and actually the user
100 # should rather write "e => {-not_in => [qw/f g/]}".
101
102 #              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(?) ) ) )',
103               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(?) ) ) )',
104               where => [ { ticket => [11, 12, 13], 
105                            hostname => { in => ['ntf', 'avd', 'bvd', '123'] } },
106                         { tack => { between => [qw/tick tock/] } },
107                         { a => [qw/b c d/], 
108                           e => { '!=', [qw(f g)] }, 
109                           q => { 'not in', [14..20] } } ],
110       },
111 );
112
113 for (@handle_tests) {
114   local $" = ', ';
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);
119
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]);
124 }
125
126