util.http: Add tests for normalize_path

This commit is contained in:
Kim Alvefur 2018-10-14 14:32:02 +02:00
parent 0247a0e904
commit ba2688c78d

View file

@ -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);