mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 03:13:09 +09:00
72 lines
2 KiB
HTML
72 lines
2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>WebExtension test</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.runtime.onMessage.addListener(([url1, url2]) => {
|
|
let url3 = browser.runtime.getURL("test_file.html");
|
|
let url4 = browser.extension.getURL("test_file.html");
|
|
|
|
browser.test.assertTrue(url1 !== undefined, "url1 defined");
|
|
|
|
browser.test.assertTrue(url1.startsWith("moz-extension://"), "url1 has correct scheme");
|
|
browser.test.assertTrue(url1.endsWith("test_file.html"), "url1 has correct leaf name");
|
|
|
|
browser.test.assertEq(url1, url2, "url2 matches");
|
|
browser.test.assertEq(url1, url3, "url3 matches");
|
|
browser.test.assertEq(url1, url4, "url4 matches");
|
|
|
|
browser.test.notifyPass("geturl");
|
|
});
|
|
}
|
|
|
|
function contentScript() {
|
|
let url1 = browser.runtime.getURL("test_file.html");
|
|
let url2 = browser.extension.getURL("test_file.html");
|
|
browser.runtime.sendMessage([url1, url2]);
|
|
}
|
|
|
|
let extensionData = {
|
|
background,
|
|
manifest: {
|
|
"content_scripts": [{
|
|
"matches": ["http://mochi.test/*/file_sample.html"],
|
|
"js": ["content_script.js"],
|
|
"run_at": "document_idle",
|
|
}],
|
|
},
|
|
|
|
files: {
|
|
"content_script.js": contentScript,
|
|
},
|
|
};
|
|
|
|
add_task(function* test_contentscript() {
|
|
let extension = ExtensionTestUtils.loadExtension(extensionData);
|
|
yield extension.startup();
|
|
|
|
let win = window.open("file_sample.html");
|
|
|
|
yield Promise.all([waitForLoad(win), extension.awaitFinish("geturl")]);
|
|
|
|
win.close();
|
|
|
|
yield extension.unload();
|
|
info("extension unloaded");
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|