mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.error: Add well-known field 'extra'
A place for various extra fields and edge cases of the stanza error data model, e.g. the URI field of <gone>
This commit is contained in:
parent
a34633771d
commit
ed5841e42b
2 changed files with 10 additions and 0 deletions
|
@ -66,5 +66,13 @@ describe("util.error", function ()
|
|||
end);
|
||||
end);
|
||||
|
||||
describe("extra", function ()
|
||||
it("keeps some extra fields", function ()
|
||||
local err = errors.new({condition="gone",text="Sorry mate, it's all gone",extra={uri="file:///dev/null"}});
|
||||
assert.is_table(err.extra);
|
||||
assert.equal("file:///dev/null", err.extra.uri);
|
||||
end);
|
||||
end)
|
||||
|
||||
end);
|
||||
|
||||
|
|
|
@ -43,6 +43,7 @@ local function new(e, context, registry, source)
|
|||
type = e.type;
|
||||
condition = e.condition;
|
||||
text = e.text;
|
||||
extra = e.extra;
|
||||
};
|
||||
else
|
||||
template = {};
|
||||
|
@ -61,6 +62,7 @@ local function new(e, context, registry, source)
|
|||
condition = template.condition or "undefined-condition";
|
||||
text = template.text;
|
||||
code = template.code;
|
||||
extra = template.extra;
|
||||
|
||||
context = context;
|
||||
source = source;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue