mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
net.http.parser: Add failing test for (large?) chunk-encoded responses
This commit is contained in:
parent
031a8d8e64
commit
076d8b698f
2 changed files with 27 additions and 0 deletions
15
spec/inputs/http/httpstream-chunked-test.txt
Normal file
15
spec/inputs/http/httpstream-chunked-test.txt
Normal file
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,5 @@
|
|||
local http_parser = require "net.http.parser";
|
||||
local sha1 = require "util.hashes".sha1;
|
||||
|
||||
local function test_stream(stream, expect)
|
||||
local success_cb = spy.new(function (packet)
|
||||
|
@ -115,4 +116,15 @@ o
|
|||
);
|
||||
end);
|
||||
end);
|
||||
|
||||
pending("should handle large chunked responses", function ()
|
||||
local data = io.open("spec/inputs/httpstream-chunked-test.txt", "rb"):read("*a");
|
||||
|
||||
-- Just a sanity check... text editors and things may mess with line endings, etc.
|
||||
assert.equal("25930f021785ae14053a322c2dbc1897c3769720", sha1(data, true), "test data malformed");
|
||||
|
||||
test_stream(data, {
|
||||
body = string.rep("~", 11085), count = 2;
|
||||
});
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue