Software /
code /
prosody
Changeset
9451:db82b096b842
util.pubsub tests: Ensure necessary tests run in the defined order
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 01 Oct 2018 19:43:20 +0100 |
parents | 9450:b890ceb1c24f |
children | 9452:9d892b2415bf |
files | spec/util_pubsub_spec.lua |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/spec/util_pubsub_spec.lua Mon Oct 08 15:33:15 2018 +0200 +++ b/spec/util_pubsub_spec.lua Mon Oct 01 19:43:20 2018 +0100 @@ -15,10 +15,13 @@ describe("util.pubsub", function () describe("simple node creation and deletion", function () + randomize(false); -- These tests are ordered + -- Roughly a port of scansion/scripts/pubsub_createdelete.scs local service = pubsub.new(); describe("#create", function () + randomize(false); -- These tests are ordered it("creates a new node", function () assert.truthy(service:create("princely_musings", true)); end); @@ -29,6 +32,7 @@ end); describe("#delete", function () + randomize(false); -- These tests are ordered it("deletes the node", function () assert.truthy(service:delete("princely_musings", true)); end); @@ -40,6 +44,8 @@ end); describe("simple publishing", function () + randomize(false); -- These tests are ordered + local notified; local broadcaster = spy.new(function (notif_type, node_name, subscribers, item) -- luacheck: ignore 212 notified = subscribers; @@ -82,6 +88,8 @@ end); describe("#issue1082", function () + randomize(false); -- These tests are ordered + local service = pubsub.new(); it("creates a node with max_items = 1", function ()