Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Errors

<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf8">
<title>Test for the network actor (HSTS detection)</title>
<script type="text/javascript" src="common.js"></script>
<!-- Any copyright is dedicated to the Public Domain.
</head>
<body>
<p>Test for the network actor (HSTS detection)</p>
<script class="testbody" type="text/javascript">
"use strict";
SimpleTest.waitForExplicitFinish();
const TEST_CASES = [
{
desc: "no HSTS",
usesHSTS: false,
},
{
desc: "HSTS from this response",
"browser/browser/base/content/test/general/browser_star_hsts.sjs",
usesHSTS: true,
},
{
desc: "stored HSTS from previous response",
usesHSTS: true,
}
];
async function startTest()
{
info("Test detection of HTTP Strict Transport Security.");
for (const testCase of TEST_CASES) {
await checkHSTS(testCase)
}
// Reset HSTS state.
const gSSService = Cc["@mozilla.org/ssservice;1"].getService(Ci.nsISiteSecurityService);
const uri = Services.io.newURI(TEST_CASES[0].url);
gSSService.resetState(uri);
SimpleTest.finish();
}
async function checkHSTS({ url, usesHSTS}) {
info("Testing HSTS for " + url);
const commands = await createCommandsForTab();
const resourceCommand = commands.resourceCommand;
const resource = await new Promise(resolve => {
resourceCommand
.watchResources([resourceCommand.TYPES.NETWORK_EVENT], {
onAvailable: () => {},
onUpdated: resourceUpdate => {
resolve(resourceUpdate[0].resource);
},
})
.then(() => {
// Spawn the network requests after we started watching
const iframe = document.querySelector("iframe").contentWindow;
iframe.wrappedJSObject.makeXhrCallback("GET", url);
});
});
const packet = await commands.client.request({ to: resource.actor, type: "getSecurityInfo" });
is(
packet.securityInfo.hsts,
usesHSTS,
"Strict Transport Security detected correctly for " + url
);
await commands.destroy();
}
addEventListener("load", startTest, { once: true });
</script>
</body>
</html>