mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
69 lines
2.2 KiB
JavaScript
69 lines
2.2 KiB
JavaScript
/* -*- Mode: javascript; js-indent-level: 2; -*- */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Test that we can nest event loops and then automatically exit nested event
|
|
// loops when requested.
|
|
|
|
const { defer } = devtools.require("sdk/core/promise");
|
|
|
|
function run_test() {
|
|
initTestDebuggerServer();
|
|
do_test_pending();
|
|
test_nesting();
|
|
}
|
|
|
|
function test_nesting() {
|
|
const thread = new DebuggerServer.ThreadActor(DebuggerServer);
|
|
const { resolve, reject, promise } = defer();
|
|
|
|
// The following things should happen (in order):
|
|
// 1. In the new event loop (created by synchronize)
|
|
// 2. Resolve the promise (shouldn't exit any event loops)
|
|
// 3. Exit the event loop (should also then exit synchronize's event loop)
|
|
// 4. Be after the synchronize call
|
|
let currentStep = 0;
|
|
|
|
executeSoon(function () {
|
|
let eventLoop;
|
|
|
|
executeSoon(function () {
|
|
// Should be at step 2
|
|
do_check_eq(++currentStep, 2);
|
|
// Before resolving, should have the synchronize event loop and the one just created.
|
|
do_check_eq(thread._nestedEventLoops.size, 2);
|
|
|
|
executeSoon(function () {
|
|
// Should be at step 3
|
|
do_check_eq(++currentStep, 3);
|
|
// Before exiting the manually created event loop, should have the
|
|
// synchronize event loop and the manual event loop.
|
|
do_check_eq(thread._nestedEventLoops.size, 2);
|
|
// Should have the event loop
|
|
do_check_true(!!eventLoop);
|
|
eventLoop.resolve();
|
|
});
|
|
|
|
resolve(true);
|
|
// Shouldn't exit any event loops because a new one started since the call to synchronize
|
|
do_check_eq(thread._nestedEventLoops.size, 2);
|
|
});
|
|
|
|
// Should be at step 1
|
|
do_check_eq(++currentStep, 1);
|
|
// Should have only the synchronize event loop
|
|
do_check_eq(thread._nestedEventLoops.size, 1);
|
|
eventLoop = thread._nestedEventLoops.push();
|
|
eventLoop.enter();
|
|
});
|
|
|
|
do_check_eq(thread.synchronize(promise), true);
|
|
|
|
// Should be on the fourth step
|
|
do_check_eq(++currentStep, 4);
|
|
// There shouldn't be any nested event loops anymore
|
|
do_check_eq(thread._nestedEventLoops.size, 0);
|
|
|
|
do_test_finished();
|
|
}
|