mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
50e00b3e52
Also update related test Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
42 lines
1.1 KiB
Bash
Executable File
42 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "Release 1 IP, 10 connections killed, 1 fails"
|
|
|
|
setup_ctdb
|
|
|
|
ctdb_get_1_public_address |
|
|
while read dev ip bits ; do
|
|
ip addr add "${ip}/${bits}" dev "$dev"
|
|
|
|
# Setup 10 fake connections...
|
|
count=10
|
|
out=""
|
|
nl="
|
|
"
|
|
i=0
|
|
while [ $i -lt $count ] ; do
|
|
echo "${ip}:445 10.254.254.1:1230${i}"
|
|
# Expected output for killing this connection
|
|
out="${out}${out:+${nl}}Killing TCP connection 10.254.254.1:1230${i} ${ip}:445"
|
|
i=$(($i + 1))
|
|
done >"$FAKE_NETSTAT_TCP_ESTABLISHED_FILE"
|
|
|
|
# Note that the fake TCP killing done by the "ctdb killtcp" stub
|
|
# can only kill conections in the file, so killing this connection
|
|
# will never succeed so it will look like a time out.
|
|
FAKE_NETSTAT_TCP_ESTABLISHED="${ip}:445|10.254.254.1:43210"
|
|
|
|
ok <<EOF
|
|
Killing TCP connection 10.254.254.1:43210 ${ip}:445
|
|
$out
|
|
Waiting for 1 connections to be killed for IP ${ip}
|
|
Waiting for 1 connections to be killed for IP ${ip}
|
|
Waiting for 1 connections to be killed for IP ${ip}
|
|
Timed out killing tcp connections for IP $ip (1 remaining)
|
|
EOF
|
|
|
|
simple_test $dev $ip $bits
|
|
done
|