2018-08-22 14:02:00 +00:00
|
|
|
varnishtest "Lua: txn:get_priv() scope"
|
2018-12-19 10:50:17 +00:00
|
|
|
#REQUIRE_OPTIONS=LUA
|
|
|
|
|
2018-08-22 14:02:00 +00:00
|
|
|
feature ignore_unknown_macro
|
|
|
|
|
|
|
|
haproxy h1 -conf {
|
|
|
|
global
|
2019-03-29 15:13:48 +00:00
|
|
|
lua-load ${testdir}/h_txn_get_priv.lua
|
2018-08-22 14:02:00 +00:00
|
|
|
|
|
|
|
frontend fe1
|
|
|
|
mode http
|
2018-12-19 10:49:39 +00:00
|
|
|
${no-htx} option http-use-htx
|
2018-08-22 14:02:00 +00:00
|
|
|
bind "fd@${fe1}"
|
|
|
|
default_backend b1
|
|
|
|
|
|
|
|
http-response lua.bug
|
|
|
|
|
|
|
|
backend b1
|
|
|
|
mode http
|
2018-12-19 10:49:39 +00:00
|
|
|
${no-htx} option http-use-htx
|
2018-08-22 14:02:00 +00:00
|
|
|
http-request use-service lua.fakeserv
|
|
|
|
} -start
|
|
|
|
|
|
|
|
client c0 -connect ${h1_fe1_sock} {
|
|
|
|
txreq -url "/"
|
|
|
|
rxresp
|
|
|
|
expect resp.status == 201
|
|
|
|
txreq -url "/"
|
|
|
|
rxresp
|
|
|
|
expect resp.status == 201
|
|
|
|
}
|
|
|
|
|
|
|
|
client c0 -start
|
|
|
|
|
|
|
|
client c0 -wait
|