mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
121 lines
3.8 KiB
JavaScript
121 lines
3.8 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 undefined;
|
|
|
|
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 undefined;
|
|
|
|
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.Ob' and press tab. Just 'window.O' is
|
|
// ambiguous: could be window.Object, window.Option, etc.
|
|
input.value = "window.Ob";
|
|
input.setSelectionRange(9, 9);
|
|
jsterm.complete(jsterm.COMPLETE_FORWARD, testNext);
|
|
yield undefined;
|
|
|
|
is(input.value, "window.Object", "'window.Ob' tab completion");
|
|
|
|
// Test typing 'document.getElem'.
|
|
input.value = "document.getElem";
|
|
input.setSelectionRange(16, 16);
|
|
jsterm.complete(jsterm.COMPLETE_FORWARD, testNext);
|
|
yield undefined;
|
|
|
|
is(input.value, "document.getElem", "'document.getElem' completion");
|
|
is(jsterm.completeNode.value, " entsByTagNameNS", "'document.getElem' completion");
|
|
|
|
// Test pressing tab another time.
|
|
jsterm.complete(jsterm.COMPLETE_FORWARD, testNext);
|
|
yield undefined;
|
|
|
|
is(input.value, "document.getElem", "'document.getElem' completion");
|
|
is(jsterm.completeNode.value, " entsByTagName", "'document.getElem' another tab completion");
|
|
|
|
// Test pressing shift_tab.
|
|
jsterm.complete(jsterm.COMPLETE_BACKWARD, testNext);
|
|
yield undefined;
|
|
|
|
is(input.value, "document.getElem", "'document.getElem' untab completion");
|
|
is(jsterm.completeNode.value, " entsByTagNameNS", "'document.getElem' completion");
|
|
|
|
jsterm.clearOutput();
|
|
|
|
input.value = "docu";
|
|
jsterm.complete(jsterm.COMPLETE_HINT_ONLY, testNext);
|
|
yield undefined;
|
|
|
|
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 undefined;
|
|
|
|
is(jsterm.completeNode.value, " \n e", "multi-line completion");
|
|
|
|
// Test non-object autocompletion.
|
|
input.value = "Object.name.sl";
|
|
jsterm.complete(jsterm.COMPLETE_HINT_ONLY, testNext);
|
|
yield undefined;
|
|
|
|
is(jsterm.completeNode.value, " ice", "non-object completion");
|
|
|
|
// Test string literal autocompletion.
|
|
input.value = "'Asimov'.sl";
|
|
jsterm.complete(jsterm.COMPLETE_HINT_ONLY, testNext);
|
|
yield undefined;
|
|
|
|
is(jsterm.completeNode.value, " ice", "string literal completion");
|
|
|
|
testDriver = jsterm = input = null;
|
|
executeSoon(finishTest);
|
|
yield undefined;
|
|
}
|
|
|