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
|
local rsm = require "util.rsm";
local xml = require "util.xml";
local function strip(s)
return (s:gsub(">%s+<", "><"));
end
describe("util.rsm", function ()
describe("parse", function ()
it("works", function ()
local test = xml.parse(strip([[
<set xmlns='http://jabber.org/protocol/rsm'>
<max>10</max>
</set>
]]));
assert.same({ max = 10 }, rsm.parse(test));
end);
it("works", function ()
local test = xml.parse(strip([[
<set xmlns='http://jabber.org/protocol/rsm'>
<first index='0'>saint@example.org</first>
<last>peterpan@neverland.lit</last>
<count>800</count>
</set>
]]));
assert.same({ first = { index = 0, "saint@example.org" }, last = "peterpan@neverland.lit", count = 800 }, rsm.parse(test));
end);
it("works", function ()
local test = xml.parse(strip([[
<set xmlns='http://jabber.org/protocol/rsm'>
<max>10</max>
<before>peter@pixyland.org</before>
</set>
]]));
assert.same({ max = 10, before = "peter@pixyland.org" }, rsm.parse(test));
end);
it("all fields works", function()
local test = assert(xml.parse(strip([[
<set xmlns='http://jabber.org/protocol/rsm'>
<after>a</after>
<before>b</before>
<count>10</count>
<first index='1'>f</first>
<index>5</index>
<last>z</last>
<max>100</max>
</set>
]])));
assert.same({
after = "a";
before = "b";
count = 10;
first = {index = 1; "f"};
index = 5;
last = "z";
max = 100;
}, rsm.parse(test));
end);
end);
describe("generate", function ()
it("works", function ()
local test = xml.parse(strip([[
<set xmlns='http://jabber.org/protocol/rsm'>
<max>10</max>
</set>
]]));
local res = rsm.generate({ max = 10 });
assert.same(test:get_child_text("max"), res:get_child_text("max"));
end);
it("works", function ()
local test = xml.parse(strip([[
<set xmlns='http://jabber.org/protocol/rsm'>
<first index='0'>saint@example.org</first>
<last>peterpan@neverland.lit</last>
<count>800</count>
</set>
]]));
local res = rsm.generate({ first = { index = 0, "saint@example.org" }, last = "peterpan@neverland.lit", count = 800 });
assert.same(test:get_child("first").attr.index, res:get_child("first").attr.index);
assert.same(test:get_child_text("first"), res:get_child_text("first"));
assert.same(test:get_child_text("last"), res:get_child_text("last"));
assert.same(test:get_child_text("count"), res:get_child_text("count"));
end);
it("works", function ()
local test = xml.parse(strip([[
<set xmlns='http://jabber.org/protocol/rsm'>
<max>10</max>
<before>peter@pixyland.org</before>
</set>
]]));
local res = rsm.generate({ max = 10, before = "peter@pixyland.org" });
assert.same(test:get_child_text("max"), res:get_child_text("max"));
assert.same(test:get_child_text("before"), res:get_child_text("before"));
end);
it("handles floats", function ()
local r1 = rsm.generate({ max = 10.0, count = 100.0, first = { index = 1.0, "foo" } });
assert.equal("10", r1:get_child_text("max"));
assert.equal("100", r1:get_child_text("count"));
assert.equal("1", r1:get_child("first").attr.index);
end);
it("all fields works", function ()
local res = rsm.generate({
after = "a";
before = "b";
count = 10;
first = {index = 1; "f"};
index = 5;
last = "z";
max = 100;
});
assert.equal("a", res:get_child_text("after"));
assert.equal("b", res:get_child_text("before"));
assert.equal("10", res:get_child_text("count"));
assert.equal("f", res:get_child_text("first"));
assert.equal("1", res:get_child("first").attr.index);
assert.equal("5", res:get_child_text("index"));
assert.equal("z", res:get_child_text("last"));
assert.equal("100", res:get_child_text("max"));
end);
end);
end);
|