tests/complex: Remove CTDB_SAMBA_SKIP_SHARE_CHECK test
authorMartin Schwenke <martin@meltin.net>
Mon, 28 Oct 2013 05:14:40 +0000 (16:14 +1100)
committerAmitay Isaacs <amitay@gmail.com>
Tue, 29 Oct 2013 06:14:56 +0000 (17:14 +1100)
This is adequately covered by eventscripts unit tests
50.samba.monitor.105.sh and 50.samba.monitor.106.sh.

This test is broken if CTDB_SAMBA_CHECK_PORTS is not specified in the
CTDB configuration.  Fixing it is hard and involves adding a more
complex stub for testparm.  We already have that in the eventscript
unit tests above.

Signed-off-by: Martin Schwenke <martin@meltin.net>
tests/complex/02_ctdb_samba_skip_share_check.sh [deleted file]

diff --git a/tests/complex/02_ctdb_samba_skip_share_check.sh b/tests/complex/02_ctdb_samba_skip_share_check.sh
deleted file mode 100755 (executable)
index 9097a78..0000000
+++ /dev/null
@@ -1,134 +0,0 @@
-#!/bin/bash
-
-test_info()
-{
-    cat <<EOF
-Verify that the CTDB_SAMBA_SKIP_SHARE_CHECK configuration option is respected.
-
-We create a file in /etc/ctdb/rc.local.d/ that creates a function
-called testparm.  This effectively hooks the testparm command,
-allowing us to provide a fake list of shares to check or not check.
-
-We create another file in the same directory to set and unset the
-CTDB_SAMBA_SKIP_SHARE_CHECK option, utilising the shell's "readonly"
-built-in to ensure that our value for the option is used.
-
-Prerequisites:
-
-* An active CTDB cluster with at least 2 nodes with public addresses.
-
-* Test must be run on a real or virtual cluster rather than against
-  local daemons.  There is nothing intrinsic to this test that forces
-  this - it is because tests run against local daemons don't use the
-  regular eventscripts.
-
-Steps:
-
-1.  Verify that the cluster is healthy.
-2.  Determine a timeout for state changes by adding MonitorInterval
-    and EventScriptTimeout.
-3.  Create a temporary directory using mktemp, remember the name in
-    $mydir.
-4.  Create an executable file /etc/ctdb/rc.local.d/fake-testparm that
-    contains a definiton for the function testparm, which prints a
-    share definition for a directory $mydir/foo (which does not
-    currently exist).
-5.  Create an executable file
-    /etc/ctdb/rc.local.d/samba-skip-share-check that replaces the
-    loadconfig() function by one with equivalent functionality, but
-    which also sets CTDB_SAMBA_SKIP_SHARE_CHECK="no" if loading
-    "ctdb" configuration.
-6.  Wait for a maximum of MonitorInterval seconds for the node to
-    become unhealthy.
-7.  Create the directory $mydir/foo.
-8.  Wait for a maximum of MonitorInterval seconds for the node to
-    become healthy.
-9.  Modify /etc/ctdb/rc.local.d/samba-skip-share-check so that it sets
-    CTDB_SAMBA_SKIP_SHARE_CHECK="yes".
-10. Remove the directory $mydir/foo.
-11. Wait for  a monitor event and confirm that the the node is still
-    healthy.
-
-Expected results:
-
-* When an SAMBA share directory is missing CTDB should only mark a node
-  as unhealthy if CTDB_SAMBA_SKIP_SHARE_CHECK is set to "no".
-EOF
-}
-
-. "${TEST_SCRIPTS_DIR}/integration.bash"
-
-set -e
-
-ctdb_test_init "$@"
-
-ctdb_test_check_real_cluster
-
-cluster_is_healthy
-
-select_test_node_and_ips
-
-# We need this for later, so we know how long to sleep.
-# We need this for later, so we know how long to sleep.
-try_command_on_node $test_node $CTDB getvar MonitorInterval
-monitor_interval=${out#*= }
-try_command_on_node $test_node $CTDB getvar EventScriptTimeout
-event_script_timeout=${out#*= }
-
-monitor_timeout=$(($monitor_interval + $event_script_timeout))
-
-echo "Using timeout of ${monitor_timeout}s (MonitorInterval + EventScriptTimeout)..."
-
-mydir=$(onnode -q $test_node mktemp -d)
-rc_local_d="${CTDB_BASE:-/etc/ctdb}/rc.local.d"
-
-my_exit_hook ()
-{
-    ctdb_test_eventscript_uninstall
-    onnode -q $test_node "rm -f $mydir/*"
-    onnode -q $test_node "rmdir --ignore-fail-on-non-empty $mydir"
-    onnode -q $test_node "rm -f \"$rc_local_d/\"*"
-    onnode -q $test_node "rmdir --ignore-fail-on-non-empty \"$rc_local_d\""
-}
-
-ctdb_test_exit_hook_add my_exit_hook
-
-ctdb_test_eventscript_install
-
-foo_dir=$mydir/foo
-
-try_command_on_node -v $test_node "mkdir -p \"$rc_local_d\""
-
-f="$rc_local_d/fake-testparm"
-echo "Installing \"$f\"..."
-# Yes, the quoting is very tricky.  We want $foo_dir and $f expanded when
-# we echo the function definition but we don't want any of the other
-# items expanded until the function is run.
-try_command_on_node $test_node "echo 'function testparm () { tp=\$(which testparm 2>/dev/null) ; if [ -n \"\$2\" ] ; then echo path = '\"$foo_dir\"' ; else \$tp \"\$@\" ; fi ; }' >\"$f\" ; chmod +x \"$f\""
-
-n="$rc_local_d/samba-skip-share-check"
-n_contents='loadconfig() {
-    _loadconfig "$@"
-
-    if [ "$1" = "ctdb" ] ; then
-        CTDB_SAMBA_SKIP_SHARE_CHECK=no
-    fi
-}
-'
-echo "Installing \"$n\" with CTDB_SAMBA_SKIP_SHARE_CHECK=no..."
-try_command_on_node $test_node "echo '$n_contents' >\"$n\" ; chmod +x \"$n\""
-
-wait_until_node_has_status $test_node unhealthy $monitor_timeout
-
-try_command_on_node -v $test_node "mkdir $foo_dir"
-
-wait_until_node_has_status $test_node healthy $monitor_timeout
-
-echo "Re-installing \"$n\" with CTDB_SAMBA_SKIP_SHARE_CHECK=yes..."
-try_command_on_node $test_node "echo '${n_contents/=no/=yes}' >\"$n\" ; chmod +x \"$n\""
-
-try_command_on_node -v $test_node "rmdir $foo_dir"
-
-wait_for_monitor_event $test_node
-
-wait_until_node_has_status $test_node healthy 1