зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1172884 P2 Add test for synthesizing a redirect to a compressed resource. r=ehsan a=kwierso
This commit is contained in:
Родитель
2ce68bcbc9
Коммит
11670de4f9
|
@ -0,0 +1,13 @@
|
|||
self.addEventListener('fetch', function (event) {
|
||||
if (!event.request.url.endsWith('sw_clients/does_not_exist.html')) {
|
||||
return;
|
||||
}
|
||||
|
||||
event.respondWith(new Response('', {
|
||||
status: 301,
|
||||
statusText: 'Moved Permanently',
|
||||
headers: {
|
||||
'Location': 'refresher_compressed.html'
|
||||
}
|
||||
}));
|
||||
});
|
|
@ -134,6 +134,8 @@ support-files =
|
|||
thirdparty/register.html
|
||||
thirdparty/unregister.html
|
||||
thirdparty/sw.js
|
||||
gzip_redirect_worker.js
|
||||
sw_clients/navigator.html
|
||||
|
||||
[test_unregister.html]
|
||||
[test_installation_simple.html]
|
||||
|
@ -184,4 +186,5 @@ support-files =
|
|||
[test_origin_after_redirect_to_https_cached.html]
|
||||
[test_https_origin_after_redirect.html]
|
||||
[test_https_origin_after_redirect_cached.html]
|
||||
[test_gzip_redirect.html]
|
||||
[test_register_base.html]
|
||||
|
|
|
@ -0,0 +1,36 @@
|
|||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Bug 982726 - test match_all not crashing</title>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none"></div>
|
||||
<pre id="test"></pre>
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
if (!parent) {
|
||||
info("sw_clients/simple.html shouldn't be launched directly!");
|
||||
}
|
||||
|
||||
window.addEventListener("message", function(event) {
|
||||
if (event.data.type === "NAVIGATE") {
|
||||
window.location = event.data.url;
|
||||
}
|
||||
});
|
||||
|
||||
navigator.serviceWorker.ready.then(function() {
|
||||
parent.postMessage("NAVIGATOR_READY", "*");
|
||||
});
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Bug 982726 - Test service worker post message </title>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none"></div>
|
||||
<pre id="test"></pre>
|
||||
<script class="testbody" type="text/javascript">
|
||||
var registration;
|
||||
function start() {
|
||||
return navigator.serviceWorker.register("gzip_redirect_worker.js",
|
||||
{ scope: "./sw_clients/" })
|
||||
.then((swr) => registration = swr);
|
||||
}
|
||||
|
||||
function unregister() {
|
||||
return registration.unregister().then(function(result) {
|
||||
ok(result, "Unregister should return true.");
|
||||
}, function(e) {
|
||||
dump("Unregistering the SW failed with " + e + "\n");
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function testGzipRedirect(swr) {
|
||||
var p = new Promise(function(res, rej) {
|
||||
var navigatorReady = false;
|
||||
var finalReady = false;
|
||||
|
||||
window.onmessage = function(e) {
|
||||
if (e.data === "NAVIGATOR_READY") {
|
||||
ok(!navigatorReady, "should only get navigator ready message once");
|
||||
ok(!finalReady, "should get navigator ready before final redirect ready message");
|
||||
navigatorReady = true;
|
||||
iframe.contentWindow.postMessage({
|
||||
type: "NAVIGATE",
|
||||
url: "does_not_exist.html"
|
||||
}, "*");
|
||||
} else if (e.data === "READY") {
|
||||
ok(navigatorReady, "should only get navigator ready message once");
|
||||
ok(!finalReady, "should get final ready message only once");
|
||||
finalReady = true;
|
||||
res();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
var content = document.getElementById("content");
|
||||
ok(content, "Parent exists.");
|
||||
|
||||
iframe = document.createElement("iframe");
|
||||
iframe.setAttribute('src', "sw_clients/navigator.html");
|
||||
content.appendChild(iframe);
|
||||
|
||||
return p.then(() => content.removeChild(iframe));
|
||||
}
|
||||
|
||||
function runTest() {
|
||||
start()
|
||||
.then(testGzipRedirect)
|
||||
.then(unregister)
|
||||
.catch(function(e) {
|
||||
ok(false, "Some test failed with error " + e);
|
||||
}).then(SimpleTest.finish);
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
SpecialPowers.pushPrefEnv({"set": [
|
||||
["dom.serviceWorkers.exemptFromPerDomainMax", true],
|
||||
["dom.serviceWorkers.enabled", true],
|
||||
["dom.serviceWorkers.testing.enabled", true]
|
||||
]}, runTest);
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
Загрузка…
Ссылка в новой задаче