mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
55df9c86c1
Also update onnode unit tests. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
30 lines
597 B
Bash
Executable File
30 lines
597 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
cmd="$ONNODE ok hostname"
|
|
|
|
define_test "$cmd" "2nd node disconnected, extra status columns"
|
|
|
|
ctdb_set_output <<EOF
|
|
|Node|IP|Disconnected|Banned|Disabled|Unhealthy|Stopped|Inactive|X1|X2|X3|X4|
|
|
|0|192.168.1.101|0|0|0|0|0|0|0|0|0|0|
|
|
|1|192.168.1.102|1|0|0|0|0|0|0|0|0|0|
|
|
|2|192.168.1.103|0|0|0|0|0|0|0|0|0|0|
|
|
|3|192.168.1.104|0|0|0|0|0|0|0|0|0|0|
|
|
EOF
|
|
|
|
required_result <<EOF
|
|
|
|
>> NODE: 192.168.1.101 <<
|
|
-n 192.168.1.101 hostname
|
|
|
|
>> NODE: 192.168.1.103 <<
|
|
-n 192.168.1.103 hostname
|
|
|
|
>> NODE: 192.168.1.104 <<
|
|
-n 192.168.1.104 hostname
|
|
EOF
|
|
|
|
simple_test $cmd
|