-
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.
jinja2: test that cylc logger is available to jinja2 at load time
- Loading branch information
1 parent
b7a3de9
commit 684ae15
Showing
1 changed file
with
37 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/bash | ||
# THIS FILE IS PART OF THE CYLC SUITE ENGINE. | ||
# Copyright (C) 2008-2019 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 that the Cylc logger is available to Jinja2 at load time. | ||
|
||
. "$(dirname "$0")/test_header" | ||
set_test_number 2 | ||
init_suite "${TEST_NAME_BASE}" <<'__SUITERC__' | ||
#!Jinja2 | ||
{% from "cylc.flow" import LOG %} | ||
{% do LOG.debug("Hello World!") %} | ||
[scheduling] | ||
[[graph]] | ||
R1 = foo | ||
__SUITERC__ | ||
|
||
TEST_NAME="${TEST_NAME_BASE}-validate" | ||
run_ok "${TEST_NAME}" cylc validate "${SUITE_NAME}" --debug | ||
grep_ok 'Hello World!' "${TEST_NAME}.stderr" # debug lines go to stderr | ||
|
||
exit |