aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_util_xml.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2016-03-05 23:42:01 +0000
committerMatthew Wild <mwild1@gmail.com>2016-03-05 23:42:01 +0000
commit61a708fcd1a3c9a7a6f88787e47365ebd20fad60 (patch)
tree3bc20470d3432473b4271373ec2ec70f04dfdb00 /tests/test_util_xml.lua
parent39dceba25851f3c9db32082f6217fbb2b7d6fc39 (diff)
downloadprosody-61a708fcd1a3c9a7a6f88787e47365ebd20fad60.tar.gz
prosody-61a708fcd1a3c9a7a6f88787e47365ebd20fad60.zip
tests: Add basic tests for util.xml and util.xmppstream
Diffstat (limited to 'tests/test_util_xml.lua')
-rw-r--r--tests/test_util_xml.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_util_xml.lua b/tests/test_util_xml.lua
new file mode 100644
index 00000000..ba44da19
--- /dev/null
+++ b/tests/test_util_xml.lua
@@ -0,0 +1,12 @@
+function parse(parse)
+ local x =
+[[<x xmlns:a="b">
+ <y xmlns:a="c"> <!-- this overwrites 'a' -->
+ <a:z/>
+ </y>
+ <a:z/> <!-- prefix 'a' is nil here, but should be 'b' -->
+</x>
+]]
+ local stanza = parse(x);
+ assert_equal(stanza.tags[2].attr.xmlns, "b");
+end