haproxy/reg-tests/server/cli_delete_server.vtc
Willy Tarreau 48d5ef363d REGTESTS: restrict execution to a single thread group
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.
2025-06-30 18:54:35 +02:00

66 lines
1.8 KiB
Plaintext

# This script is to test the ability to remove servers, unless they are
# referenced by some elements from the configuration.
#
varnishtest "Delete server via cli"
feature cmd "$HAPROXY_PROGRAM -cc 'version_atleast(2.5-dev0)'"
feature ignore_unknown_macro
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@${feS}"
acl s1_full srv_sess_rate(test/s1) gt 50
default_backend test
backend test
use-server s3 unless { always_false }
server s1 ${s1_addr}:${s1_port} # referenced in ACL
server s2 ${s1_addr}:${s1_port} check # referenced in track
server s3 ${s1_addr}:${s1_port} track s2 # referenced in use-server
server s4 ${s1_addr}:${s1_port} # removable server
} -start
haproxy h1 -cli {
# non existent backend
send "del server foo/s1"
expect ~ "No such backend."
# non existent server
send "del server test/other"
expect ~ "No such server."
# server referenced in ACL
send "del server test/s1"
expect ~ "This server cannot be removed at runtime due to other configuration elements pointing to it."
# tracked server
send "del server test/s2"
expect ~ "This server cannot be removed at runtime due to other configuration elements pointing to it."
# tracked server
send "del server test/s3"
expect ~ "This server cannot be removed at runtime due to other configuration elements pointing to it."
# server in running mode
send "del server test/s4"
expect ~ "Only servers in maintenance mode can be deleted."
send "disable server test/s4"
expect ~ ".*"
# valid command
send "del server test/s4"
expect ~ "Server deleted."
}