Frédéric Lécaille | 5afb3cf | 2018-08-21 15:04:23 +0200 | [diff] [blame] | 1 | varnishtest "Set server FQDN via CLI crash" |
| 2 | |
| 3 | feature ignore_unknown_macro |
| 4 | |
Willy Tarreau | 04068a1 | 2019-10-22 13:06:59 +0200 | [diff] [blame] | 5 | # for "set server <srv> fqdn" |
| 6 | #REQUIRE_VERSION=1.8 |
Frédéric Lécaille | dc1a3bd | 2019-03-29 15:07:24 +0100 | [diff] [blame] | 7 | #REGTEST_TYPE=bug |
| 8 | |
Frédéric Lécaille | 5afb3cf | 2018-08-21 15:04:23 +0200 | [diff] [blame] | 9 | # Do nothing. Is there only to create s1_* macros |
| 10 | server s1 { |
| 11 | } -start |
| 12 | |
| 13 | haproxy h1 -conf { |
| 14 | defaults |
| 15 | mode http |
Willy Tarreau | f673923 | 2021-11-18 17:46:22 +0100 | [diff] [blame^] | 16 | timeout connect "${HAPROXY_TEST_TIMEOUT-5s}" |
| 17 | timeout client "${HAPROXY_TEST_TIMEOUT-5s}" |
| 18 | timeout server "${HAPROXY_TEST_TIMEOUT-5s}" |
Frédéric Lécaille | 5afb3cf | 2018-08-21 15:04:23 +0200 | [diff] [blame] | 19 | |
| 20 | frontend myfrontend |
| 21 | bind "fd@${my_fe}" |
| 22 | default_backend test |
| 23 | |
| 24 | backend test |
| 25 | server www1 ${s1_addr}:${s1_port} |
| 26 | } -start |
| 27 | |
| 28 | haproxy h1 -cli { |
| 29 | send "set server test/www1 fqdn foo.fqdn" |
Christopher Faulet | c7b391a | 2021-06-15 12:01:29 +0200 | [diff] [blame] | 30 | expect ~ "set server <b>/<s> fqdn failed because no resolution is configured." |
Frédéric Lécaille | 5afb3cf | 2018-08-21 15:04:23 +0200 | [diff] [blame] | 31 | send "show servers state test" |
| 32 | expect ~ "test 1 www1 ${s1_addr} .* - ${s1_port}" |
| 33 | } -wait |