1
1
mirror of https://github.com/tstack/lnav.git synced 2024-10-26 21:19:54 +03:00
lnav/test/test_config.sh

70 lines
2.2 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
export HOME="./test-config"
rm -rf ./test-config
mkdir -p $HOME/.config
run_test ${lnav_test} -nN \
-c ":config /global/foo bar"
check_output "config write global var" <<EOF
EOF
run_test ${lnav_test} -nN \
-c ":config /global/foo"
check_output "config read global var" <<EOF
/global/foo = "foo"
EOF
run_test ${lnav_test} -n \
-c ":config /ui/theme-defs/default/styles/text/color #f" \
${test_dir}/logfile_access_log.0
check_error_output "config bad color" <<EOF
error:command-option:1:Could not parse color: #f
EOF
2021-02-01 09:43:19 +03:00
run_test env TMPDIR=tmp ${lnav_test} -n \
-c ':config /tuning/archive-manager/min-free-space abc' \
${srcdir}/logfile_syslog.0
check_error_output "invalid min-free-space allowed?" <<EOF
command-option:1: error: expecting an integer, found: abc
EOF
run_test ${lnav_test} -n \
-c ":config /ui/theme baddy" \
${test_dir}/logfile_access_log.0
check_error_output "config bad theme" <<EOF
error:command-option:1:unknown theme -- baddy
EOF
run_test ${lnav_test} -n \
-I ${test_dir}/bad-config2 \
${test_dir}/logfile_access_log.0
check_error_output "config bad theme" <<EOF
2021-05-26 08:27:09 +03:00
warning:{test_dir}/bad-config2/formats/invalid-config/config.malformed.json:line 2
2019-05-04 17:07:39 +03:00
warning: unexpected path --
warning: /ui
warning: accepted paths --
2020-05-07 17:08:59 +03:00
warning: \$schema The URI of the schema for this file -- Specifies the type of this file
warning: tuning -- Internal settings
2020-05-07 17:08:59 +03:00
warning: ui -- User-interface settings
warning: global -- Global variable definitions
2021-05-26 08:27:09 +03:00
warning:{test_dir}/bad-config2/formats/invalid-config/config.truncated.json:line 2
2019-05-04 17:07:39 +03:00
warning: unexpected path --
warning: /ui
warning: accepted paths --
2020-05-07 17:08:59 +03:00
warning: \$schema The URI of the schema for this file -- Specifies the type of this file
warning: tuning -- Internal settings
2020-05-07 17:08:59 +03:00
warning: ui -- User-interface settings
warning: global -- Global variable definitions
2021-05-26 08:27:09 +03:00
error:{test_dir}/bad-config2/formats/invalid-config/config.malformed.json:3:invalid json -- parse error: object key and value must be separated by a colon (':')
2019-05-04 17:07:39 +03:00
"ui": "theme", "abc", "def": "" }
(right here) ------^
2021-05-26 08:27:09 +03:00
error:{test_dir}/bad-config2/formats/invalid-config/config.truncated.json: invalid json -- parse error: premature EOF
EOF