aboutsummaryrefslogtreecommitdiffstats
path: root/spec/util_http_spec.lua
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2020-04-10 20:20:14 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2020-04-10 20:20:14 +0200
commita4b069589cd555050a9a6e71b185e3a540f8c42d (patch)
tree24d1052c7261f491021dfe5fdf56ed5ec0db057f /spec/util_http_spec.lua
parent64ea805d66d7d17b4272caa61cb0fa91a021a9ca (diff)
downloadprosody-a4b069589cd555050a9a6e71b185e3a540f8c42d.tar.gz
prosody-a4b069589cd555050a9a6e71b185e3a540f8c42d.zip
spec: Add test cases for util.http.contains_token
Diffstat (limited to 'spec/util_http_spec.lua')
-rw-r--r--spec/util_http_spec.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/util_http_spec.lua b/spec/util_http_spec.lua
index d38645f7..c6087450 100644
--- a/spec/util_http_spec.lua
+++ b/spec/util_http_spec.lua
@@ -89,4 +89,23 @@ describe("util.http", function()
assert.equal("/foo/", http.normalize_path("/foo/", true));
end);
end);
+
+ describe("contains_token", function ()
+ it("is present in field", function ()
+ assert.is_true(http.contains_token("foo", "foo"));
+ assert.is_true(http.contains_token("foo, bar", "foo"));
+ assert.is_true(http.contains_token("foo,bar", "foo"));
+ assert.is_true(http.contains_token("bar, foo,baz", "foo"));
+ end);
+
+ it("is absent from field", function ()
+ assert.is_false(http.contains_token("bar", "foo"));
+ assert.is_false(http.contains_token("fooo", "foo"));
+ assert.is_false(http.contains_token("foo o,bar", "foo"));
+ end);
+
+ it("is weird", function ()
+ assert.is_(http.contains_token("fo o", "foo"));
+ end);
+ end);
end);