blob: 86f32b6c82b6f7800142bd7e8271047a2a01ff83 [file] [log] [blame]
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02001varnishtest "Set server FQDN via CLI crash"
2
3feature ignore_unknown_macro
4
Willy Tarreau04068a12019-10-22 13:06:59 +02005# for "set server <srv> fqdn"
Frédéric Lécailledc1a3bd2019-03-29 15:07:24 +01006#REGTEST_TYPE=bug
7
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02008# Do nothing. Is there only to create s1_* macros
9server s1 {
10} -start
11
12haproxy h1 -conf {
13 defaults
14 mode http
Willy Tarreauf6739232021-11-18 17:46:22 +010015 timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
16 timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
17 timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +020018
19 frontend myfrontend
20 bind "fd@${my_fe}"
21 default_backend test
22
23 backend test
24 server www1 ${s1_addr}:${s1_port}
25} -start
26
27haproxy h1 -cli {
28 send "set server test/www1 fqdn foo.fqdn"
Christopher Fauletc7b391a2021-06-15 12:01:29 +020029 expect ~ "set server <b>/<s> fqdn failed because no resolution is configured."
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +020030 send "show servers state test"
31 expect ~ "test 1 www1 ${s1_addr} .* - ${s1_port}"
32} -wait