aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_util_stanza.lua
blob: bc0ac64af4b209addfcb1cea37e55f09e30daa1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
-- Prosody IM
-- Copyright (C) 2008-2010 Matthew Wild
-- Copyright (C) 2008-2010 Waqas Hussain
--
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--


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_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

function stanza(stanza)
	local s = stanza("foo", { xmlns = "myxmlns", a = "attr-a" });
	assert_equal(s.name, "foo");
	assert_equal(s.attr.xmlns, "myxmlns");
	assert_equal(s.attr.a, "attr-a");

	local s1 = stanza("s1");
	assert_equal(s1.name, "s1");
	assert_equal(s1.attr.xmlns, nil);
	assert_equal(#s1, 0);
	assert_equal(#s1.tags, 0);
	
	s1:tag("child1");
	assert_equal(#s1.tags, 1);
	assert_equal(s1.tags[1].name, "child1");

	s1:tag("grandchild1"):up();
	assert_equal(#s1.tags, 1);
	assert_equal(s1.tags[1].name, "child1");
	assert_equal(#s1.tags[1], 1);
	assert_equal(s1.tags[1][1].name, "grandchild1");
	
	s1:up():tag("child2");
	assert_equal(#s1.tags, 2, tostring(s1));
	assert_equal(s1.tags[1].name, "child1");
	assert_equal(s1.tags[2].name, "child2");
	assert_equal(#s1.tags[1], 1);
	assert_equal(s1.tags[1][1].name, "grandchild1");

	s1:up():text("Hello world");
	assert_equal(#s1.tags, 2);
	assert_equal(#s1, 3);
	assert_equal(s1.tags[1].name, "child1");
	assert_equal(s1.tags[2].name, "child2");
	assert_equal(#s1.tags[1], 1);
	assert_equal(s1.tags[1][1].name, "grandchild1");
end

function message(message)
	local m = message();
	assert_equal(m.name, "message");
end

function iq(iq)
	local i = iq();
	assert_equal(i.name, "iq");
end

function presence(presence)
	local p = presence();
	assert_equal(p.name, "presence");
end

function reply(reply, _M)
	do
		-- Test stanza
		local s = _M.stanza("s", { to = "touser", from = "fromuser", id = "123" })
			:tag("child1");
		-- Make reply stanza
		local r = reply(s);
		assert_equal(r.name, s.name);
		assert_equal(r.id, s.id);
		assert_equal(r.attr.to, s.attr.from);
		assert_equal(r.attr.from, s.attr.to);
		assert_equal(#r.tags, 0, "A reply should not include children of the original stanza");
	end

	do
		-- Test stanza
		local s = _M.stanza("iq", { to = "touser", from = "fromuser", id = "123", type = "get" })
			:tag("child1");
		-- Make reply stanza
		local r = reply(s);
		assert_equal(r.name, s.name);
		assert_equal(r.id, s.id);
		assert_equal(r.attr.to, s.attr.from);
		assert_equal(r.attr.from, s.attr.to);
		assert_equal(r.attr.type, "result");
		assert_equal(#r.tags, 0, "A reply should not include children of the original stanza");
	end

	do
		-- Test stanza
		local s = _M.stanza("iq", { to = "touser", from = "fromuser", id = "123", type = "set" })
			:tag("child1");
		-- Make reply stanza
		local r = reply(s);
		assert_equal(r.name, s.name);
		assert_equal(r.id, s.id);
		assert_equal(r.attr.to, s.attr.from);
		assert_equal(r.attr.from, s.attr.to);
		assert_equal(r.attr.type, "result");
		assert_equal(#r.tags, 0, "A reply should not include children of the original stanza");
	end
end

function error_reply(error_reply, _M)
	do
		-- Test stanza
		local s = _M.stanza("s", { to = "touser", from = "fromuser", id = "123" })
			:tag("child1");
		-- Make reply stanza
		local r = error_reply(s);
		assert_equal(r.name, s.name);
		assert_equal(r.id, s.id);
		assert_equal(r.attr.to, s.attr.from);
		assert_equal(r.attr.from, s.attr.to);
		assert_equal(#r.tags, 1);
	end

	do
		-- Test stanza
		local s = _M.stanza("iq", { to = "touser", from = "fromuser", id = "123", type = "get" })
			:tag("child1");
		-- Make reply stanza
		local r = error_reply(s);
		assert_equal(r.name, s.name);
		assert_equal(r.id, s.id);
		assert_equal(r.attr.to, s.attr.from);
		assert_equal(r.attr.from, s.attr.to);
		assert_equal(r.attr.type, "error");
		assert_equal(#r.tags, 1);
	end
end