-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2691 from matthewrmshin/handle-poll-when-pbs-not-…
…avail pbs: handle poll if PBS client cannot connect
- Loading branch information
Showing
8 changed files
with
142 additions
and
13 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
Empty file.
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,56 @@ | ||
#!/bin/bash | ||
# THIS FILE IS PART OF THE CYLC SUITE ENGINE. | ||
# Copyright (C) 2008-2018 NIWA | ||
# | ||
# 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 poll PBS connection refused | ||
CYLC_TEST_IS_GENERIC=false | ||
. "$(dirname "$0")/test_header" | ||
|
||
BATCH_SYS_NAME="${TEST_NAME_BASE##??-}" | ||
BATCH_SYS_NAME="${BATCH_SYS_NAME%-cant-connect}" | ||
RC_PREF="[test battery][batch systems][${BATCH_SYS_NAME}]" | ||
export CYLC_TEST_BATCH_TASK_HOST=$( \ | ||
cylc get-global-config -i "${RC_PREF}host" 2>'/dev/null') | ||
export CYLC_TEST_BATCH_SITE_DIRECTIVES=$( \ | ||
cylc get-global-config -i "${RC_PREF}[directives]" 2>'/dev/null') | ||
if [[ -z "${CYLC_TEST_BATCH_TASK_HOST}" || "${CYLC_TEST_BATCH_TASK_HOST}" == None ]] | ||
then | ||
skip_all "\"[test battery][batch systems][${BATCH_SYS_NAME}]host\" not defined" | ||
fi | ||
|
||
set_test_number 3 | ||
install_suite "${TEST_NAME_BASE}" "${TEST_NAME_BASE}" | ||
if [[ "${CYLC_TEST_BATCH_TASK_HOST}" != 'localhost' ]]; then | ||
ssh -n "${CYLC_TEST_BATCH_TASK_HOST}" "mkdir -p 'cylc-run/${SUITE_NAME}/'" | ||
rsync -a 'lib' "${CYLC_TEST_BATCH_TASK_HOST}:cylc-run/${SUITE_NAME}/" | ||
fi | ||
|
||
run_ok "${TEST_NAME_BASE}-validate" cylc validate "${SUITE_NAME}" | ||
suite_run_ok "${TEST_NAME_BASE}-run" \ | ||
cylc run --reference-test --debug --no-detach "${SUITE_NAME}" | ||
sed -n 's/^.*\(\[jobs-poll err\] Connection refused\).*$/\1/p; | ||
s/^.*\(INFO - \[t1.1\] -(current:running)(polled) started\).*$/\1/p' \ | ||
"${SUITE_RUN_DIR}/log/suite/log" >'sed-log.out' | ||
contains_ok 'sed-log.out' <<'__LOG__' | ||
[jobs-poll err] Connection refused | ||
INFO - [t1.1] -(current:running)(polled) started | ||
__LOG__ | ||
|
||
if [[ "${CYLC_TEST_BATCH_TASK_HOST}" != 'localhost' ]]; then | ||
purge_suite_remote "${CYLC_TEST_BATCH_TASK_HOST}" "${SUITE_NAME}" | ||
fi | ||
purge_suite "${SUITE_NAME}" | ||
exit |
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,3 @@ | ||
#!/bin/bash | ||
echo 'Connection refused' >&2 | ||
exit 1 |
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,33 @@ | ||
#!/usr/bin/env python2 | ||
|
||
# THIS FILE IS PART OF THE CYLC SUITE ENGINE. | ||
# Copyright (C) 2008-2018 NIWA | ||
# | ||
# 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/>. | ||
|
||
import os | ||
|
||
|
||
from cylc.batch_sys_handlers.pbs import PBSHandler | ||
|
||
|
||
class MyPBSHandler(PBSHandler): | ||
"""For testing poll command connection refused.""" | ||
@staticmethod | ||
def get_poll_many_cmd(_): | ||
"""Always print PBSHandler.POLL_CANT_CONNECT_ERR to STDERR.""" | ||
return os.path.join(os.path.dirname(__file__), 'badqstat') | ||
|
||
|
||
BATCH_SYS_HANDLER = MyPBSHandler() |
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,3 @@ | ||
2015-12-17T16:00:01+13 INFO - Initial point: 1 | ||
2015-12-17T16:00:01+13 INFO - Final point: 1 | ||
2015-12-17T16:00:01+13 INFO - [t1.1] -triggered off [] |
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,26 @@ | ||
#!Jinja2 | ||
[cylc] | ||
[[reference test]] | ||
required run mode = live | ||
live mode suite timeout = PT5M | ||
|
||
[scheduling] | ||
[[dependencies]] | ||
graph = t1 | ||
|
||
[runtime] | ||
[[t1]] | ||
script = sleep 60 | ||
{% if "CYLC_TEST_BATCH_TASK_HOST" in environ and environ["CYLC_TEST_BATCH_TASK_HOST"] %} | ||
[[[remote]]] | ||
host={{environ["CYLC_TEST_BATCH_TASK_HOST"]}} | ||
{% endif %} | ||
[[[job]]] | ||
batch system = my_pbs | ||
execution time limit = PT2M | ||
execution polling intervals = PT20S | ||
[[[directives]]] | ||
{% if "CYLC_TEST_BATCH_SITE_DIRECTIVES" in environ and | ||
environ["CYLC_TEST_BATCH_SITE_DIRECTIVES"] %} | ||
{{environ["CYLC_TEST_BATCH_SITE_DIRECTIVES"]}} | ||
{% endif %} |