mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.http: Fix decoding of uppercase URL encoded chars
Broken in 1af5106a2c34
This commit is contained in:
parent
cf984835d1
commit
3e30870220
2 changed files with 6 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue