2021-09-24 17:02:50 +00:00
|
|
|
varnishtest "Lua: check httpclient functionality from a lua-task"
|
2021-10-28 13:57:33 +00:00
|
|
|
|
|
|
|
# A request if first made with c0 with the port of s1 and s2 so the httpclient
|
|
|
|
# can generate its URI with it.
|
|
|
|
#
|
|
|
|
# This reg-test sends a payload with the httpclient to s1, s1 returns another
|
|
|
|
# payload. The 2nd lua httpclient sends back the payload from s1 to s2.
|
|
|
|
#
|
|
|
|
|
2021-09-24 17:02:50 +00:00
|
|
|
feature cmd "$HAPROXY_PROGRAM -cc 'version_atleast(2.5-dev7)'"
|
|
|
|
feature ignore_unknown_macro
|
|
|
|
|
|
|
|
#REQUIRE_OPTIONS=LUA
|
|
|
|
|
|
|
|
server s1 {
|
|
|
|
rxreq
|
2021-11-10 16:40:19 +00:00
|
|
|
txresp -bodylen 54000
|
|
|
|
expect req.body ~ ".*0 ABCDEFGHIJKLMNOPQRSTUVWXYZ.*"
|
|
|
|
expect req.body ~ ".*500 ABCDEFGHIJKLMNOPQRSTUVWXYZ.*"
|
|
|
|
expect req.body ~ ".*1000 ABCDEFGHIJKLMNOPQRSTUVWXYZ.*"
|
|
|
|
expect req.body ~ ".*1500 ABCDEFGHIJKLMNOPQRSTUVWXYZ.*"
|
2021-10-28 13:57:33 +00:00
|
|
|
expect req.body ~ ".*2000 ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
} -start
|
|
|
|
|
|
|
|
server s2 {
|
|
|
|
rxreq
|
|
|
|
txresp
|
2021-11-10 16:40:19 +00:00
|
|
|
expect req.bodylen == 54000
|
2021-09-24 17:02:50 +00:00
|
|
|
} -start
|
|
|
|
|
2021-11-24 14:38:17 +00:00
|
|
|
server s3 {
|
|
|
|
rxreq
|
|
|
|
txresp -bodylen 54000
|
|
|
|
expect req.method == "GET"
|
|
|
|
expect req.http.host == "foobar.haproxy.local"
|
|
|
|
} -start
|
|
|
|
|
|
|
|
|
2021-09-24 17:02:50 +00:00
|
|
|
haproxy h1 -conf {
|
|
|
|
global
|
|
|
|
lua-load ${testdir}/lua_httpclient.lua
|
|
|
|
|
|
|
|
frontend fe1
|
|
|
|
mode http
|
|
|
|
bind "fd@${fe1}"
|
|
|
|
default_backend b1
|
|
|
|
|
|
|
|
backend b1
|
|
|
|
mode http
|
|
|
|
http-request use-service lua.fakeserv
|
|
|
|
|
2022-02-17 19:00:23 +00:00
|
|
|
listen li1
|
|
|
|
mode http
|
|
|
|
bind unix@${testdir}/srv3
|
|
|
|
server srv3 ${s3_addr}:${s3_port}
|
|
|
|
|
2021-09-24 17:02:50 +00:00
|
|
|
} -start
|
|
|
|
|
|
|
|
client c0 -connect ${h1_fe1_sock} {
|
2022-02-17 19:00:23 +00:00
|
|
|
txreq -url "/" -hdr "vtcport: ${s1_port}" -hdr "vtcport2: ${s2_port}" -hdr "vtcport3: unix@${testdir}/srv3"
|
2021-09-24 17:02:50 +00:00
|
|
|
rxresp
|
|
|
|
expect resp.status == 200
|
|
|
|
} -run
|
|
|
|
|
|
|
|
|
|
|
|
server s1 -wait
|
2021-10-28 13:57:33 +00:00
|
|
|
server s2 -wait
|
2021-11-24 14:38:17 +00:00
|
|
|
server s3 -wait
|