Software /
code /
prosody
Diff
spec/util_pubsub_spec.lua @ 9816:7f84d7f77a00 0.11
util.pubsub: Add support for requesting multiple specific items (needed for #1305)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 28 Jan 2019 01:41:01 +0100 |
parent | 9742:18eca6afb367 |
child | 9840:ec353524b739 |
line wrap: on
line diff
--- a/spec/util_pubsub_spec.lua Sat Jan 26 13:32:26 2019 +0100 +++ b/spec/util_pubsub_spec.lua Mon Jan 28 01:41:01 2019 +0100 @@ -170,6 +170,37 @@ end); + describe("the thing", function () + randomize(false); -- These tests are ordered + + local service = pubsub.new(); + + it("creates a node with some items", function () + assert.truthy(service:create("node", true, { max_items = 3 })); + assert.truthy(service:publish("node", true, "1", "item 1")); + assert.truthy(service:publish("node", true, "2", "item 2")); + assert.truthy(service:publish("node", true, "3", "item 3")); + end); + + it("should return the requested item", function () + local ok, ret = service:get_items("node", true, "1"); + assert.truthy(ok); + assert.same({ "1", ["1"] = "item 1" }, ret); + end); + + it("should return multiple requested items", function () + local ok, ret = service:get_items("node", true, { "1", "2" }); + assert.truthy(ok); + assert.same({ + "1", + "2", + ["1"] = "item 1", + ["2"] = "item 2", + }, ret); + end); + end); + + describe("node config", function () local service; before_each(function ()