diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2020-04-10 20:20:14 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2020-04-10 20:20:14 +0200 |
commit | c2744b2c1122b04149fe4af8f008ccf4f1f3cb34 (patch) | |
tree | 24d1052c7261f491021dfe5fdf56ed5ec0db057f /spec/util_http_spec.lua | |
parent | 553d1be9e503c21fa0b78a0f93ef736d4799e4b1 (diff) | |
download | prosody-c2744b2c1122b04149fe4af8f008ccf4f1f3cb34.tar.gz prosody-c2744b2c1122b04149fe4af8f008ccf4f1f3cb34.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.lua | 19 |
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); |