drh | 8d2cb14 | 2000-05-30 03:28:35 +0000 | [diff] [blame] | 1 | # Copyright (c) 1999, 2000 D. Richard Hipp |
| 2 | # |
| 3 | # This program is free software; you can redistribute it and/or |
| 4 | # modify it under the terms of the GNU General Public |
| 5 | # License as published by the Free Software Foundation; either |
| 6 | # version 2 of the License, or (at your option) any later version. |
| 7 | # |
| 8 | # This program is distributed in the hope that it will be useful, |
| 9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | # General Public License for more details. |
| 12 | # |
| 13 | # You should have received a copy of the GNU General Public |
| 14 | # License along with this library; if not, write to the |
| 15 | # Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 16 | # Boston, MA 02111-1307, USA. |
| 17 | # |
| 18 | # Author contact information: |
| 19 | # drh@hwaci.com |
| 20 | # http://www.hwaci.com/drh/ |
| 21 | # |
| 22 | #*********************************************************************** |
| 23 | # This file implements regression tests for SQLite library. The |
| 24 | # focus of this file is testing expressions. |
| 25 | # |
drh | c837e70 | 2000-06-08 16:26:24 +0000 | [diff] [blame^] | 26 | # $Id: expr.test,v 1.7 2000/06/08 16:26:25 drh Exp $ |
drh | 8d2cb14 | 2000-05-30 03:28:35 +0000 | [diff] [blame] | 27 | |
| 28 | set testdir [file dirname $argv0] |
| 29 | source $testdir/tester.tcl |
| 30 | |
| 31 | # Create a table to work with. |
| 32 | # |
| 33 | execsql {CREATE TABLE test1(i1 int, i2 int, r1 real, r2 real, t1 text, t2 text)} |
| 34 | execsql {INSERT INTO test1 VALUES(1,2,1.1,2.2,'hello','world')} |
| 35 | proc test_expr {name settings expr result} { |
| 36 | do_test $name [format { |
| 37 | execsql {UPDATE test1 SET %s} |
| 38 | execsql {SELECT %s FROM test1} |
| 39 | } $settings $expr] $result |
| 40 | } |
| 41 | |
| 42 | test_expr expr-1.1 {i1=10, i2=20} {i1+i2} 30 |
| 43 | test_expr expr-1.2 {i1=10, i2=20} {i1-i2} -10 |
| 44 | test_expr expr-1.3 {i1=10, i2=20} {i1*i2} 200 |
| 45 | test_expr expr-1.4 {i1=10, i2=20} {i1/i2} 0.5 |
| 46 | test_expr expr-1.5 {i1=10, i2=20} {i2/i1} 2 |
| 47 | test_expr expr-1.6 {i1=10, i2=20} {i2<i1} 0 |
| 48 | test_expr expr-1.7 {i1=10, i2=20} {i2<=i1} 0 |
| 49 | test_expr expr-1.8 {i1=10, i2=20} {i2>i1} 1 |
| 50 | test_expr expr-1.9 {i1=10, i2=20} {i2>=i1} 1 |
| 51 | test_expr expr-1.10 {i1=10, i2=20} {i2!=i1} 1 |
| 52 | test_expr expr-1.11 {i1=10, i2=20} {i2=i1} 0 |
| 53 | test_expr expr-1.12 {i1=10, i2=20} {i2<>i1} 1 |
| 54 | test_expr expr-1.13 {i1=10, i2=20} {i2==i1} 0 |
| 55 | test_expr expr-1.14 {i1=20, i2=20} {i2<i1} 0 |
| 56 | test_expr expr-1.15 {i1=20, i2=20} {i2<=i1} 1 |
| 57 | test_expr expr-1.16 {i1=20, i2=20} {i2>i1} 0 |
| 58 | test_expr expr-1.17 {i1=20, i2=20} {i2>=i1} 1 |
| 59 | test_expr expr-1.18 {i1=20, i2=20} {i2!=i1} 0 |
| 60 | test_expr expr-1.19 {i1=20, i2=20} {i2=i1} 1 |
| 61 | test_expr expr-1.20 {i1=20, i2=20} {i2<>i1} 0 |
| 62 | test_expr expr-1.21 {i1=20, i2=20} {i2==i1} 1 |
| 63 | test_expr expr-1.22 {i1=1, i2=2, r1=3.0} {i1+i2*r1} {7} |
| 64 | test_expr expr-1.23 {i1=1, i2=2, r1=3.0} {(i1+i2)*r1} {9} |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 65 | test_expr expr-1.24 {i1=1, i2=2} {min(i1,i2,i1+i2,i1-i2)} {-1} |
| 66 | test_expr expr-1.25 {i1=1, i2=2} {max(i1,i2,i1+i2,i1-i2)} {3} |
drh | 8be5113 | 2000-06-03 19:19:41 +0000 | [diff] [blame] | 67 | test_expr expr-1.26 {i1=1, i2=2} {max(i1,i2,i1+i2,i1-i2)} {3} |
| 68 | test_expr expr-1.27 {i1=1, i2=2} {i1==1 AND i2=2} {1} |
| 69 | test_expr expr-1.28 {i1=1, i2=2} {i1=2 AND i2=1} {0} |
| 70 | test_expr expr-1.29 {i1=1, i2=2} {i1=1 AND i2=1} {0} |
| 71 | test_expr expr-1.30 {i1=1, i2=2} {i1=2 AND i2=2} {0} |
| 72 | test_expr expr-1.31 {i1=1, i2=2} {i1==1 OR i2=2} {1} |
| 73 | test_expr expr-1.32 {i1=1, i2=2} {i1=2 OR i2=1} {0} |
| 74 | test_expr expr-1.33 {i1=1, i2=2} {i1=1 OR i2=1} {1} |
| 75 | test_expr expr-1.34 {i1=1, i2=2} {i1=2 OR i2=2} {1} |
| 76 | test_expr expr-1.35 {i1=1, i2=2} {i1-i2=-1} {1} |
| 77 | test_expr expr-1.36 {i1=1, i2=0} {not i1} {0} |
| 78 | test_expr expr-1.37 {i1=1, i2=NULL} {not i2} {1} |
drh | 8d2cb14 | 2000-05-30 03:28:35 +0000 | [diff] [blame] | 79 | |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 80 | test_expr expr-2.1 {r1=1.23, r2=2.34} {r1+r2} 3.57 |
| 81 | test_expr expr-2.2 {r1=1.23, r2=2.34} {r1-r2} -1.11 |
| 82 | test_expr expr-2.3 {r1=1.23, r2=2.34} {r1*r2} 2.8782 |
| 83 | test_expr expr-2.4 {r1=1.23, r2=2.34} {r1/r2} 0.525641 |
| 84 | test_expr expr-2.5 {r1=1.23, r2=2.34} {r2/r1} 1.90244 |
| 85 | test_expr expr-2.6 {r1=1.23, r2=2.34} {r2<r1} 0 |
| 86 | test_expr expr-2.7 {r1=1.23, r2=2.34} {r2<=r1} 0 |
| 87 | test_expr expr-2.8 {r1=1.23, r2=2.34} {r2>r1} 1 |
| 88 | test_expr expr-2.9 {r1=1.23, r2=2.34} {r2>=r1} 1 |
| 89 | test_expr expr-2.10 {r1=1.23, r2=2.34} {r2!=r1} 1 |
| 90 | test_expr expr-2.11 {r1=1.23, r2=2.34} {r2=r1} 0 |
| 91 | test_expr expr-2.12 {r1=1.23, r2=2.34} {r2<>r1} 1 |
| 92 | test_expr expr-2.13 {r1=1.23, r2=2.34} {r2==r1} 0 |
| 93 | test_expr expr-2.14 {r1=2.34, r2=2.34} {r2<r1} 0 |
| 94 | test_expr expr-2.15 {r1=2.34, r2=2.34} {r2<=r1} 1 |
| 95 | test_expr expr-2.16 {r1=2.34, r2=2.34} {r2>r1} 0 |
| 96 | test_expr expr-2.17 {r1=2.34, r2=2.34} {r2>=r1} 1 |
| 97 | test_expr expr-2.18 {r1=2.34, r2=2.34} {r2!=r1} 0 |
| 98 | test_expr expr-2.19 {r1=2.34, r2=2.34} {r2=r1} 1 |
| 99 | test_expr expr-2.20 {r1=2.34, r2=2.34} {r2<>r1} 0 |
| 100 | test_expr expr-2.21 {r1=2.34, r2=2.34} {r2==r1} 1 |
| 101 | test_expr expr-2.22 {r1=1.23, r2=2.34} {min(r1,r2,r1+r2,r1-r2)} {-1.11} |
| 102 | test_expr expr-2.23 {r1=1.23, r2=2.34} {max(r1,r2,r1+r2,r1-r2)} {3.57} |
| 103 | |
drh | ec86adb | 2000-05-31 18:33:09 +0000 | [diff] [blame] | 104 | test_expr expr-3.1 {t1='abc', t2='xyz'} {t1<t2} 1 |
| 105 | test_expr expr-3.2 {t1='xyz', t2='abc'} {t1<t2} 0 |
| 106 | test_expr expr-3.3 {t1='abc', t2='abc'} {t1<t2} 0 |
| 107 | test_expr expr-3.4 {t1='abc', t2='xyz'} {t1<=t2} 1 |
| 108 | test_expr expr-3.5 {t1='xyz', t2='abc'} {t1<=t2} 0 |
| 109 | test_expr expr-3.6 {t1='abc', t2='abc'} {t1<=t2} 1 |
| 110 | test_expr expr-3.7 {t1='abc', t2='xyz'} {t1>t2} 0 |
| 111 | test_expr expr-3.8 {t1='xyz', t2='abc'} {t1>t2} 1 |
| 112 | test_expr expr-3.9 {t1='abc', t2='abc'} {t1>t2} 0 |
| 113 | test_expr expr-3.10 {t1='abc', t2='xyz'} {t1>=t2} 0 |
| 114 | test_expr expr-3.11 {t1='xyz', t2='abc'} {t1>=t2} 1 |
| 115 | test_expr expr-3.12 {t1='abc', t2='abc'} {t1>=t2} 1 |
| 116 | test_expr expr-3.13 {t1='abc', t2='xyz'} {t1=t2} 0 |
| 117 | test_expr expr-3.14 {t1='xyz', t2='abc'} {t1=t2} 0 |
| 118 | test_expr expr-3.15 {t1='abc', t2='abc'} {t1=t2} 1 |
| 119 | test_expr expr-3.16 {t1='abc', t2='xyz'} {t1==t2} 0 |
| 120 | test_expr expr-3.17 {t1='xyz', t2='abc'} {t1==t2} 0 |
| 121 | test_expr expr-3.18 {t1='abc', t2='abc'} {t1==t2} 1 |
| 122 | test_expr expr-3.19 {t1='abc', t2='xyz'} {t1<>t2} 1 |
| 123 | test_expr expr-3.20 {t1='xyz', t2='abc'} {t1<>t2} 1 |
| 124 | test_expr expr-3.21 {t1='abc', t2='abc'} {t1<>t2} 0 |
| 125 | test_expr expr-3.22 {t1='abc', t2='xyz'} {t1!=t2} 1 |
| 126 | test_expr expr-3.23 {t1='xyz', t2='abc'} {t1!=t2} 1 |
| 127 | test_expr expr-3.24 {t1='abc', t2='abc'} {t1!=t2} 0 |
drh | 8be5113 | 2000-06-03 19:19:41 +0000 | [diff] [blame] | 128 | test_expr expr-3.25 {t1=NULL, t2='hi'} {t1 isnull} 1 |
| 129 | test_expr expr-3.26 {t1=NULL, t2='hi'} {t2 isnull} 0 |
| 130 | test_expr expr-3.27 {t1=NULL, t2='hi'} {t1 notnull} 0 |
| 131 | test_expr expr-3.28 {t1=NULL, t2='hi'} {t2 notnull} 1 |
drh | ec86adb | 2000-05-31 18:33:09 +0000 | [diff] [blame] | 132 | |
| 133 | test_expr expr-4.1 {t1='abc', t2='Abc'} {t1<t2} 0 |
| 134 | test_expr expr-4.2 {t1='abc', t2='Abc'} {t1>t2} 1 |
| 135 | test_expr expr-4.3 {t1='abc', t2='Bbc'} {t1<t2} 1 |
| 136 | test_expr expr-4.4 {t1='abc', t2='Bbc'} {t1>t2} 0 |
| 137 | |
| 138 | test_expr expr-5.1 {t1='abc', t2='xyz'} {t1 LIKE t2} 0 |
| 139 | test_expr expr-5.2 {t1='abc', t2='ABC'} {t1 LIKE t2} 1 |
| 140 | test_expr expr-5.3 {t1='abc', t2='A_C'} {t1 LIKE t2} 1 |
| 141 | test_expr expr-5.4 {t1='abc', t2='abc_'} {t1 LIKE t2} 0 |
| 142 | test_expr expr-5.5 {t1='abc', t2='A%C'} {t1 LIKE t2} 1 |
drh | 0917d8b | 2000-06-07 15:23:56 +0000 | [diff] [blame] | 143 | test_expr expr-5.5b {t1='ac', t2='A%C'} {t1 LIKE t2} 1 |
drh | ec86adb | 2000-05-31 18:33:09 +0000 | [diff] [blame] | 144 | test_expr expr-5.6 {t1='abxyzzyc', t2='A%C'} {t1 LIKE t2} 1 |
| 145 | test_expr expr-5.7 {t1='abxyzzy', t2='A%C'} {t1 LIKE t2} 0 |
| 146 | test_expr expr-5.8 {t1='abxyzzycx', t2='A%C'} {t1 LIKE t2} 0 |
drh | c837e70 | 2000-06-08 16:26:24 +0000 | [diff] [blame^] | 147 | test_expr expr-5.8b {t1='abxyzzycy', t2='A%CX'} {t1 LIKE t2} 0 |
drh | 0917d8b | 2000-06-07 15:23:56 +0000 | [diff] [blame] | 148 | test_expr expr-5.9 {t1='abc', t2='A%_C'} {t1 LIKE t2} 1 |
| 149 | test_expr expr-5.9b {t1='ac', t2='A%_C'} {t1 LIKE t2} 0 |
| 150 | test_expr expr-5.10 {t1='abxyzzyc', t2='A%_C'} {t1 LIKE t2} 1 |
| 151 | test_expr expr-5.11 {t1='abc', t2='xyz'} {t1 NOT LIKE t2} 1 |
| 152 | test_expr expr-5.12 {t1='abc', t2='ABC'} {t1 NOT LIKE t2} 0 |
drh | ec86adb | 2000-05-31 18:33:09 +0000 | [diff] [blame] | 153 | |
drh | 8be5113 | 2000-06-03 19:19:41 +0000 | [diff] [blame] | 154 | test_expr expr-6.1 {t1='abc', t2='xyz'} {t1 GLOB t2} 0 |
| 155 | test_expr expr-6.2 {t1='abc', t2='ABC'} {t1 GLOB t2} 0 |
| 156 | test_expr expr-6.3 {t1='abc', t2='A?C'} {t1 GLOB t2} 0 |
| 157 | test_expr expr-6.4 {t1='abc', t2='a?c'} {t1 GLOB t2} 1 |
| 158 | test_expr expr-6.5 {t1='abc', t2='abc?'} {t1 GLOB t2} 0 |
| 159 | test_expr expr-6.6 {t1='abc', t2='A*C'} {t1 GLOB t2} 0 |
| 160 | test_expr expr-6.7 {t1='abc', t2='a*c'} {t1 GLOB t2} 1 |
| 161 | test_expr expr-6.8 {t1='abxyzzyc', t2='a*c'} {t1 GLOB t2} 1 |
| 162 | test_expr expr-6.9 {t1='abxyzzy', t2='a*c'} {t1 GLOB t2} 0 |
| 163 | test_expr expr-6.10 {t1='abxyzzycx', t2='a*c'} {t1 GLOB t2} 0 |
drh | 4794b98 | 2000-06-06 13:54:14 +0000 | [diff] [blame] | 164 | test_expr expr-6.11 {t1='abc', t2='xyz'} {t1 NOT GLOB t2} 1 |
drh | c837e70 | 2000-06-08 16:26:24 +0000 | [diff] [blame^] | 165 | test_expr expr-6.12 {t1='abc', t2='abc'} {t1 NOT GLOB t2} 0 |
| 166 | test_expr expr-6.13 {t1='abc', t2='a[bx]c'} {t1 GLOB t2} 1 |
| 167 | test_expr expr-6.14 {t1='abc', t2='a[cx]c'} {t1 GLOB t2} 0 |
| 168 | test_expr expr-6.15 {t1='abc', t2='a[a-d]c'} {t1 GLOB t2} 1 |
| 169 | test_expr expr-6.16 {t1='abc', t2='a[^a-d]c'} {t1 GLOB t2} 0 |
| 170 | test_expr expr-6.17 {t1='abc', t2='a[A-Dc]c'} {t1 GLOB t2} 0 |
| 171 | test_expr expr-6.18 {t1='abc', t2='a[^A-Dc]c'} {t1 GLOB t2} 1 |
| 172 | test_expr expr-6.19 {t1='abc', t2='a[]b]c'} {t1 GLOB t2} 1 |
| 173 | test_expr expr-6.20 {t1='abc', t2='a[^]b]c'} {t1 GLOB t2} 0 |
| 174 | test_expr expr-6.21 {t1='abcdefg', t2='a*[de]g'} {t1 GLOB t2} 0 |
| 175 | test_expr expr-6.22 {t1='abcdefg', t2='a*[^de]g'} {t1 GLOB t2} 1 |
| 176 | test_expr expr-6.23 {t1='abcdefg', t2='a*?g'} {t1 GLOB t2} 1 |
| 177 | test_expr expr-6.24 {t1='ac', t2='a*c'} {t1 GLOB t2} 1 |
| 178 | test_expr expr-6.25 {t1='ac', t2='a*?c'} {t1 GLOB t2} 0 |
drh | 8be5113 | 2000-06-03 19:19:41 +0000 | [diff] [blame] | 179 | |
| 180 | # The sqliteExprIfFalse and sqliteExprIfTrue routines are only |
| 181 | # executed as part of a WHERE clause. Create a table suitable |
| 182 | # for testing these functions. |
| 183 | # |
| 184 | execsql {DROP TABLE test1} |
| 185 | execsql {CREATE TABLE test1(a int, b int);} |
| 186 | for {set i 1} {$i<=20} {incr i} { |
| 187 | execsql "INSERT INTO test1 VALUES($i,[expr {int(pow(2,$i))}])" |
| 188 | } |
| 189 | execsql "INSERT INTO test1 VALUES(NULL,0)" |
| 190 | do_test expr-7.1 { |
| 191 | execsql {SELECT * FROM test1 ORDER BY a} |
| 192 | } {{} 0 1 2 2 4 3 8 4 16 5 32 6 64 7 128 8 256 9 512 10 1024 11 2048 12 4096 13 8192 14 16384 15 32768 16 65536 17 131072 18 262144 19 524288 20 1048576} |
| 193 | |
| 194 | proc test_expr2 {name expr result} { |
| 195 | do_test $name [format { |
| 196 | execsql {SELECT a FROM test1 WHERE %s ORDER BY a} |
| 197 | } $expr] $result |
| 198 | } |
| 199 | |
| 200 | test_expr2 expr-7.2 {a<10 AND a>8} {9} |
| 201 | test_expr2 expr-7.3 {a<=10 AND a>=8} {8 9 10} |
| 202 | test_expr2 expr-7.4 {a>=8 AND a<=10} {8 9 10} |
| 203 | test_expr2 expr-7.5 {a>=20 OR a<=1} {{} 1 20} |
| 204 | test_expr2 expr-7.6 {b!=4 AND a<=3} {{} 1 3} |
| 205 | test_expr2 expr-7.7 {b==8 OR b==16 OR b==32} {3 4 5} |
| 206 | test_expr2 expr-7.8 {NOT b<>8 OR b==1024} {3 10} |
| 207 | test_expr2 expr-7.9 {b LIKE '10%'} {10 20} |
| 208 | test_expr2 expr-7.10 {b LIKE '_4'} {6} |
| 209 | test_expr2 expr-7.11 {a GLOB '1?'} {10 11 12 13 14 15 16 17 18 19} |
| 210 | test_expr2 expr-7.12 {b GLOB '1*4'} {10 14} |
| 211 | test_expr2 expr-7.13 {b GLOB '*1[456]'} {4} |
| 212 | test_expr2 expr-7.14 {a ISNULL} {{}} |
| 213 | test_expr2 expr-7.15 {a NOTNULL AND a<3} {1 2} |
| 214 | test_expr2 expr-7.16 {a AND a<3} {1 2} |
| 215 | test_expr2 expr-7.17 {NOT a} {{}} |
| 216 | test_expr2 expr-7.18 {a==11 OR (b>1000 AND b<2000)} {10 11} |
| 217 | test_expr2 expr-7.19 {a<=1 OR a>=20} {{} 1 20} |
| 218 | test_expr2 expr-7.20 {a<1 OR a>20} {{}} |
| 219 | test_expr2 expr-7.21 {a>19 OR a<1} {{} 20} |
| 220 | test_expr2 expr-7.22 {a!=1 OR a=100} \ |
| 221 | {{} 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20} |
| 222 | test_expr2 expr-7.23 {(a notnull AND a<4) OR a==8} {1 2 3 8} |
| 223 | test_expr2 expr-7.24 {a LIKE '2_' OR a==8} {8 20} |
| 224 | test_expr2 expr-7.25 {a GLOB '2?' OR a==8} {8 20} |
| 225 | test_expr2 expr-7.26 {a isnull OR a=8} {{} 8} |
| 226 | test_expr2 expr-7.27 {a notnull OR a=8} \ |
| 227 | {1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20} |
| 228 | |
drh | 8d2cb14 | 2000-05-30 03:28:35 +0000 | [diff] [blame] | 229 | finish_test |