mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
a27198e8ca
... and a pile of other changes
123 lines
3.1 KiB
Bash
123 lines
3.1 KiB
Bash
#! /bin/bash
|
|
|
|
export YES_COLOR=1
|
|
|
|
# journald json log format is not working"
|
|
run_cap_test env TZ=UTC ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
${test_dir}/logfile_journald.json
|
|
|
|
# json log format is not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
${test_dir}/logfile_json.json
|
|
|
|
# json log format is not working"
|
|
run_cap_test ${lnav_test} -n -I ${test_dir} \
|
|
-c ':switch-to-view pretty' \
|
|
-c ':switch-to-view log' \
|
|
-c ':switch-to-view pretty' \
|
|
${test_dir}/logfile_json.json
|
|
|
|
# multi-line-format json log format is not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
${test_dir}/log.clog
|
|
|
|
# log levels not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
-c ';select * from test_log' \
|
|
-c ':write-csv-to -' \
|
|
${test_dir}/logfile_json.json
|
|
|
|
# log levels not working" < ${test_dir}/logfile_jso
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
-c ';select log_raw_text from test_log' \
|
|
-c ':write-raw-to -' \
|
|
${test_dir}/logfile_json.json
|
|
|
|
# write-raw-to with json is not working" <
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
-c ':goto 0' \
|
|
-c ':mark' \
|
|
-c ':goto 1' \
|
|
-c ':mark' \
|
|
-c ':goto 2' \
|
|
-c ':mark' \
|
|
-c ':write-raw-to -' \
|
|
${test_dir}/log.clog
|
|
|
|
# json output not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
-c ';select * from test_log' \
|
|
-c ':write-json-to -' \
|
|
${test_dir}/logfile_json.json
|
|
|
|
# timestamp-format not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
${test_dir}/logfile_json2.json
|
|
|
|
# log levels not working"
|
|
run_cap_test ${lnav_test} -n -d /tmp/lnav.err \
|
|
-I ${test_dir} \
|
|
-c ';select * from json_log2' \
|
|
-c ':write-csv-to -' \
|
|
${test_dir}/logfile_json2.json
|
|
|
|
# pipe-line-to is not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
-c ":goto 4" \
|
|
-c ":pipe-line-to sed -e 's/2013//g'" \
|
|
-c ":switch-to-view text" \
|
|
${test_dir}/logfile_json.json
|
|
|
|
# json log format is not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
${test_dir}/logfile_nested_json.json
|
|
|
|
# log levels not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
-c ';select * from ntest_log' \
|
|
-c ':write-csv-to -' \
|
|
${test_dir}/logfile_nested_json.json
|
|
|
|
# pipe-line-to is not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
-c ":goto 4" \
|
|
-c ":pipe-line-to sed -e 's/2013//g'" \
|
|
-c ":switch-to-view text" \
|
|
${test_dir}/logfile_nested_json.json
|
|
|
|
# json log3 format is not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
${test_dir}/logfile_json3.json
|
|
|
|
# json log3 format is not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-I ${test_dir} \
|
|
-c ';select * from json_log3' \
|
|
-c ':write-csv-to -' \
|
|
${test_dir}/logfile_json3.json
|
|
|
|
# json log format is not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-d /tmp/lnav.err \
|
|
-I ${test_dir} \
|
|
${test_dir}/logfile_invalid_json.json
|
|
|
|
# json log format is not working"
|
|
run_cap_test ${lnav_test} -n \
|
|
-d /tmp/lnav.err \
|
|
-I ${test_dir} \
|
|
${test_dir}/logfile_invalid_json2.json
|