haproxy/reg-tests/lua/lua_socket.vtc
Tim Duesterhus aebe561d4d REGTESTS: Migrate REQUIRE_OPTION to haproxy -cc
With the EOL of HAProxy 2.4 all supported versions of HAProxy support `haproxy
-cc`, allowing us to unify the tests in this regard.
2026-07-08 14:50:25 +02:00

44 lines
834 B
Text

varnishtest "Lua: check socket functionality from a lua-task"
feature ignore_unknown_macro
feature cmd "$HAPROXY_PROGRAM -cc 'feature(LUA)'"
server s1 {
rxreq
txresp -bodylen 20
} -start
haproxy h1 -conf {
global
.if feature(THREAD)
thread-groups 1
.endif
tune.lua.openlibs string
tune.lua.bool-sample-conversion normal
lua-load ${testdir}/lua_socket.lua
defaults
timeout client 30s
timeout server 30s
timeout connect 30s
frontend fe1
mode http
bind "fd@${fe1}"
default_backend b1
backend b1
mode http
http-request use-service lua.fakeserv
} -start
client c0 -connect ${h1_fe1_sock} {
txreq -url "/" -hdr "vtcport: ${s1_port}"
rxresp
expect resp.status == 200
} -run
server s1 -wait