From da56744645d0fc15fe0b106d4ff771b44393bd8e Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 28 Jan 2019 01:41:01 +0100 Subject: util.pubsub: Add support for requesting multiple specific items (needed for #1305) --- spec/util_pubsub_spec.lua | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'spec') diff --git a/spec/util_pubsub_spec.lua b/spec/util_pubsub_spec.lua index 6386100b..551aedd6 100644 --- a/spec/util_pubsub_spec.lua +++ b/spec/util_pubsub_spec.lua @@ -170,6 +170,37 @@ describe("util.pubsub", function () 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 () -- cgit v1.2.3