1
0
mirror of https://github.com/wg/wrk synced 2026-05-16 18:52:32 +08:00

generate requests with lua script

This commit is contained in:
Will
2013-08-18 13:38:06 +09:00
Unverified
parent c6679dc58a
commit e24ed26a43
10 changed files with 252 additions and 70 deletions
+39
View File
@@ -0,0 +1,39 @@
local wrk = {
scheme = "http",
host = "localhost",
port = nil,
method = "GET",
path = "/",
headers = {},
body = nil
}
function wrk.format(method, path, headers, body)
local host = wrk.host
local method = method or wrk.method
local path = path or wrk.path
local headers = headers or wrk.headers
local body = body or wrk.body
local s = {}
headers["Host"] = port and (host .. ":" .. port) or host
headers["Content-Length"] = body and string.len(body)
s[1] = string.format("%s %s HTTP/1.1", method, path)
for name, value in pairs(headers) do
s[#s+1] = string.format("%s: %s", name, value)
end
s[#s+1] = ""
s[#s+1] = body or ""
return table.concat(s, "\r\n")
end
function wrk.init() req = wrk.format() end
function wrk.request() return req end
init = wrk.init
request = wrk.request
return wrk