forked from cylc/cylc-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01.lint-toml.t
More file actions
119 lines (100 loc) · 3.02 KB
/
01.lint-toml.t
File metadata and controls
119 lines (100 loc) · 3.02 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/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 linting with a toml file present.
. "$(dirname "$0")/test_header"
set_test_number 12
# Set Up:
rm etc/global.cylc
LINE_LEN_NO=$(python -c "from cylc.flow.scripts.lint import LINE_LEN_NO; print(LINE_LEN_NO)")
cat > flow.cylc <<__HERE__
# This is definitely not an OK flow.cylc file.
\t[scheduler]
[cylc]
[[dependencies]]
[runtime]
[[foo]]
inherit = hello
[[[job]]]
something\t
__HERE__
mkdir sites
cat > sites/niwa.cylc <<__HERE__
blatantly = not valid
__HERE__
# Control tests
TEST_NAME='it-lints-without-toml-file'
run_fail "${TEST_NAME}" cylc lint
TESTOUT="${TEST_NAME}.stdout"
named_grep_ok "${TEST_NAME_BASE}-returns-error-code" "S004" "${TESTOUT}"
named_grep_ok "${TEST_NAME_BASE}-returns-error-from-subdirectory" "niwa.cylc" "${TESTOUT}"
named_grep_ok "${TEST_NAME_BASE}-returns-728-upgrade-code" "^\[U" "${TESTOUT}"
# Add a pyproject.toml file
cat > pyproject.toml <<__HERE__
[tool.cylc.lint]
# Check against these rules
rulesets = [
"style"
]
# do not check for these errors
ignore = [
"S004"
]
# do not lint files matching
# these globs:
exclude = [
"sites/*.cylc",
]
__HERE__
# Test that results are different:
TEST_NAME='it-lints-with-toml-file'
run_fail "${TEST_NAME}" cylc lint
TESTOUT="${TEST_NAME}.stdout"
grep_fail "S004" "${TESTOUT}"
grep_fail "niwa.cylc" "${TESTOUT}"
grep_fail "^\[U" "${TESTOUT}"
# Add a max line length to the pyproject.toml.
echo "" >> pyproject.toml
echo "max-line-length = 4" >> pyproject.toml
cat > flow.cylc <<__HERE__
script = """
How long a line is too long a line
"""
__HERE__
TEST_NAME="${TEST_NAME_BASE}-it-fails-if-max-line-length-set"
run_fail "${TEST_NAME}" cylc lint
named_grep_ok "${TEST_NAME}-line-too-long-message" \
"\[${LINE_LEN_NO}\] flow.cylc:2: line > 4 characters." \
"${TEST_NAME}.stdout"
TEST_NAME='it-does-not-fail-if-max-line-length-set-but-ignored'
cat > pyproject.toml <<__HERE__
[tool.cylc.lint]
# Check against these rules
rulesets = [
"style"
]
# do not check for these errors
ignore = [
"${LINE_LEN_NO}"
]
exclude = [
"sites/*.cylc",
]
max-line-length = 1
__HERE__
run_ok "${TEST_NAME}" cylc lint
grep_ok "rules and found no issues" "${TEST_NAME}.stdout"