mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 04:13:06 +09:00
49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test for generating WebExtensions</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SpawnTask.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
|
|
<script type="text/javascript" src="head.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
|
|
<script type="text/javascript">
|
|
"use strict";
|
|
|
|
function background() {
|
|
browser.test.log("running background script");
|
|
|
|
browser.test.onMessage.addListener((x, y) => {
|
|
browser.test.assertEq(x, 10, "x is 10");
|
|
browser.test.assertEq(y, 20, "y is 20");
|
|
|
|
browser.test.notifyPass("background test passed");
|
|
});
|
|
|
|
browser.test.sendMessage("running", 1);
|
|
}
|
|
|
|
let extensionData = {
|
|
background,
|
|
};
|
|
|
|
add_task(function* test_background() {
|
|
let extension = ExtensionTestUtils.loadExtension(extensionData);
|
|
info("load complete");
|
|
let [, x] = yield Promise.all([extension.startup(), extension.awaitMessage("running")]);
|
|
is(x, 1, "got correct value from extension");
|
|
info("startup complete");
|
|
extension.sendMessage(10, 20);
|
|
yield extension.awaitFinish();
|
|
info("test complete");
|
|
yield extension.unload();
|
|
info("extension unloaded successfully");
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|