aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-02-05 16:14:06 +0100
committerKim Alvefur <zash@zash.se>2021-02-05 16:14:06 +0100
commitb02137ce6b6e43acbe4f7cc4ed657e0b037bd571 (patch)
tree2ae8076df020533e67b8db37698665e20bead9ca
parent6a7ef486690afd0a1d1c589a64603da4852a4e23 (diff)
downloadprosody-b02137ce6b6e43acbe4f7cc4ed657e0b037bd571.tar.gz
prosody-b02137ce6b6e43acbe4f7cc4ed657e0b037bd571.zip
util.cache: Add test for :table (fails on Lua 5.1)
-rw-r--r--spec/util_cache_spec.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/util_cache_spec.lua b/spec/util_cache_spec.lua
index 15e86ee9..d57e25ac 100644
--- a/spec/util_cache_spec.lua
+++ b/spec/util_cache_spec.lua
@@ -311,6 +311,30 @@ describe("util.cache", function()
expect_kv("e", 5, c5:head());
expect_kv("c", 3, c5:tail());
+
+ end);
+
+ (_VERSION=="Lua 5.1" and pending or it)(":table works", function ()
+ local t = cache.new(3):table();
+ assert.is.table(t);
+ t["a"] = "1";
+ assert.are.equal(t["a"], "1");
+ t["b"] = "2";
+ assert.are.equal(t["b"], "2");
+ t["c"] = "3";
+ assert.are.equal(t["c"], "3");
+ t["d"] = "4";
+ assert.are.equal(t["d"], "4");
+ assert.are.equal(t["a"], nil);
+
+ local i = spy.new(function () end);
+ for k, v in pairs(t) do
+ i(k,v)
+ end
+ assert.spy(i).was_called();
+ assert.spy(i).was_called_with("b", "2");
+ assert.spy(i).was_called_with("c", "3");
+ assert.spy(i).was_called_with("d", "4");
end);
end);
end);