util.http: Fix decoding of uppercase URL encoded chars

Broken in 1af5106a2c34
This commit is contained in:
Kim Alvefur 2019-01-16 13:53:04 +01:00
parent cf984835d1
commit 3e30870220
2 changed files with 6 additions and 0 deletions

View file

@ -28,6 +28,11 @@ describe("util.http", function()
it("should decode important URL characters", function()
assert.are.equal("This & that = something", http.urldecode("This%20%26%20that%20%3d%20something"), "Important URL chars escaped");
end);
it("should decode both lower and uppercase", function ()
assert.are.equal("This & that = {something}.", http.urldecode("This%20%26%20that%20%3D%20%7Bsomething%7D%2E"), "Important URL chars escaped");
end);
end);
describe("#formencode()", function()