blob: 378e8048c438588d6a6a6404208280a5bb0ad353 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {jQueryFrameFn} from "/script/tobago-test.js";
import {TobagoTestTool} from "/tobago/test/tobago-test-tool.js";
QUnit.test("Basics: 'M'", function (assert) {
var inputString = "M";
var expectedLength = 3;
testMarsBasics(assert, inputString, expectedLength);
});
QUnit.test("Basics: 'Ma'", function (assert) {
var inputString = "Ma";
var expectedLength = 2;
testMarsBasics(assert, inputString, expectedLength);
});
QUnit.test("Basics: 'Mar'", function (assert) {
var inputString = "Mar";
var expectedLength = 2;
testMarsBasics(assert, inputString, expectedLength);
});
QUnit.test("Basics: 'Mars'", function (assert) {
var inputString = "Mars";
var expectedLength = 1;
testMarsBasics(assert, inputString, expectedLength);
});
function testMarsBasics(assert, inputString, expectedLength) {
var inFn = jQueryFrameFn("#page\\:mainForm\\:input\\:\\:field");
var suggestionsFn = getSuggestions("#page\\:mainForm\\:input");
var TTT = new TobagoTestTool(assert);
TTT.action(function () {
inFn().val(inputString).trigger('input');
});
TTT.waitForResponse();
TTT.asserts(expectedLength + 1, function () {
assert.equal(suggestionsFn().length, expectedLength);
for (i = 0; i < expectedLength; i++) {
assert.ok(suggestionsFn().eq(i).find("strong").text().toUpperCase().indexOf(inputString.toUpperCase()) >= 0);
}
});
TTT.startTest();
}
function getSuggestions(id) {
return jQueryFrameFn(DomUtils.escapeClientId(
jQueryFrame(id + " .tobago-suggest").attr("id") + "::popup") + " .tt-suggestion");
}