mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.xml: Add an option to allow <?processing instructions?>
These should generally be safe to just ignore, which should be the default behavior of Expat and LuaExpat
This commit is contained in:
parent
eae775bc79
commit
99a880ebe5
2 changed files with 11 additions and 1 deletions
|
@ -42,6 +42,13 @@ describe("util.xml", function()
|
|||
assert.falsy(ok);
|
||||
end);
|
||||
|
||||
it("should allow processing instructions if asked nicely", function()
|
||||
local x = "<?xml-stylesheet href='make-fancy.xsl'?><foo/>";
|
||||
local stanza = xml.parse(x, {allow_processing_instructions = true});
|
||||
assert.truthy(stanza);
|
||||
assert.are.equal(stanza.name, "foo");
|
||||
end);
|
||||
|
||||
it("should allow an xml declaration", function()
|
||||
local x = "<?xml version='1.0'?><foo/>";
|
||||
local stanza = xml.parse(x);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue