2012-05-21 04:12:37 -07: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 09:19:57 -07:00
|
|
|
|
|
|
|
// This file tests our LIKE implementation since we override it for unicode
|
|
|
|
|
|
|
|
function setup()
|
|
|
|
{
|
|
|
|
getOpenedDatabase().createTable("t1", "x TEXT");
|
|
|
|
|
|
|
|
var stmt = createStatement("INSERT INTO t1 (x) VALUES ('a')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('ab')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('abc')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('abcd')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('acd')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('abd')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('bc')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('bcd')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('xyz')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('ABC')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('CDE')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
|
|
|
|
stmt = createStatement("INSERT INTO t1 (x) VALUES ('ABC abc xyz')");
|
|
|
|
stmt.execute();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_count()
|
|
|
|
{
|
|
|
|
var stmt = createStatement("SELECT count(*) FROM t1;");
|
|
|
|
do_check_true(stmt.executeStep());
|
|
|
|
do_check_eq(stmt.getInt32(0), 12);
|
|
|
|
stmt.reset();
|
2007-09-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_like_1()
|
|
|
|
{
|
2008-03-08 03:25:41 -08:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 10:19:32 -07:00
|
|
|
stmt.bindByIndex(0, 'abc');
|
2007-08-10 09:19:57 -07: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-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_like_2()
|
|
|
|
{
|
2008-03-08 03:25:41 -08:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 10:19:32 -07:00
|
|
|
stmt.bindByIndex(0, 'ABC');
|
2007-08-10 09:19:57 -07: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-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_like_3()
|
|
|
|
{
|
2008-03-08 03:25:41 -08:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 10:19:32 -07:00
|
|
|
stmt.bindByIndex(0, 'aBc');
|
2007-08-10 09:19:57 -07: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-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_like_4()
|
|
|
|
{
|
2008-03-08 03:25:41 -08:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 10:19:32 -07:00
|
|
|
stmt.bindByIndex(0, 'abc%');
|
2007-08-10 09:19:57 -07: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-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_like_5()
|
|
|
|
{
|
2008-03-08 03:25:41 -08:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 10:19:32 -07:00
|
|
|
stmt.bindByIndex(0, 'a_c');
|
2007-08-10 09:19:57 -07: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-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_like_6()
|
|
|
|
{
|
2008-03-08 03:25:41 -08:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 10:19:32 -07:00
|
|
|
stmt.bindByIndex(0, 'ab%d');
|
2007-08-10 09:19:57 -07: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-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_like_7()
|
|
|
|
{
|
2008-03-08 03:25:41 -08:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 10:19:32 -07:00
|
|
|
stmt.bindByIndex(0, 'a_c%');
|
2007-08-10 09:19:57 -07: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-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_like_8()
|
|
|
|
{
|
2008-03-08 03:25:41 -08:00
|
|
|
var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
|
2011-03-31 10:19:32 -07:00
|
|
|
stmt.bindByIndex(0, '%bcd');
|
2007-08-10 09:19:57 -07: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-18 20:26:51 -07:00
|
|
|
stmt.finalize();
|
2007-08-10 09:19:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
var tests = [test_count, test_like_1, test_like_2, test_like_3, test_like_4,
|
|
|
|
test_like_5, test_like_6, test_like_7, test_like_8];
|
|
|
|
|
|
|
|
function run_test()
|
|
|
|
{
|
|
|
|
setup();
|
|
|
|
|
|
|
|
for (var i = 0; i < tests.length; i++)
|
|
|
|
tests[i]();
|
|
|
|
|
|
|
|
cleanup();
|
|
|
|
}
|
|
|
|
|