2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
// This file tests our LIKE implementation since we override it for unicode
|
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function setup() {
|
2007-08-10 20:19:57 +04:00
|
|
|
getOpenedDatabase().createTable("t1", "x TEXT");
|
|
|
|
|
|
|
|
var stmt = createStatement("INSERT INTO t1 (x) VALUES ('a')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('ab')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('abc')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('abcd')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('acd')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('abd')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('bc')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('bcd')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('xyz')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('ABC')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('CDE')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('ABC abc xyz')");
|
|
|
|
stmt.execute();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function test_count() {
|
2007-08-10 20:19:57 +04:00
|
|
|
var stmt = createStatement("SELECT count(*) FROM t1;");
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_eq(stmt.getInt32(0), 12);
|
|
|
|
stmt.reset();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function test_like_1() {
|
2008-03-08 14:25:41 +03:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 21:19:32 +04:00
|
|
|
stmt.bindByIndex(0, 'abc');
|
2007-08-10 20:19:57 +04:00
|
|
|
var solutions = ["abc", "ABC"];
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_false(stmt.executeStep());
|
|
|
|
stmt.reset();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function test_like_2() {
|
2008-03-08 14:25:41 +03:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 21:19:32 +04:00
|
|
|
stmt.bindByIndex(0, 'ABC');
|
2007-08-10 20:19:57 +04:00
|
|
|
var solutions = ["abc", "ABC"];
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_false(stmt.executeStep());
|
|
|
|
stmt.reset();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
2015-12-04 19:00:03 +03:00
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function test_like_3() {
|
2008-03-08 14:25:41 +03:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 21:19:32 +04:00
|
|
|
stmt.bindByIndex(0, 'aBc');
|
2007-08-10 20:19:57 +04:00
|
|
|
var solutions = ["abc", "ABC"];
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_false(stmt.executeStep());
|
|
|
|
stmt.reset();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
2015-12-04 19:00:03 +03:00
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function test_like_4() {
|
2008-03-08 14:25:41 +03:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 21:19:32 +04:00
|
|
|
stmt.bindByIndex(0, 'abc%');
|
2007-08-10 20:19:57 +04:00
|
|
|
var solutions = ["abc", "abcd", "ABC", "ABC abc xyz"];
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_false(stmt.executeStep());
|
|
|
|
stmt.reset();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function test_like_5() {
|
2008-03-08 14:25:41 +03:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 21:19:32 +04:00
|
|
|
stmt.bindByIndex(0, 'a_c');
|
2007-08-10 20:19:57 +04:00
|
|
|
var solutions = ["abc", "ABC"];
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_false(stmt.executeStep());
|
|
|
|
stmt.reset();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function test_like_6() {
|
2008-03-08 14:25:41 +03:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 21:19:32 +04:00
|
|
|
stmt.bindByIndex(0, 'ab%d');
|
2007-08-10 20:19:57 +04:00
|
|
|
var solutions = ["abcd", "abd"];
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_false(stmt.executeStep());
|
|
|
|
stmt.reset();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
2015-12-04 19:00:03 +03:00
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function test_like_7() {
|
2008-03-08 14:25:41 +03:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 21:19:32 +04:00
|
|
|
stmt.bindByIndex(0, 'a_c%');
|
2007-08-10 20:19:57 +04:00
|
|
|
var solutions = ["abc", "abcd", "ABC", "ABC abc xyz"];
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_false(stmt.executeStep());
|
|
|
|
stmt.reset();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function test_like_8() {
|
2008-03-08 14:25:41 +03:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 21:19:32 +04:00
|
|
|
stmt.bindByIndex(0, '%bcd');
|
2007-08-10 20:19:57 +04:00
|
|
|
var solutions = ["abcd", "bcd"];
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_true(solutions.indexOf(stmt.getString(0)) != -1);
|
|
|
|
do_check_false(stmt.executeStep());
|
|
|
|
stmt.reset();
|
2007-09-19 07:26:51 +04:00
|
|
|
stmt.finalize();
|
2007-08-10 20:19:57 +04:00
|
|
|
}
|
2015-12-04 19:00:03 +03:00
|
|
|
|
|
|
|
var tests = [test_count, test_like_1, test_like_2, test_like_3, test_like_4,
|
2007-08-10 20:19:57 +04:00
|
|
|
test_like_5, test_like_6, test_like_7, test_like_8];
|
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function run_test() {
|
2007-08-10 20:19:57 +04:00
|
|
|
setup();
|
|
|
|
|
2015-12-04 19:00:03 +03:00
|
|
|
for (var i = 0; i < tests.length; i++) {
|
2007-08-10 20:19:57 +04:00
|
|
|
tests[i]();
|
2015-12-04 19:00:03 +03:00
|
|
|
}
|
|
|
|
|
2007-08-10 20:19:57 +04:00
|
|
|
cleanup();
|
|
|
|
}
|
|
|
|
|