forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			85 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* Any copyright is dedicated to the Public Domain.
 | |
|    http://creativecommons.org/publicdomain/zero/1.0/ */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| // Test that clicking on the Start button next to a Service Worker works as
 | |
| // intended in about:debugging.
 | |
| // It should cause a worker to start running in a child process.
 | |
| 
 | |
| // Service workers can't be loaded from chrome://, but http:// is ok with
 | |
| // dom.serviceWorkers.testing.enabled turned on.
 | |
| const HTTP_ROOT = CHROME_ROOT.replace(
 | |
|   "chrome://mochitests/content/", "http://mochi.test:8888/");
 | |
| const SERVICE_WORKER = HTTP_ROOT + "service-workers/empty-sw.js";
 | |
| const TAB_URL = HTTP_ROOT + "service-workers/empty-sw.html";
 | |
| 
 | |
| const SW_TIMEOUT = 1000;
 | |
| 
 | |
| add_task(function* () {
 | |
|   info("Turn on workers via mochitest http.");
 | |
|   yield new Promise(done => {
 | |
|     let options = { "set": [
 | |
|       // Accept workers from mochitest's http.
 | |
|       ["dom.serviceWorkers.testing.enabled", true],
 | |
|       // Reduce the timeout to accelerate service worker freezing
 | |
|       ["dom.serviceWorkers.idle_timeout", SW_TIMEOUT],
 | |
|       ["dom.serviceWorkers.idle_extended_timeout", SW_TIMEOUT],
 | |
|     ]};
 | |
|     SpecialPowers.pushPrefEnv(options, done);
 | |
|   });
 | |
| 
 | |
|   let { tab, document } = yield openAboutDebugging("workers");
 | |
| 
 | |
|   // Listen for mutations in the service-workers list.
 | |
|   let serviceWorkersElement = document.getElementById("service-workers");
 | |
|   let onMutation = waitForMutation(serviceWorkersElement, { childList: true });
 | |
| 
 | |
|   // Open a tab that registers an empty service worker.
 | |
|   let swTab = yield addTab(TAB_URL);
 | |
| 
 | |
|   // Wait for the service-workers list to update.
 | |
|   yield onMutation;
 | |
| 
 | |
|   // Check that the service worker appears in the UI.
 | |
|   assertHasTarget(true, document, "service-workers", SERVICE_WORKER);
 | |
| 
 | |
|   info("Ensure that the registration resolved before trying to interact with " +
 | |
|     "the service worker.");
 | |
|   yield waitForServiceWorkerRegistered(swTab);
 | |
|   ok(true, "Service worker registration resolved");
 | |
| 
 | |
|   // Retrieve the Target element corresponding to the service worker.
 | |
|   let names = [...document.querySelectorAll("#service-workers .target-name")];
 | |
|   let name = names.filter(element => element.textContent === SERVICE_WORKER)[0];
 | |
|   ok(name, "Found the service worker in the list");
 | |
|   let targetElement = name.parentNode.parentNode;
 | |
| 
 | |
|   // Check that there is a Debug button but not a Start button.
 | |
|   ok(targetElement.querySelector(".debug-button"), "Found its debug button");
 | |
|   ok(!targetElement.querySelector(".start-button"), "No start button");
 | |
| 
 | |
|   // Wait for the service worker to be killed due to inactivity.
 | |
|   yield waitForMutation(targetElement, { childList: true });
 | |
| 
 | |
|   // We should now have a Start button but no Debug button.
 | |
|   let startBtn = targetElement.querySelector(".start-button");
 | |
|   ok(startBtn, "Found its start button");
 | |
|   ok(!targetElement.querySelector(".debug-button"), "No debug button");
 | |
| 
 | |
|   // Click on the Start button and wait for the service worker to be back.
 | |
|   let onStarted = waitForMutation(targetElement, { childList: true });
 | |
|   startBtn.click();
 | |
|   yield onStarted;
 | |
| 
 | |
|   // Check that we have a Debug button but not a Start button again.
 | |
|   ok(targetElement.querySelector(".debug-button"), "Found its debug button");
 | |
|   ok(!targetElement.querySelector(".start-button"), "No start button");
 | |
| 
 | |
|   // Finally, unregister the service worker itself.
 | |
|   yield unregisterServiceWorker(swTab);
 | |
|   ok(true, "Service worker registration unregistered");
 | |
| 
 | |
|   yield removeTab(swTab);
 | |
|   yield closeAboutDebugging(tab);
 | |
| });
 | 
