Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  test_like.js   Sprache: JAVA

 
/* 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/. */


// 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();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('ab')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('abc')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('abcd')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('acd')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('abd')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('bc')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('bcd')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('xyz')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('ABC')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('CDE')");
  stmt.execute();
  stmt.finalize();

  stmt = createStatement("INSERT INTO t1 (x) VALUES ('ABC abc xyz')");
  stmt.execute();
  stmt.finalize();
}

function test_count() {
  var stmt = createStatement("SELECT count(*) FROM t1;");
  Assert.ok(stmt.executeStep());
  Assert.equal(stmt.getInt32(0), 12);
  stmt.reset();
  stmt.finalize();
}

function test_like_1() {
  var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
  stmt.bindByIndex(0, "abc");
  var solutions = ["abc""ABC"];
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(!stmt.executeStep());
  stmt.reset();
  stmt.finalize();
}

function test_like_2() {
  var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
  stmt.bindByIndex(0, "ABC");
  var solutions = ["abc""ABC"];
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(!stmt.executeStep());
  stmt.reset();
  stmt.finalize();
}

function test_like_3() {
  var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
  stmt.bindByIndex(0, "aBc");
  var solutions = ["abc""ABC"];
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(!stmt.executeStep());
  stmt.reset();
  stmt.finalize();
}

function test_like_4() {
  var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
  stmt.bindByIndex(0, "abc%");
  var solutions = ["abc""abcd""ABC""ABC abc xyz"];
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(!stmt.executeStep());
  stmt.reset();
  stmt.finalize();
}

function test_like_5() {
  var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
  stmt.bindByIndex(0, "a_c");
  var solutions = ["abc""ABC"];
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(!stmt.executeStep());
  stmt.reset();
  stmt.finalize();
}

function test_like_6() {
  var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
  stmt.bindByIndex(0, "ab%d");
  var solutions = ["abcd""abd"];
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(!stmt.executeStep());
  stmt.reset();
  stmt.finalize();
}

function test_like_7() {
  var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
  stmt.bindByIndex(0, "a_c%");
  var solutions = ["abc""abcd""ABC""ABC abc xyz"];
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(!stmt.executeStep());
  stmt.reset();
  stmt.finalize();
}

function test_like_8() {
  var stmt = createStatement("SELECT x FROM t1 WHERE x LIKE ?;");
  stmt.bindByIndex(0, "%bcd");
  var solutions = ["abcd""bcd"];
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(stmt.executeStep());
  Assert.ok(solutions.includes(stmt.getString(0)));
  Assert.ok(!stmt.executeStep());
  stmt.reset();
  stmt.finalize();
}

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();
}

Messung V0.5
C=99 H=98 G=98

¤ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge