mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
spec: Add test cases for util.http.contains_token
This commit is contained in:
parent
64ea805d66
commit
a4b069589c
1 changed files with 19 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue