1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
<!DOCTYPE HTML>
<html>
<head>
<title>Clipboard permissions tests</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
<script src="head.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
</head>
<body>
<script>
"use strict";
/* globals doCopy, doPaste */
function shared() {
let field = document.createElement("textarea");
document.body.appendChild(field);
field.contentEditable = true;
this.doCopy = function(txt) {
field.value = txt;
field.select();
return document.execCommand("copy");
};
this.doPaste = function() {
field.select();
return document.execCommand("paste") && field.value;
};
}
add_task(async function test_background_clipboard_permissions() {
function backgroundScript() {
browser.test.assertEq(false, doCopy("whatever"),
"copy should be denied without permission");
browser.test.assertEq(false, doPaste(),
"paste should be denied without permission");
browser.test.sendMessage("ready");
}
let extensionData = {
background: [shared, backgroundScript],
};
let extension = ExtensionTestUtils.loadExtension(extensionData);
await extension.startup();
await extension.awaitMessage("ready");
await extension.unload();
});
add_task(async function test_background_clipboard_copy() {
function backgroundScript() {
browser.test.onMessage.addListener(txt => {
browser.test.assertEq(true, doCopy(txt),
"copy should be allowed with permission");
});
browser.test.sendMessage("ready");
}
let extensionData = {
background: `(${shared})();(${backgroundScript})();`,
manifest: {
permissions: [
"clipboardWrite",
],
},
};
let extension = ExtensionTestUtils.loadExtension(extensionData);
await extension.startup();
await extension.awaitMessage("ready");
const DUMMY_STR = "dummy string to copy";
await new Promise(resolve => {
SimpleTest.waitForClipboard(DUMMY_STR, () => {
extension.sendMessage(DUMMY_STR);
}, resolve, resolve);
});
await extension.unload();
});
add_task(async function test_contentscript_clipboard_permissions() {
function contentScript() {
browser.test.assertEq(false, doCopy("whatever"),
"copy should be denied without permission");
browser.test.assertEq(false, doPaste(),
"paste should be denied without permission");
browser.test.sendMessage("ready");
}
let extensionData = {
manifest: {
content_scripts: [{
js: ["shared.js", "contentscript.js"],
matches: ["http://mochi.test/*/file_sample.html"],
}],
},
files: {
"shared.js": shared,
"contentscript.js": contentScript,
},
};
let extension = ExtensionTestUtils.loadExtension(extensionData);
await extension.startup();
let win = window.open("file_sample.html");
await extension.awaitMessage("ready");
win.close();
await extension.unload();
});
add_task(async function test_contentscript_clipboard_copy() {
function contentScript() {
browser.test.onMessage.addListener(txt => {
browser.test.assertEq(true, doCopy(txt),
"copy should be allowed with permission");
});
browser.test.sendMessage("ready");
}
let extensionData = {
manifest: {
content_scripts: [{
js: ["shared.js", "contentscript.js"],
matches: ["http://mochi.test/*/file_sample.html"],
}],
permissions: [
"clipboardWrite",
],
},
files: {
"shared.js": shared,
"contentscript.js": contentScript,
},
};
let extension = ExtensionTestUtils.loadExtension(extensionData);
await extension.startup();
let win = window.open("file_sample.html");
await extension.awaitMessage("ready");
const DUMMY_STR = "dummy string to copy in content script";
await new Promise(resolve => {
SimpleTest.waitForClipboard(DUMMY_STR, () => {
extension.sendMessage(DUMMY_STR);
}, resolve, resolve);
});
win.close();
await extension.unload();
});
add_task(async function test_contentscript_clipboard_paste() {
const extension = ExtensionTestUtils.loadExtension({
manifest: {
permissions: [
"clipboardRead",
],
content_scripts: [{
matches: ["http://mochi.test/*/file_sample.html"],
js: ["shared.js", "content_script.js"],
}],
},
files: {
"shared.js": shared,
"content_script.js": () => {
browser.test.sendMessage("paste", doPaste());
},
},
});
const STRANGE = "A Strange Thing";
SpecialPowers.clipboardCopyString(STRANGE);
await extension.startup();
const win = window.open("file_sample.html");
const paste = await extension.awaitMessage("paste");
is(paste, STRANGE, "the correct string was pasted");
win.close();
await extension.unload();
});
add_task(async function test_background_clipboard_paste() {
function background() {
browser.test.sendMessage("paste", doPaste());
}
const extension = ExtensionTestUtils.loadExtension({
manifest: {
permissions: ["clipboardRead"],
},
background: [shared, background],
});
const STRANGE = "Stranger Things";
SpecialPowers.clipboardCopyString(STRANGE);
await extension.startup();
const paste = await extension.awaitMessage("paste");
is(paste, STRANGE, "the correct string was pasted");
await extension.unload();
});
</script>
</body>
</html>
|