forked from cylc/cylc-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
auto stop-restart: allow force mode to override scheduled restart
- Loading branch information
1 parent
32d78a9
commit 4d8b623
Showing
2 changed files
with
114 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
#!/bin/bash | ||
# THIS FILE IS PART OF THE CYLC SUITE ENGINE. | ||
# Copyright (C) 2008-2018 NIWA & British Crown (Met Office) & Contributors. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
#------------------------------------------------------------------------------- | ||
# Check that "Force Mode" can override a scheduler "Normal Mode" restart. | ||
. "$(dirname "$0")/test_header" | ||
export CYLC_TEST_HOST_2=$( \ | ||
cylc get-global-config -i '[test battery]remote host with shared fs' \ | ||
2>'/dev/null') | ||
if [[ -z "${CYLC_TEST_HOST_2}" ]]; then | ||
skip_all '"[test battery]remote host with shared fs": not defined' | ||
fi | ||
export CYLC_TEST_HOST_1="$(hostname)" | ||
|
||
BASE_GLOBALRC=' | ||
[cylc] | ||
health check interval = PT5S | ||
[[events]] | ||
abort on inactivity = True | ||
abort on timeout = True | ||
inactivity = PT2M | ||
timeout = PT2M | ||
' | ||
|
||
TEST_DIR="$HOME/cylc-run/" init_suite "${TEST_NAME_BASE}" <<< ' | ||
[cylc] | ||
abort if any task fails = True | ||
[scheduling] | ||
initial cycle point = 2000 | ||
[[dependencies]] | ||
[[[P1Y]]] | ||
graph = foo[-P1Y] => foo | ||
' | ||
|
||
create_test_globalrc '' " | ||
${BASE_GLOBALRC} | ||
[suite servers] | ||
run hosts = ${CYLC_TEST_HOST_1} | ||
" | ||
|
||
set_test_number 7 | ||
#------------------------------------------------------------------------------- | ||
# run suite | ||
cylc run "${SUITE_NAME}" | ||
poll ! test -f "${SUITE_RUN_DIR}/.service/contact" | ||
sleep 1 | ||
FILE=$(cylc cat-log "${SUITE_NAME}" -m p |xargs readlink -f) | ||
|
||
# condemn the host, the suite will schedule restart in PT60S | ||
create_test_globalrc '' " | ||
${BASE_GLOBALRC} | ||
[suite servers] | ||
run hosts = ${CYLC_TEST_HOST_1}, ${CYLC_TEST_HOST_2} | ||
condemned hosts = ${CYLC_TEST_HOST_1} | ||
auto restart delay = -PT60S # results in +PT60S delay | ||
" | ||
log_scan "${TEST_NAME_BASE}-stop" "${FILE}" 40 1 \ | ||
'The Cylc suite host will soon become un-available' \ | ||
'Suite will restart in 60s' | ||
|
||
# condemn the host in "Force Mode", this should cancel the scheduled restart | ||
create_test_globalrc '' " | ||
${BASE_GLOBALRC} | ||
[suite servers] | ||
condemned hosts = ${CYLC_TEST_HOST_1}! | ||
" | ||
log_scan "${TEST_NAME_BASE}-stop" "${FILE}" 40 1 \ | ||
'This suite will be shutdown as the suite host is' \ | ||
'When another suite host becomes available the suite can' \ | ||
'Scheduled automatic restart canceled' \ | ||
'Suite shutting down - REQUEST(NOW)' \ | ||
'DONE' | ||
|
||
cylc stop --now --now 2>/dev/null # incase test fails | ||
poll test -f "${SUITE_RUN_DIR}/.service/contact" | ||
purge_suite "${SUITE_NAME}" | ||
|
||
exit |