mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-06 08:43:35 +02:00
REGTESTS: lua: test the httpclient:get() feature
This reg-test is heavily inspired by the lua_socket.vtc one. It replaces the HTTP/1.1 request made manually with a socket object with an httpclient object.
This commit is contained in:
29
reg-tests/lua/lua_httpclient.lua
Normal file
29
reg-tests/lua/lua_httpclient.lua
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
local vtc_port = 0
|
||||
|
||||
core.register_service("fakeserv", "http", function(applet)
|
||||
vtc_port = applet.headers["vtcport"][0]
|
||||
core.Info("APPLET START")
|
||||
local response = "OK"
|
||||
applet:add_header("Server", "haproxy/webstats")
|
||||
applet:add_header("Content-Length", string.len(response))
|
||||
applet:add_header("Content-Type", "text/html")
|
||||
applet:start_response()
|
||||
applet:send(response)
|
||||
core.Info("APPLET DONE")
|
||||
end)
|
||||
|
||||
local function cron()
|
||||
-- wait for until the correct port is set through the c0 request..
|
||||
while vtc_port == 0 do
|
||||
core.msleep(1)
|
||||
end
|
||||
core.Debug('CRON port:' .. vtc_port)
|
||||
|
||||
local httpclient = core.httpclient()
|
||||
local response = httpclient:get("http://127.0.0.1:" .. vtc_port)
|
||||
|
||||
core.Info("Received: " .. response.body)
|
||||
end
|
||||
|
||||
core.register_task(cron)
|
||||
Reference in New Issue
Block a user