From 99a880ebe5e45655d63e1a72866d2d44b7497fd9 Mon Sep 17 00:00:00 2001
From: Kim Alvefur <zash@zash.se>
Date: Fri, 4 Feb 2022 20:47:39 +0100
Subject: 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
---
 spec/util_xml_spec.lua | 7 +++++++
 1 file changed, 7 insertions(+)

(limited to 'spec')

diff --git a/spec/util_xml_spec.lua b/spec/util_xml_spec.lua
index 28a1cea7..6d3136ab 100644
--- a/spec/util_xml_spec.lua
+++ b/spec/util_xml_spec.lua
@@ -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);
-- 
cgit v1.2.3