mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
64aa6a2a0e
commit
91d2ab9108
3 changed files with 36 additions and 7 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue