2015-04-19 07:00:43 +00:00
#! /bin/bash
2022-04-30 20:05:42 +00:00
export YES_COLOR = 1
run_cap_test ${ lnav_test } -n \
2018-04-02 20:25:07 +00:00
-c ":switch-to-view pretty" \
${ test_dir } /logfile_cxx.0
2022-04-30 20:05:42 +00:00
# check for ipv4 strings
run_cap_test ${ lnav_test } -n -c ":switch-to-view pretty" <<EOF
2021-05-26 05:27:09 +00:00
2015-04-18T13:16:30.003 8.8.8.8 <foo>8.8.8.8</foo>9 8.8.8.8<1054 198.51.100.1546 544.9.8.7 98.542.241.99 19143.2.5.6
EOF
2015-04-19 07:00:43 +00:00
2020-05-20 05:13:52 +00:00
cat > test_pretty_in.1 <<EOF
2016-10-14 18:18:00 +00:00
2015-04-18T13:16:30.003 { "wrapper" : { "msg" : r"Hello,\nWorld!\n" } }
2020-05-20 05:13:52 +00:00
EOF
2022-04-30 20:05:42 +00:00
# pretty print can interpret quoted strings correctly
run_cap_test ${ lnav_test } -n -c ":switch-to-view pretty" -d /tmp/lnav.err test_pretty_in.1
2016-10-14 18:18:00 +00:00
2020-05-20 05:13:52 +00:00
cat > test_pretty_in.2 <<EOF
{ "wrapper" : [ { "message" :" \nselect Id from Account where id = \$sfid\n ^\nERROR at Row:1:Column:34\nline 1:34 no viable alternative at character ' $' " } ] }
EOF
2022-04-30 20:05:42 +00:00
# pretty print includes leading white space
run_cap_test ${ lnav_test } -n -c ":switch-to-view pretty" test_pretty_in.2
2020-05-20 05:13:52 +00:00
cat > test_pretty_in.3 <<EOF
Hello\\ nWorld\\ n
EOF
2022-04-30 20:05:42 +00:00
run_cap_test ${ lnav_test } -d /tmp/lnav.err -n -c ":switch-to-view pretty" test_pretty_in.3