mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.error: Add well-known field 'code' in error templates
Intended to be for HTTP-ish numeric status codes
This commit is contained in:
parent
9f13e20ffe
commit
03adb50555
2 changed files with 3 additions and 0 deletions
|
@ -16,11 +16,13 @@ describe("util.error", function ()
|
||||||
["fail"] = {
|
["fail"] = {
|
||||||
type = "wait",
|
type = "wait",
|
||||||
condition = "internal-server-error",
|
condition = "internal-server-error",
|
||||||
|
code = 555;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
local err = errors.new("fail", { traceback = "in some file, somewhere" }, templates);
|
local err = errors.new("fail", { traceback = "in some file, somewhere" }, templates);
|
||||||
assert.equal("wait", err.type);
|
assert.equal("wait", err.type);
|
||||||
assert.equal("internal-server-error", err.condition);
|
assert.equal("internal-server-error", err.condition);
|
||||||
|
assert.equal(555, err.code);
|
||||||
assert.same({ traceback = "in some file, somewhere" }, err.context);
|
assert.same({ traceback = "in some file, somewhere" }, err.context);
|
||||||
end);
|
end);
|
||||||
end);
|
end);
|
||||||
|
|
|
@ -14,6 +14,7 @@ local function new(e, context, registry)
|
||||||
type = template.type or "cancel";
|
type = template.type or "cancel";
|
||||||
condition = template.condition or "undefined-condition";
|
condition = template.condition or "undefined-condition";
|
||||||
text = template.text;
|
text = template.text;
|
||||||
|
code = template.code or 500;
|
||||||
|
|
||||||
context = context or template.context or { _error_id = e };
|
context = context or template.context or { _error_id = e };
|
||||||
}, error_mt);
|
}, error_mt);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue