-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bug where bad platforms found at job init are not reset.
added test which includes break return list of all hosts consumed in a platform group.
- Loading branch information
Showing
4 changed files
with
97 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
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,60 @@ | ||
# 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/>. | ||
"""Integration testing for platforms functionality. | ||
""" | ||
|
||
|
||
async def test_foo(flow, scheduler, run, mock_glbl_cfg, validate, monkeypatch): | ||
global_conf = ''' | ||
[platforms] | ||
[[myplatform]] | ||
hosts = broken | ||
[[anotherbad]] | ||
hosts = broken2 | ||
[platform groups] | ||
[[mygroup]] | ||
platforms = myplatform, anotherbad''' | ||
mock_glbl_cfg('cylc.flow.platforms.glbl_cfg', global_conf) | ||
|
||
wid = flow({ | ||
"scheduling": { | ||
"graph": { | ||
"R1": "foo" | ||
} | ||
}, | ||
"runtime": { | ||
"root": {}, | ||
"print-config": { | ||
"script": "cylc config" | ||
}, | ||
"foo": { | ||
"script": "sleep 10", | ||
"platform": "mygroup", | ||
"submission retry delays": '3*PT5S' | ||
} | ||
} | ||
}) | ||
validate(wid) | ||
schd = scheduler(wid, paused_start=False, run_mode='live') | ||
async with run(schd) as log: | ||
itask = schd.pool.get_tasks()[0] | ||
|
||
# Avoid breaking on trying to create log file path: | ||
schd.task_job_mgr._create_job_log_path = lambda *_: None | ||
schd.task_job_mgr.bad_hosts = {'broken', 'broken2'} | ||
res = schd.task_job_mgr._prep_submit_task_job(schd.workflow, itask) | ||
assert res is True | ||
assert not schd.task_job_mgr.bad_hosts |