aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-03-03 19:31:56 +0100
committerKim Alvefur <zash@zash.se>2019-03-03 19:31:56 +0100
commit5d4504e51b8d1e77b20fffaf60cd7f2bdb80785a (patch)
tree2f850f6d31956c595e9950ae016378195acadd57 /spec
parent7241f866687168f1e3f9238ea240af0f4b319ccb (diff)
downloadprosody-5d4504e51b8d1e77b20fffaf60cd7f2bdb80785a.tar.gz
prosody-5d4504e51b8d1e77b20fffaf60cd7f2bdb80785a.zip
util.pubsub: Validate node configuration on node creation (fixes #1328)
Diffstat (limited to 'spec')
-rw-r--r--spec/util_pubsub_spec.lua41
1 files changed, 41 insertions, 0 deletions
diff --git a/spec/util_pubsub_spec.lua b/spec/util_pubsub_spec.lua
index 551aedd6..c982fb36 100644
--- a/spec/util_pubsub_spec.lua
+++ b/spec/util_pubsub_spec.lua
@@ -436,4 +436,45 @@ describe("util.pubsub", function ()
end);
end);
+ describe("node config checking", function ()
+ local service;
+ before_each(function ()
+ service = pubsub.new({
+ check_node_config = function (node, actor, config) -- luacheck: ignore 212
+ return config["max_items"] <= 20;
+ end;
+ });
+ end);
+
+ it("defaults, then configure", function ()
+ local ok, err = service:create("node", true);
+ assert.is_true(ok, err);
+
+ local ok, err = service:set_node_config("node", true, { max_items = 10 });
+ assert.is_true(ok, err);
+
+ local ok, err = service:set_node_config("node", true, { max_items = 100 });
+ assert.falsy(ok, err);
+ assert.equals(err, "not-acceptable");
+ end);
+
+ it("create with ok config, then configure", function ()
+ local ok, err = service:create("node", true, { max_items = 10 });
+ assert.is_true(ok, err);
+
+ local ok, err = service:set_node_config("node", true, { max_items = 100 });
+ assert.falsy(ok, err);
+
+ local ok, err = service:set_node_config("node", true, { max_items = 10 });
+ assert.is_true(ok, err);
+ end);
+
+ it("create with unacceptable config", function ()
+ local ok, err = service:create("node", true, { max_items = 100 });
+ assert.falsy(ok, err);
+ end);
+
+
+ end);
+
end);