aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-01-09 17:44:59 +0000
committerMatthew Wild <mwild1@gmail.com>2009-01-09 17:44:59 +0000
commit365368ef5272c34f83f32a77585e10acf174a175 (patch)
tree0c49fdf45c88d07454aab4730c88553e56899e29 /tests
parentd4f24630f3a454a0aecaa17ee2667ad1bce367f5 (diff)
downloadprosody-365368ef5272c34f83f32a77585e10acf174a175.tar.gz
prosody-365368ef5272c34f83f32a77585e10acf174a175.zip
Add more tests for util/stanza.lua serialization routines
Diffstat (limited to 'tests')
-rw-r--r--tests/test_util_stanza.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test_util_stanza.lua b/tests/test_util_stanza.lua
index 897dab95..f4c4810a 100644
--- a/tests/test_util_stanza.lua
+++ b/tests/test_util_stanza.lua
@@ -1,7 +1,20 @@
+function preserialize(preserialize, st)
+ local stanza = st.stanza("message", { a = "a" });
+ local stanza2 = preserialize(stanza);
+ assert_is(stanza2 and stanza.name, "preserialize returns a stanza");
+ assert_is_not(stanza2.tags, "Preserialized stanza has no tag list");
+ assert_is_not(stanza2.last_add, "Preserialized stanza has no last_add marker");
+ assert_is_not(getmetatable(stanza2), "Preserialized stanza has no metatable");
+end
+
function deserialize(deserialize, st)
local stanza = st.stanza("message", { a = "a" });
local stanza2 = deserialize(st.preserialize(stanza));
+ assert_is(stanza2 and stanza.name, "deserialize returns a stanza");
assert_is(stanza2.last_add, "Deserialized stanza is missing last_add for adding child tags");
+ assert_table(stanza2.attr, "Deserialized stanza has attributes");
+ assert_equal(stanza2.attr.a, "a", "Deserialized stanza retains attributes");
+ assert_table(getmetatable(stanza2), "Deserialized stanza has metatable");
end