mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.promise: Support delayed promise execution
This commit is contained in:
parent
51c1c97fe2
commit
a35dd91a12
2 changed files with 26 additions and 5 deletions
|
@ -668,4 +668,18 @@ describe("util.promise", function ()
|
|||
assert.spy(on_rejected).was_called_with(test_error);
|
||||
end);
|
||||
end);
|
||||
describe("set_nexttick()", function ()
|
||||
it("works", function ()
|
||||
local next_tick = spy.new(function (f)
|
||||
f();
|
||||
end)
|
||||
local cb = spy.new();
|
||||
promise.set_nexttick(next_tick);
|
||||
promise.new(function (y, _)
|
||||
y("okay");
|
||||
end):next(cb);
|
||||
assert.spy(next_tick).was.called();
|
||||
assert.spy(cb).was.called_with("okay");
|
||||
end);
|
||||
end)
|
||||
end);
|
||||
|
|
|
@ -78,14 +78,20 @@ local function new_resolve_functions(p)
|
|||
return _resolve, _reject;
|
||||
end
|
||||
|
||||
local next_tick = function (f)
|
||||
f();
|
||||
end
|
||||
|
||||
local function new(f)
|
||||
local p = setmetatable({ _state = "pending", _next = next_pending, _pending_on_fulfilled = {}, _pending_on_rejected = {} }, promise_mt);
|
||||
if f then
|
||||
local resolve, reject = new_resolve_functions(p);
|
||||
local ok, ret = xpcall(f, debug.traceback, resolve, reject);
|
||||
if not ok and p._state == "pending" then
|
||||
reject(ret);
|
||||
end
|
||||
next_tick(function()
|
||||
local resolve, reject = new_resolve_functions(p);
|
||||
local ok, ret = xpcall(f, debug.traceback, resolve, reject);
|
||||
if not ok and p._state == "pending" then
|
||||
reject(ret);
|
||||
end
|
||||
end);
|
||||
end
|
||||
return p;
|
||||
end
|
||||
|
@ -203,4 +209,5 @@ return {
|
|||
race = race;
|
||||
try = try;
|
||||
is_promise = is_promise;
|
||||
set_nexttick = function(new_next_tick) next_tick = new_next_tick; end;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue