Tests - eventscripts - new Samba tests to test TCP port checking
authorMartin Schwenke <martin@meltin.net>
Mon, 22 Aug 2011 06:10:44 +0000 (16:10 +1000)
committerMartin Schwenke <martin@meltin.net>
Tue, 30 Aug 2011 06:51:55 +0000 (16:51 +1000)
Signed-off-by: Martin Schwenke <martin@meltin.net>
tests/eventscripts/simple/50.samba.monitor.107.sh [new file with mode: 0755]
tests/eventscripts/simple/50.samba.monitor.108.sh [new file with mode: 0755]
tests/eventscripts/simple/50.samba.monitor.109.sh [new file with mode: 0755]

diff --git a/tests/eventscripts/simple/50.samba.monitor.107.sh b/tests/eventscripts/simple/50.samba.monitor.107.sh
new file mode 100755 (executable)
index 0000000..e4151f3
--- /dev/null
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+. "${EVENTSCRIPTS_TESTS_DIR}/common.sh"
+
+define_test "port 139 down, default tcp checker, debug"
+
+# This has to go before the setup, otherwise it will write a dud file.
+export CTDB_DEBUGLEVEL=4
+
+setup_samba
+tcp_port_down 139
+
+required_result 1 <<EOF
+ERROR: samba tcp port 139 is not responding
+DEBUG: "ctdb checktcpport 139" was able to bind to port
+EOF
+
+simple_test
diff --git a/tests/eventscripts/simple/50.samba.monitor.108.sh b/tests/eventscripts/simple/50.samba.monitor.108.sh
new file mode 100755 (executable)
index 0000000..d06a16f
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+. "${EVENTSCRIPTS_TESTS_DIR}/common.sh"
+
+define_test "port 139 down, ctdb checktcpport not implemented"
+
+# TODO: create nmap stub
+export CTDB_NOT_IMPLEMENTED="checktcpport"
+
+setup_samba
+tcp_port_down 139
+
+required_result 1 "ERROR: samba tcp port 139 is not responding"
+
+simple_test
diff --git a/tests/eventscripts/simple/50.samba.monitor.109.sh b/tests/eventscripts/simple/50.samba.monitor.109.sh
new file mode 100755 (executable)
index 0000000..b913741
--- /dev/null
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+. "${EVENTSCRIPTS_TESTS_DIR}/common.sh"
+
+define_test "port 139 down, ctdb checktcpport not implemented, debug"
+
+ctdb_not_implemented "checktcpport"
+
+# This has to go before the setup, otherwise it will write a dud file.
+export CTDB_DEBUGLEVEL=4
+
+setup_nmap_output_filter
+
+setup_samba
+tcp_port_down 139
+
+required_result 1 <<EOF
+DEBUG: ctdb_check_ports - checker ctdb not implemented
+DEBUG: output from checker was:
+DEBUG: ctdb checktcpport 445 (exited with 0) with output:
+$ctdb_not_implemented
+ERROR: samba tcp port 139 is not responding
+DEBUG: nmap -n -oG - -PS 127.0.0.1 -p 445,139 shows this output:
+DEBUG: # Nmap 5.21 scan initiated DATE as: nmap -n -oG - -PS 127.0.0.1 -p 445,139
+DEBUG: Host: 127.0.0.1 ()      Status: Up
+DEBUG: Host: 127.0.0.1 ()      Ports: 445/open/tcp//microsoft-ds///, 139/closed/tcp//netbios-ssn///
+DEBUG: # Nmap done at DATE -- 1 IP address (1 host up) scanned in 0.04 seconds
+EOF
+
+simple_test