net.http.parser: Allow specifying sink for large request bodies

This enables uses such as saving uploaded files directly to a file on
disk or streaming parsing of payloads.

See #726
This commit is contained in:
Kim Alvefur 2020-08-01 18:41:23 +02:00
parent 64aa6a2a0e
commit 91d2ab9108
3 changed files with 36 additions and 7 deletions

View file

@ -3,7 +3,9 @@ local http_parser = require "net.http.parser";
local function test_stream(stream, expect)
local success_cb = spy.new(function (packet)
assert.is_table(packet);
assert.is_equal(expect.body, packet.body);
if packet.body ~= false then
assert.is_equal(expect.body, packet.body);
end
end);
stream = stream:gsub("\n", "\r\n");
@ -79,7 +81,7 @@ o
]],
{
body = "Hello", count = 1;
body = "Hello", count = 2;
}
);
end);
@ -108,7 +110,7 @@ o
]],
{
body = "Hello", count = 2;
body = "Hello", count = 3;
}
);
end);