mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.http: Add tests for normalize_path
This commit is contained in:
parent
41abd787ba
commit
86247abe78
1 changed files with 23 additions and 0 deletions
|
@ -61,4 +61,27 @@ describe("util.http", function()
|
||||||
});
|
});
|
||||||
end);
|
end);
|
||||||
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);
|
end);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue