mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-02-09 06:46:55 +00:00
Now that warnings were almost all removed, let's enable zero-warning via -dW. All tests were adjusted, but two: - mcli/mcli_start_progs.vtc: the programs section currently cannot be silenced - stats/stats-file.vtc: the warning comes from the stats file itself on comment lines. All other ones are now OK.
40 lines
913 B
Plaintext
40 lines
913 B
Plaintext
varnishtest "Lua: test the httpclient when the lua action timeout"
|
|
#
|
|
# Start an httpclient from "lua.test" whose lua task will expire before the
|
|
# httpclient is ended.
|
|
|
|
|
|
feature cmd "$HAPROXY_PROGRAM -cc 'version_atleast(2.5-dev7)'"
|
|
feature ignore_unknown_macro
|
|
|
|
#REQUIRE_OPTIONS=LUA
|
|
|
|
haproxy h1 -arg '-dW' -conf {
|
|
|
|
global
|
|
lua-load ${testdir}/httpclient_action.lua
|
|
defaults
|
|
mode tcp
|
|
timeout http-request 10s
|
|
timeout queue 1m
|
|
timeout connect 10s
|
|
timeout client 1m
|
|
timeout server 1m
|
|
timeout check 10s
|
|
|
|
listen li1
|
|
mode http
|
|
bind "fd@${fe1}"
|
|
tcp-request inspect-delay 10ms
|
|
tcp-request content lua.test
|
|
http-request return status 503
|
|
|
|
} -start
|
|
|
|
client c0 -connect ${h1_fe1_sock} {
|
|
txreq
|
|
rxresp
|
|
expect resp.status == 503
|
|
} -run
|
|
|