forked from cylc/cylc-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path19-chatty.t
More file actions
executable file
·90 lines (79 loc) · 3 KB
/
19-chatty.t
File metadata and controls
executable file
·90 lines (79 loc) · 3 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
85
86
87
88
89
90
#!/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 job submission with a very chatty command.
# + Simulate "cylc jobs-submit" getting killed half way through.
export REQUIRE_PLATFORM='runner:at'
. "$(dirname "$0")/test_header"
set_test_number 15
# This test relies on jobs inheriting the scheduler environment: the job
# submission command bin/talkingnonsense reads COPYING from $CYLC_REPO_DIR
# and writes to $CYLC_WORKFLOW_RUN_DIR.
create_test_global_config "
[scheduler]
process pool timeout = PT10S
[platforms]
[[$CYLC_TEST_PLATFORM]]
job runner command template = talkingnonsense %(job)s
clean job submission environment = False
"
install_workflow "${TEST_NAME_BASE}" "${TEST_NAME_BASE}"
run_ok "${TEST_NAME_BASE}-validate" cylc validate "${WORKFLOW_NAME}"
workflow_run_ok "${TEST_NAME_BASE}-workflow-run" \
cylc play --debug --no-detach "${WORKFLOW_NAME}" --reference-test
# Logged killed jobs-submit command
cylc cat-log "${WORKFLOW_NAME}" | sed -n '
/\[jobs-submit \(cmd\|ret_code\|out\|err\)\]/,+2{
s/^.*\(\[jobs-submit\)/\1/p
}' >'log'
contains_ok 'log' <<'__OUT__'
[jobs-submit ret_code] -9
[jobs-submit err] killed on timeout (PT10S)
__OUT__
# Logged jobs that called talkingnonsense
sed -n 's/\(\[jobs-submit out\]\) .*\(|1\/\)/\1 \2/p' 'log' >'log2'
N=0
while read -r; do
TAIL="${REPLY#"${WORKFLOW_RUN_DIR}"/log/job/}"
TASK_JOB="${TAIL%/job}"
contains_ok 'log2' <<<"[jobs-submit out] |${TASK_JOB}|1|None"
((N += 1))
done <"${WORKFLOW_RUN_DIR}/talkingnonsense.out"
# Logged jobs that did not call talkingnonsense
for I in $(eval echo "{$N..9}"); do
contains_ok 'log2' <<<"[jobs-submit out] |1/nh${I}/01|1"
done
# Task pool in database contains the correct states
TEST_NAME="${TEST_NAME_BASE}-db-task-pool"
DB_FILE="${WORKFLOW_RUN_DIR}/log/db"
QUERY="SELECT cycle, name, status FROM task_states WHERE name LIKE 'nh%'"
run_ok "$TEST_NAME" sqlite3 "$DB_FILE" "$QUERY"
sort "${TEST_NAME}.stdout" > "${TEST_NAME}.stdout.sorted"
cmp_ok "${TEST_NAME}.stdout.sorted" << '__OUT__'
1|nh0|submit-failed
1|nh1|submit-failed
1|nh2|submit-failed
1|nh3|submit-failed
1|nh4|submit-failed
1|nh5|submit-failed
1|nh6|submit-failed
1|nh7|submit-failed
1|nh8|submit-failed
1|nh9|submit-failed
__OUT__
purge
exit