mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.http: Add tests for normalize_path
This commit is contained in:
parent
0247a0e904
commit
ba2688c78d
1 changed files with 23 additions and 0 deletions
|
@ -61,4 +61,27 @@ describe("util.http", function()
|
|||
});
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("normalize_path", function ()
|
||||
it("root path is always '/'", function ()
|
||||
assert.equal("/", http.normalize_path("/"));
|
||||
assert.equal("/", http.normalize_path(""));
|
||||
assert.equal("/", http.normalize_path("/", true));
|
||||
assert.equal("/", http.normalize_path("", true));
|
||||
end);
|
||||
|
||||
it("works", function ()
|
||||
assert.equal("/foo", http.normalize_path("foo"));
|
||||
assert.equal("/foo", http.normalize_path("/foo"));
|
||||
assert.equal("/foo", http.normalize_path("foo/"));
|
||||
assert.equal("/foo", http.normalize_path("/foo/"));
|
||||
end);
|
||||
|
||||
it("is_dir works", function ()
|
||||
assert.equal("/foo/", http.normalize_path("foo", true));
|
||||
assert.equal("/foo/", http.normalize_path("/foo", true));
|
||||
assert.equal("/foo/", http.normalize_path("foo/", true));
|
||||
assert.equal("/foo/", http.normalize_path("/foo/", true));
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue