Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/request-end-to-end.https.html

Issue 2415873002: Import w3c tests for the service workers (Closed)
Patch Set: Rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/request-end-to-end.https.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/request-end-to-end.https.html b/third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/request-end-to-end.https.html
new file mode 100644
index 0000000000000000000000000000000000000000..c9c3b30464b2e980b79b25aba0cee819b75955b5
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/request-end-to-end.https.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<title>Service Worker: Request end-to-end</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="resources/test-helpers.sub.js"></script>
+<script>
+var t = async_test('Request: end-to-end');
+t.step(function() {
+ var url = 'resources/request-end-to-end-worker.js';
+ var scope = 'resources/blank.html';
+ var frames = [];
+
+ service_worker_unregister_and_register(t, url, scope)
+ .then(onRegister)
+ .catch(unreached_rejection(t));
+
+ function sendMessagePort(worker) {
+ var messageChannel = new MessageChannel();
+ worker.postMessage({port:messageChannel.port2}, [messageChannel.port2]);
+ return messageChannel.port1;
+ }
+
+ function onRegister(registration) {
+ var sw = registration.installing;
+ var port = sendMessagePort(sw);
+ port.addEventListener('message', t.step_func(function(event) {
+ onMessage(event);
+ }), false);
+ port.start();
+ sw.addEventListener('statechange', t.step_func(function(event) {
+ if (event.target.state == 'activated')
+ onActive();
+ }));
+ }
+
+ function onActive() {
+ with_iframe(scope).then(function(f) { frames.push(f); });
+ }
+
+ function onMessage(event) {
+ assert_equals(
+ event.data.url,
+ location.href.substring(0, location.href.lastIndexOf('/') + 1) +
+ scope,
+ 'request.url should be passed to onfetch event.');
+ assert_equals(event.data.mode, 'navigate',
+ 'request.mode should be passed to onfetch event.');
+ assert_equals(event.data.method, 'GET',
+ 'request.method should be passed to onfetch event.');
+ assert_equals(event.data.referrer, location.href,
+ 'request.referrer should be passed to onfetch event.');
+ assert_equals(event.data.headers['user-agent'], undefined,
+ 'Default User-Agent header should not be passed to onfetch event.')
+ assert_equals(event.data.errorNameWhileAppendingHeader, 'TypeError',
+ 'Appending a new header to the request must throw a ' +
+ 'TypeError.')
+ frames.forEach(function(f) { f.remove(); });
+ service_worker_unregister_and_done(t, scope);
+ }
+});
+</script>

Powered by Google App Engine
This is Rietveld 408576698