aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-03-18 12:57:25 +0100
committerKim Alvefur <zash@zash.se>2021-03-18 12:57:25 +0100
commitc62c5b307ec907b78f309dbbe90b6569fe91a3f8 (patch)
tree4f94c2f7fd30fc6e47171a5db99bdef6b780e56c /spec
parentfb7df0067cf4a84b1fe7f9145b9aafb0ebae75fa (diff)
downloadprosody-c62c5b307ec907b78f309dbbe90b6569fe91a3f8.tar.gz
prosody-c62c5b307ec907b78f309dbbe90b6569fe91a3f8.zip
util.datamapper: Add initial support for parsing arrays
Diffstat (limited to 'spec')
-rw-r--r--spec/util_datamapper_spec.lua25
1 files changed, 24 insertions, 1 deletions
diff --git a/spec/util_datamapper_spec.lua b/spec/util_datamapper_spec.lua
index 7f5b71de..aacaf995 100644
--- a/spec/util_datamapper_spec.lua
+++ b/spec/util_datamapper_spec.lua
@@ -46,6 +46,11 @@ describe("util.datampper", function()
type = "string";
xml = {name = "origin-id"; namespace = "urn:xmpp:sid:0"; x_single_attribute = "id"};
};
+ reactions = {
+ type = "array";
+ xml = {namespace = "urn:xmpp:reactions:0"; wrapped = true};
+ items = {type = "string"; xml = {name = "reaction"}};
+ };
};
};
@@ -57,6 +62,10 @@ describe("util.datampper", function()
<active xmlns='http://jabber.org/protocol/chatstates'/>
<fallback xmlns='urn:xmpp:fallback:0'/>
<origin-id xmlns='urn:xmpp:sid:0' id='qgkmMdPB'/>
+ <reactions id='744f6e18-a57a-11e9-a656-4889e7820c76' xmlns='urn:xmpp:reactions:0'>
+ <reaction>👋</reaction>
+ <reaction>🐢</reaction>
+ </reactions>
</message>
]];
@@ -71,6 +80,10 @@ describe("util.datampper", function()
state = "active";
fallback = true;
origin_id = "qgkmMdPB";
+ reactions = {
+ "👋",
+ "🐢",
+ };
};
end);
@@ -85,11 +98,21 @@ describe("util.datampper", function()
local u = map.unparse(s, d);
assert.equal("message", u.name);
assert.same(x.attr, u.attr);
- assert.equal(#x.tags-1, #u.tags)
assert.equal(x:get_child_text("body"), u:get_child_text("body"));
assert.equal(x:get_child_text("delay", "urn:xmpp:delay"), u:get_child_text("delay", "urn:xmpp:delay"));
assert.same(x:get_child("delay", "urn:xmpp:delay").attr, u:get_child("delay", "urn:xmpp:delay").attr);
assert.same(x:get_child("origin-id", "urn:xmpp:sid:0").attr, u:get_child("origin-id", "urn:xmpp:sid:0").attr);
+ for _, tag in ipairs(x.tags) do
+ if tag.name ~= "UNRELATED" and tag.name ~= "reactions" then
+ assert.truthy(u:get_child(tag.name, tag.attr.xmlns) or u:get_child(tag.name), tag:top_tag())
+ end
+ end
+ assert.equal(#x.tags-2, #u.tags)
+
+ pending("arrays", function ()
+ assert.truthy(u:get_child("reactions", "urn:xmpp:reactions:0"))
+ end);
+
end);
end);
end)