mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-04 10:03:41 +02:00
When threads are enabled and running on a machine with multiple CCX or multiple nodes, thread groups are now enabled since 3.3-dev2, causing load-balancing algorithms to randomly fail due to incoming connections spreading over multiple groups and using different load balancing indexes. Let's just force "thread-groups 1" into all configs when threads are enabled to avoid this.
43 lines
873 B
Plaintext
43 lines
873 B
Plaintext
varnishtest "url_dec converter Test"
|
|
|
|
|
|
feature ignore_unknown_macro
|
|
|
|
server s1 {
|
|
rxreq
|
|
txresp
|
|
} -repeat 2 -start
|
|
|
|
haproxy h1 -conf {
|
|
global
|
|
.if feature(THREAD)
|
|
thread-groups 1
|
|
.endif
|
|
|
|
defaults
|
|
mode http
|
|
timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
|
|
frontend fe
|
|
bind "fd@${fe}"
|
|
|
|
http-request set-var(txn.url) url
|
|
http-response set-header url_dec0 "%[var(txn.url),url_dec]"
|
|
http-response set-header url_dec1 "%[var(txn.url),url_dec(1)]"
|
|
|
|
default_backend be
|
|
|
|
backend be
|
|
server s1 ${s1_addr}:${s1_port}
|
|
} -start
|
|
|
|
client c1 -connect ${h1_fe_sock} {
|
|
txreq -url "/bla+%20?foo%3Dbar%2B42+42%20"
|
|
rxresp
|
|
expect resp.http.url_dec0 == "/bla+ ?foo=bar+42 42 "
|
|
expect resp.http.url_dec1 == "/bla ?foo=bar+42 42 "
|
|
expect resp.status == 200
|
|
} -run
|