forked from cylc/cylc-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02-badhosts.t
More file actions
84 lines (70 loc) · 3.15 KB
/
02-badhosts.t
File metadata and controls
84 lines (70 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/env bash
# THIS FILE IS PART OF THE CYLC WORKFLOW ENGINE.
# Copyright (C) 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/>.
#-------------------------------------------------------------------------------
# Test remote initialisation still fails where a task has a platform
# with only unreachable hosts.
# n.b. Hosts picked for unlikelyhood of names matching any real host.
export REQUIRE_PLATFORM='loc:remote fs:indep comms:tcp'
. "$(dirname "$0")/test_header"
#-------------------------------------------------------------------------------
set_test_number 6
# Uses a fake background job runner to get around the single host restriction.
create_test_global_config "" "
[platforms]
[[badhostplatform]]
job runner = my_background
hosts = e9755ca30f5, 3c0b4799402
install target = ${CYLC_TEST_INSTALL_TARGET}
retrieve job logs = True
[[[selection]]]
method = definition order
[[goodhostplatform]]
hosts = ${CYLC_TEST_HOST}
install target = ${CYLC_TEST_INSTALL_TARGET}
retrieve job logs = True
[[mixedhostplatform]]
job runner = my_background
hosts = unreachable_host, ${CYLC_TEST_HOST}
install target = ${CYLC_TEST_INSTALL_TARGET}
retrieve job logs = True
[[[selection]]]
method = 'definition order'
"
#-------------------------------------------------------------------------------
# Uncomment to print config for manual testing of workflow.
# cylc config -i '[platforms]' >&2
install_workflow "${TEST_NAME_BASE}" "${TEST_NAME_BASE}"
# Install the fake background job runner.
cp -r "${TEST_SOURCE_DIR}/lib" "${WORKFLOW_RUN_DIR}"
run_ok "${TEST_NAME_BASE}-validate" cylc validate "${WORKFLOW_NAME}"
workflow_run_ok "${TEST_NAME_BASE}-run" \
cylc play --debug --no-detach "${WORKFLOW_NAME}"
LOGFILE="${WORKFLOW_RUN_DIR}/log/scheduler/log"
# Check that badhosttask has submit failed, but not good or mixed
named_grep_ok "${TEST_NAME_BASE}-badhost-task-submit-failed" \
"1/badhosttask.* submit-failed" "${LOGFILE}"
named_grep_ok "${TEST_NAME_BASE}-goodhost-suceeded" \
"1/mixedhosttask.* succeeded" "${LOGFILE}"
named_grep_ok "${TEST_NAME_BASE}-mixedhost-task-suceeded" \
"1/goodhosttask.* succeeded" "${LOGFILE}"
# Check that when a task fail badhosts associated with that task's platform
# are removed from the badhosts set.
named_grep_ok "${TEST_NAME_BASE}-remove-task-platform-bad-hosts-after-submit-fail" \
"initialisation did not complete (no hosts were reachable)" \
"${LOGFILE}"
purge
exit 0