mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
106 lines
3.2 KiB
JavaScript
106 lines
3.2 KiB
JavaScript
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* 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/. */
|
|
|
|
// Tests that code completion works properly.
|
|
|
|
const TEST_URI = "data:text/html;charset=utf8,<p>test code completion";
|
|
|
|
let testDriver;
|
|
|
|
function test() {
|
|
addTab(TEST_URI);
|
|
browser.addEventListener("load", function onLoad() {
|
|
browser.removeEventListener("load", onLoad, true);
|
|
openConsole(null, function(hud) {
|
|
testDriver = testCompletion(hud);
|
|
testDriver.next();
|
|
});
|
|
}, true);
|
|
}
|
|
|
|
function testNext() {
|
|
executeSoon(function() {
|
|
testDriver.next();
|
|
});
|
|
}
|
|
|
|
function testCompletion(hud) {
|
|
let jsterm = hud.jsterm;
|
|
let input = jsterm.inputNode;
|
|
|
|
// Test typing 'docu'.
|
|
input.value = "docu";
|
|
input.setSelectionRange(4, 4);
|
|
jsterm.complete(jsterm.COMPLETE_HINT_ONLY, testNext);
|
|
yield;
|
|
|
|
is(input.value, "docu", "'docu' completion (input.value)");
|
|
is(jsterm.completeNode.value, " ment", "'docu' completion (completeNode)");
|
|
|
|
// Test typing 'docu' and press tab.
|
|
input.value = "docu";
|
|
input.setSelectionRange(4, 4);
|
|
jsterm.complete(jsterm.COMPLETE_FORWARD, testNext);
|
|
yield;
|
|
|
|
is(input.value, "document", "'docu' tab completion");
|
|
is(input.selectionStart, 8, "start selection is alright");
|
|
is(input.selectionEnd, 8, "end selection is alright");
|
|
is(jsterm.completeNode.value.replace(/ /g, ""), "", "'docu' completed");
|
|
|
|
// Test typing 'window.O' and press tab.
|
|
input.value = "window.O";
|
|
input.setSelectionRange(8, 8);
|
|
jsterm.complete(jsterm.COMPLETE_FORWARD, testNext);
|
|
yield;
|
|
|
|
is(input.value, "window.Object", "'window.O' tab completion");
|
|
|
|
// Test typing 'document.getElem'.
|
|
input.value = "document.getElem";
|
|
input.setSelectionRange(16, 16);
|
|
jsterm.complete(jsterm.COMPLETE_FORWARD, testNext);
|
|
yield;
|
|
|
|
is(input.value, "document.getElem", "'document.getElem' completion");
|
|
is(jsterm.completeNode.value, " entById", "'document.getElem' completion");
|
|
|
|
// Test pressing tab another time.
|
|
jsterm.complete(jsterm.COMPLETE_FORWARD, testNext);
|
|
yield;
|
|
|
|
is(input.value, "document.getElem", "'document.getElem' completion");
|
|
is(jsterm.completeNode.value, " entsByClassName", "'document.getElem' another tab completion");
|
|
|
|
// Test pressing shift_tab.
|
|
jsterm.complete(jsterm.COMPLETE_BACKWARD, testNext);
|
|
yield;
|
|
|
|
is(input.value, "document.getElem", "'document.getElem' untab completion");
|
|
is(jsterm.completeNode.value, " entById", "'document.getElem' completion");
|
|
|
|
jsterm.clearOutput();
|
|
|
|
input.value = "docu";
|
|
jsterm.complete(jsterm.COMPLETE_HINT_ONLY, testNext);
|
|
yield;
|
|
|
|
is(jsterm.completeNode.value, " ment", "'docu' completion");
|
|
jsterm.execute();
|
|
is(jsterm.completeNode.value, "", "clear completion on execute()");
|
|
|
|
// Test multi-line completion works
|
|
input.value = "console.log('one');\nconsol";
|
|
jsterm.complete(jsterm.COMPLETE_HINT_ONLY, testNext);
|
|
yield;
|
|
|
|
is(jsterm.completeNode.value, " \n e", "multi-line completion");
|
|
|
|
testDriver = jsterm = input = null;
|
|
executeSoon(finishTest);
|
|
yield;
|
|
}
|
|
|