blob: 533a474b55d39a9cac4da32337c4177edb163f93 [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("ajax excecute", function (assert) {
var in1Fn = jQueryFrameFn("#page\\:mainForm\\:in1\\:\\:field");
var in2Fn = jQueryFrameFn("#page\\:mainForm\\:in2\\:\\:field");
var in3Fn = jQueryFrameFn("#page\\:mainForm\\:in3\\:\\:field");
var in4Fn = jQueryFrameFn("#page\\:mainForm\\:in4\\:\\:field");
var clearButtonFn = jQueryFrameFn("#page\\:mainForm\\:clear");
var submitButtonFn = jQueryFrameFn("#page\\:mainForm\\:submit");
var reloadButtonFn = jQueryFrameFn("#page\\:mainForm\\:reload");
var TTT = new TobagoTestTool(assert);
TTT.action(function () {
in1Fn().val("a");
in2Fn().val("b");
in3Fn().val("c");
in4Fn().val("d");
clearButtonFn().click();
});
TTT.waitForResponse();
TTT.asserts(4, function () {
assert.equal(in1Fn().val(), "");
assert.equal(in2Fn().val(), "");
assert.equal(in3Fn().val(), "");
assert.equal(in4Fn().val(), "");
});
TTT.action(function () {
in1Fn().val("a");
in2Fn().val("b");
in3Fn().val("c");
in4Fn().val("d");
submitButtonFn().click();
});
TTT.waitForResponse();
TTT.asserts(4, function () {
assert.equal(in1Fn().val(), "a");
assert.equal(in2Fn().val(), "b");
assert.equal(in3Fn().val(), "c");
assert.equal(in4Fn().val(), "");
});
TTT.action(function () {
reloadButtonFn().click();
});
TTT.waitForResponse();
TTT.asserts(4, function () {
assert.equal(in1Fn().val(), "a");
assert.equal(in2Fn().val(), "");
assert.equal(in3Fn().val(), "c");
assert.equal(in4Fn().val(), "");
});
TTT.startTest();
});