mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
util.async: Behaviour change: continue to process queued items after errors
This commit is contained in:
parent
7d562e915e
commit
3148c6b4f7
2 changed files with 27 additions and 0 deletions
|
@ -156,6 +156,30 @@ describe("util.async", function()
|
||||||
assert.equal(r.state, "ready");
|
assert.equal(r.state, "ready");
|
||||||
assert.equal(last_processed_item, "hello again");
|
assert.equal(last_processed_item, "hello again");
|
||||||
end);
|
end);
|
||||||
|
|
||||||
|
it("should continue to process work items", function ()
|
||||||
|
local wait, done, last_item;
|
||||||
|
local runner_func = spy.new(function (item)
|
||||||
|
if item == "error" then
|
||||||
|
error("test error");
|
||||||
|
elseif item == "wait-error" then
|
||||||
|
wait, done = async.waiter();
|
||||||
|
wait();
|
||||||
|
error("test error");
|
||||||
|
end
|
||||||
|
last_item = item;
|
||||||
|
end);
|
||||||
|
local runner = async.runner(runner_func, { error = spy.new(function () end) });
|
||||||
|
runner:enqueue("one");
|
||||||
|
runner:enqueue("error");
|
||||||
|
runner:enqueue("two");
|
||||||
|
runner:run();
|
||||||
|
assert.equal(r.state, "ready");
|
||||||
|
assert.equal(r.state, r.notified_state);
|
||||||
|
assert.spy(runner_func).was.called(3);
|
||||||
|
assert.spy(runner.watchers.error).was.called(1);
|
||||||
|
assert.equal(last_item, "two");
|
||||||
|
end);
|
||||||
end);
|
end);
|
||||||
end);
|
end);
|
||||||
describe("#waiter", function()
|
describe("#waiter", function()
|
||||||
|
|
|
@ -180,6 +180,9 @@ function runner_mt:run(input)
|
||||||
local handler = self.watchers[state];
|
local handler = self.watchers[state];
|
||||||
if handler then handler(self, err); end
|
if handler then handler(self, err); end
|
||||||
end
|
end
|
||||||
|
if n > 0 then
|
||||||
|
return self:run();
|
||||||
|
end
|
||||||
return true, state, n;
|
return true, state, n;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue