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
|
#!/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/>.
#-------------------------------------------------------------------------------
# cylc help and basic invocation.
. "$(dirname "$0")/test_header"
# Number of tests depends on the number of 'cylc' commands.
set_test_number 37
# Top help
run_ok "${TEST_NAME_BASE}-0" cylc
run_ok "${TEST_NAME_BASE}-help" cylc help
run_ok "${TEST_NAME_BASE}-help-id" cylc help id
run_ok "${TEST_NAME_BASE}-help-all" cylc help all
grep_ok 'trigger ...' "${TEST_NAME_BASE}-help-all.stdout"
run_ok "${TEST_NAME_BASE}---help" cylc --help
for FILE in \
"${TEST_NAME_BASE}-help.stdout" \
"${TEST_NAME_BASE}---help.stdout"
do
cmp_ok "${FILE}" "${TEST_NAME_BASE}-0.stdout"
done
# Sub-command - no match
run_fail "${TEST_NAME_BASE}-aardvark" cylc aardvark
cmp_ok "${TEST_NAME_BASE}-aardvark.stderr" <<'__STDERR__'
cylc aardvark: unknown utility. Abort.
Type "cylc help all" for a list of utilities.
__STDERR__
# Sub-command - many matches
run_fail "${TEST_NAME_BASE}-get" cylc get
cmp_ok "${TEST_NAME_BASE}-get.stderr" <<'__STDERR__'
cylc get: is ambiguous for:
cylc get-resources
cylc get-workflow-contact
cylc get-workflow-version
__STDERR__
# Sub-command help
run_ok "${TEST_NAME_BASE}-validate--help" cylc validate --help
run_ok "${TEST_NAME_BASE}-validate-h" cylc validate -h
run_ok "${TEST_NAME_BASE}-help-validate" cylc help validate
run_ok "${TEST_NAME_BASE}-help-va" cylc help va
for FILE in \
"${TEST_NAME_BASE}-validate--help.stdout" \
"${TEST_NAME_BASE}-validate-h.stdout" \
"${TEST_NAME_BASE}-help-validate.stdout" \
"${TEST_NAME_BASE}-help-va.stdout"
do
cmp_ok "${FILE}" "${TEST_NAME_BASE}-validate--help.stdout"
done
# Alias help
run_ok "${TEST_NAME_BASE}-broadcast-h" cylc broadcast -h
run_ok "${TEST_NAME_BASE}-bcast-h" cylc bcast -h
cmp_ok "${TEST_NAME_BASE}-broadcast-h.stdout" "${TEST_NAME_BASE}-bcast-h.stdout"
# Dead end
run_fail "${TEST_NAME_BASE}-broadcast-h" cylc check-software
# Help with IDs and the Licence
run_ok "${TEST_NAME_BASE}-help-id" cylc help id
grep_ok 'Every Installed Cylc workflow has an ID' "${TEST_NAME_BASE}-help-id.stdout"
run_ok "${TEST_NAME_BASE}-help-licence" cylc help licence
grep_ok 'GNU GENERAL PUBLIC LICENSE' "${TEST_NAME_BASE}-help-licence.stdout"
# Version
run_ok "${TEST_NAME_BASE}-version" cylc version
run_ok "${TEST_NAME_BASE}---version" cylc --version
run_ok "${TEST_NAME_BASE}-V" cylc -V
run_ok "${TEST_NAME_BASE}-version.stdout" \
test -n "${TEST_NAME_BASE}-version.stdout"
cmp_ok "${TEST_NAME_BASE}-version.stdout" "${TEST_NAME_BASE}---version.stdout"
cmp_ok "${TEST_NAME_BASE}-version.stdout" "${TEST_NAME_BASE}-V.stdout"
# Supplementary help
run_ok "${TEST_NAME_BASE}-all" cylc help all
run_ok "${TEST_NAME_BASE}-id" cylc help id
# Check "cylc version --long" output is correct.
cylc version --long | head -n 1 > long1
echo "$(cylc version) ($(command -v cylc))" > long2
cmp_ok long1 long2
# --help with no DISPLAY
while read -r ITEM; do
run_ok "${TEST_NAME_BASE}-no-display-${ITEM}--help" \
env DISPLAY= cylc "${ITEM#cylc-}" --help
done < <(cd "${CYLC_REPO_DIR}/bin" && ls 'cylc-'*)
exit
|