From 684ae152a2ab1a922b83c313a41ef87f6cf31b53 Mon Sep 17 00:00:00 2001 From: Oliver Sanders Date: Fri, 22 Nov 2019 16:26:58 +0000 Subject: [PATCH] jinja2: test that cylc logger is available to jinja2 at load time --- tests/jinja2/11-logging.t | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 tests/jinja2/11-logging.t diff --git a/tests/jinja2/11-logging.t b/tests/jinja2/11-logging.t new file mode 100644 index 00000000000..f2a935f6c63 --- /dev/null +++ b/tests/jinja2/11-logging.t @@ -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 . +#------------------------------------------------------------------------------- +# 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