forked from mirrors/gecko-dev
		
	 640fe52298
			
		
	
	
		640fe52298
		
	
	
	
	
		
			
			MozReview-Commit-ID: F6xUXCgdRE4 --HG-- extra : rebase_source : 65de1b0aba412d9044b5196115f74276caa058f2
		
			
				
	
	
		
			69 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* vim: set ft=javascript ts=2 et sw=2 tw=80: */
 | |
| /* Any copyright is dedicated to the Public Domain.
 | |
|    http://creativecommons.org/publicdomain/zero/1.0/ */
 | |
| /* eslint-disable mozilla/no-arbitrary-setTimeout */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| // Test that the timeline can also record data from the memory and framerate
 | |
| // actors, emitted as events in tadem with the markers.
 | |
| 
 | |
| const {TimelineFront} = require("devtools/shared/fronts/timeline");
 | |
| 
 | |
| add_task(async function() {
 | |
|   await addTab("data:text/html;charset=utf-8,mop");
 | |
| 
 | |
|   initDebuggerServer();
 | |
|   const client = new DebuggerClient(DebuggerServer.connectPipe());
 | |
|   const form = await connectDebuggerClient(client);
 | |
|   const front = TimelineFront(client, form);
 | |
| 
 | |
|   info("Start timeline marker recording");
 | |
|   await front.start({ withMemory: true, withTicks: true });
 | |
| 
 | |
|   let updatedMemory = 0;
 | |
|   let updatedTicks = 0;
 | |
| 
 | |
|   front.on("memory", (delta, measurement) => {
 | |
|     ok(delta > 0, "The delta should be a timestamp.");
 | |
|     ok(measurement, "The measurement should not be null.");
 | |
|     ok(measurement.total > 0, "There should be a 'total' value in the measurement.");
 | |
|     info("Received 'memory' event at " + delta + " with " + measurement.toSource());
 | |
|     updatedMemory++;
 | |
|   });
 | |
| 
 | |
|   front.on("ticks", (delta, ticks) => {
 | |
|     ok(delta > 0, "The delta should be a timestamp.");
 | |
|     ok(ticks, "The ticks should not be null.");
 | |
|     info("Received 'ticks' event with " + ticks.toSource());
 | |
|     updatedTicks++;
 | |
|   });
 | |
| 
 | |
|   ok((await waitUntil(() => updatedMemory > 1)),
 | |
|     "Some memory measurements were emitted.");
 | |
|   ok((await waitUntil(() => updatedTicks > 1)),
 | |
|     "Some refresh driver ticks were emitted.");
 | |
| 
 | |
|   info("Stop timeline marker recording");
 | |
|   await front.stop();
 | |
|   await client.close();
 | |
|   gBrowser.removeCurrentTab();
 | |
| });
 | |
| 
 | |
| /**
 | |
|  * Waits until a predicate returns true.
 | |
|  *
 | |
|  * @param function predicate
 | |
|  *        Invoked once in a while until it returns true.
 | |
|  * @param number interval [optional]
 | |
|  *        How often the predicate is invoked, in milliseconds.
 | |
|  */
 | |
| function waitUntil(predicate, interval = 10) {
 | |
|   if (predicate()) {
 | |
|     return Promise.resolve(true);
 | |
|   }
 | |
|   return new Promise(resolve =>
 | |
|     setTimeout(function() {
 | |
|       waitUntil(predicate).then(() => resolve(true));
 | |
|     }, interval));
 | |
| }
 |