Mercurial > prosody-hg
comparison spec/util_http_spec.lua @ 10411:db2a06b9ff98
Merge 0.11->trunk
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 16 Nov 2019 16:52:31 +0100 |
| parents | ff88b03c343f |
| children | d2e4584ba7b3 |
comparison
equal
deleted
inserted
replaced
| 10410:659b577f280c | 10411:db2a06b9ff98 |
|---|---|
| 26 end); | 26 end); |
| 27 | 27 |
| 28 it("should decode important URL characters", function() | 28 it("should decode important URL characters", function() |
| 29 assert.are.equal("This & that = something", http.urldecode("This%20%26%20that%20%3d%20something"), "Important URL chars escaped"); | 29 assert.are.equal("This & that = something", http.urldecode("This%20%26%20that%20%3d%20something"), "Important URL chars escaped"); |
| 30 end); | 30 end); |
| 31 | |
| 32 it("should decode both lower and uppercase", function () | |
| 33 assert.are.equal("This & that = {something}.", http.urldecode("This%20%26%20that%20%3D%20%7Bsomething%7D%2E"), "Important URL chars escaped"); | |
| 34 end); | |
| 35 | |
| 31 end); | 36 end); |
| 32 | 37 |
| 33 describe("#formencode()", function() | 38 describe("#formencode()", function() |
| 34 it("should encode basic data", function() | 39 it("should encode basic data", function() |
| 35 assert.are.equal(http.formencode({ { name = "one", value = "1"}, { name = "two", value = "2" } }), "one=1&two=2", "Form encoded"); | 40 assert.are.equal(http.formencode({ { name = "one", value = "1"}, { name = "two", value = "2" } }), "one=1&two=2", "Form encoded"); |
