moved internal test module into published SQL/Abstract/Test, so that clients of SQLA...
[dbsrgits/SQL-Abstract.git] / t / 00new.t
CommitLineData
41751122 1#!/usr/bin/perl
32eab2da 2
3use strict;
41751122 4use warnings;
5use Test::More;
32eab2da 6
c461c25c 7use SQL::Abstract::Test qw/is_same_sql_bind/;
32eab2da 8
41751122 9plan tests => 15;
10
11use_ok('SQL::Abstract');
32eab2da 12
96449e8e 13#LDNOTE: renamed all "bind" into "where" because that's what they are
14
15
32eab2da 16my @handle_tests = (
17 #1
18 {
19 args => {logic => 'OR'},
96449e8e 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 = ? )'
32eab2da 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'},
96449e8e 45# LDNOTE idem
46# stmt => 'SELECT * FROM test WHERE ( a = ? OR b = ? )'
47 stmt => 'SELECT * FROM test WHERE ( a = ? AND b = ? )'
32eab2da 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"},
96449e8e 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 ? )'
32eab2da 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(?) ) )',
96449e8e 90 where => [ { ticket => 11 }, { hostname => 11 }, { taco => 'salad' }, { salami => 'punch' } ],
32eab2da 91 },
92 #14
93 {
94 args => {convert => "upper"},
96449e8e 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'] } },
32eab2da 106 { tack => { between => [qw/tick tock/] } },
96449e8e 107 { a => [qw/b c d/],
108 e => { '!=', [qw(f g)] },
109 q => { 'not in', [14..20] } } ],
32eab2da 110 },
111);
112
113for (@handle_tests) {
96449e8e 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]);
32eab2da 124}
125
126