mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
8d7de30475
--HG-- rename : browser/devtools/webconsole/test/browser_webconsole_bug_642615_autocomplete.js => browser/devtools/webconsole/test/browser_webconsole_autocomplete_and_selfxss.js
124 lines
3.8 KiB
JavaScript
124 lines
3.8 KiB
JavaScript
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
const TEST_URI = "data:text/html;charset=utf-8,<p>test for bug 642615";
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "clipboardHelper",
|
|
"@mozilla.org/widget/clipboardhelper;1",
|
|
"nsIClipboardHelper");
|
|
let WebConsoleUtils = require("devtools/toolkit/webconsole/utils").Utils;
|
|
|
|
function consoleOpened(HUD) {
|
|
let jsterm = HUD.jsterm;
|
|
let stringToCopy = "foobazbarBug642615";
|
|
|
|
jsterm.clearOutput();
|
|
|
|
ok(!jsterm.completeNode.value, "no completeNode.value");
|
|
|
|
jsterm.setInputValue("doc");
|
|
|
|
let completionValue;
|
|
|
|
// wait for key "u"
|
|
function onCompletionValue() {
|
|
completionValue = jsterm.completeNode.value;
|
|
|
|
// Arguments: expected, setup, success, failure.
|
|
waitForClipboard(
|
|
stringToCopy,
|
|
function() {
|
|
clipboardHelper.copyString(stringToCopy, document);
|
|
},
|
|
onClipboardCopy,
|
|
finishTest);
|
|
}
|
|
|
|
function onClipboardCopy() {
|
|
testSelfXss();
|
|
|
|
jsterm.setInputValue("docu");
|
|
info("wait for completion update after clipboard paste");
|
|
updateEditUIVisibility();
|
|
jsterm.once("autocomplete-updated", onClipboardPaste);
|
|
goDoCommand("cmd_paste");
|
|
}
|
|
|
|
|
|
// Self xss prevention tests (bug 994134)
|
|
function testSelfXss(){
|
|
info("Self-xss paste tests")
|
|
WebConsoleUtils.usageCount = 0;
|
|
is(WebConsoleUtils.usageCount, 0, "Test for usage count getter")
|
|
// Input some commands to check if usage counting is working
|
|
for(let i = 0; i <= 5; i++){
|
|
jsterm.setInputValue(i);
|
|
jsterm.execute();
|
|
}
|
|
is(WebConsoleUtils.usageCount, 6, "Usage count incremented")
|
|
WebConsoleUtils.usageCount = 0;
|
|
updateEditUIVisibility();
|
|
|
|
let oldVal = jsterm.inputNode.value;
|
|
goDoCommand("cmd_paste");
|
|
let notificationbox = jsterm.hud.document.getElementById("webconsole-notificationbox");
|
|
let notification = notificationbox.getNotificationWithValue('selfxss-notification');
|
|
ok(notification, "Self-xss notification shown");
|
|
is(oldVal, jsterm.inputNode.value, "Paste blocked by self-xss prevention");
|
|
|
|
// Allow pasting
|
|
jsterm.inputNode.value = "allow pasting";
|
|
var evt = document.createEvent("KeyboardEvent");
|
|
evt.initKeyEvent ("keyup", true, true, window,
|
|
0, 0, 0, 0,
|
|
0, " ".charCodeAt(0));
|
|
jsterm.inputNode.dispatchEvent(evt);
|
|
jsterm.inputNode.value = "";
|
|
goDoCommand("cmd_paste");
|
|
isnot("", jsterm.inputNode.value, "Paste works");
|
|
}
|
|
function onClipboardPaste() {
|
|
ok(!jsterm.completeNode.value, "no completion value after paste");
|
|
|
|
info("wait for completion update after undo");
|
|
jsterm.once("autocomplete-updated", onCompletionValueAfterUndo);
|
|
|
|
// Get out of the webconsole event loop.
|
|
executeSoon(() => {
|
|
goDoCommand("cmd_undo");
|
|
});
|
|
}
|
|
|
|
function onCompletionValueAfterUndo() {
|
|
is(jsterm.completeNode.value, completionValue,
|
|
"same completeNode.value after undo");
|
|
|
|
info("wait for completion update after clipboard paste (ctrl-v)");
|
|
jsterm.once("autocomplete-updated", () => {
|
|
ok(!jsterm.completeNode.value, "no completion value after paste (ctrl-v)");
|
|
|
|
// using executeSoon() to get out of the webconsole event loop.
|
|
executeSoon(finishTest);
|
|
});
|
|
|
|
// Get out of the webconsole event loop.
|
|
executeSoon(() => {
|
|
EventUtils.synthesizeKey("v", {accelKey: true});
|
|
});
|
|
}
|
|
|
|
info("wait for completion value after typing 'docu'");
|
|
jsterm.once("autocomplete-updated", onCompletionValue);
|
|
|
|
EventUtils.synthesizeKey("u", {});
|
|
}
|
|
|
|
function test() {
|
|
addTab(TEST_URI);
|
|
browser.addEventListener("load", function onLoad() {
|
|
browser.removeEventListener("load", onLoad, true);
|
|
openConsole(null, consoleOpened);
|
|
}, true);
|
|
}
|