add_task(async function () {
await testCloseLoops();
await fakeTransportShutdown();
});
function createClient() {
DevToolsServer.init();
DevToolsServer.registerAllActors(); const client = new DevToolsClient(DevToolsServer.connectPipe()); return client;
}
// Ensure that closing the client while it is closing doesn't loop
async function testCloseLoops() { const client = createClient();
await client.connect();
await new Promise(resolve => {
let called = false;
client.on("closed", async () => {
dump(">> CLOSED\n"); if (called) {
ok( false, "Calling client.close from closed event listener introduce loops"
); return;
}
called = true;
await client.close();
resolve();
});
client.close();
});
}
// Check that, if we fake a transport shutdown (like if a device is unplugged) // the client is automatically closed, and we can still call client.close.
async function fakeTransportShutdown() { const client = createClient();
await client.connect();
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.