lnav/test/test_cmds.sh

1225 lines
40 KiB
Bash

#! /bin/bash
run_test ${lnav_test} -n \
-c ":goto 1" \
-c ":mark" \
-c ":hide-unmarked-lines" \
-c ":goto 0" \
${test_dir}/logfile_access_log.0
check_output "hide-unmarked-lines does not work?" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":unix-time" \
"${test_dir}/logfile_access_log.*"
check_error_output ":unix-time works without arg?" <<EOF
command-option:1: error: expecting a unix time value
EOF
run_test ${lnav_test} -n \
-c ":unix-time abc" \
"${test_dir}/logfile_access_log.*"
check_error_output ":unix-time works without arg?" <<EOF
command-option:1: error: invalid unix time -- abc
EOF
run_test env TZ=UTC ${lnav_test} -n \
-c ":unix-time 1612072409" \
"${test_dir}/logfile_access_log.*"
check_output ":unix-time does not convert time correctly?" <<EOF
Sun Jan 31 05:53:29 2021 +0000 UTC -- 1612072409
EOF
run_test env TZ=UTC ${lnav_test} -n \
-c ":current-time" \
"${test_dir}/logfile_access_log.*"
check_output ":current-time does not work?" <<EOF
Thu Jun 06 19:13:20 2013 +0000 UTC -- 1370546000
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":write-to" \
"${test_dir}/logfile_access_log.*"
check_error_output "able to write without a file name" <<EOF
command-option:1: error: expecting file name or '-' to write to the terminal
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ";SELECT 1 AS c1, 'Hello ' || char(10) || 'World!' AS c2" \
-c ":write-csv-to -" \
"${test_dir}/logfile_access_log.*"
check_output "writing CSV does not work" <<EOF
c1,c2
1,"Hello
World!"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ";SELECT 1 AS c1, 'Hello, World!' AS c2" \
-c ":write-table-to -" \
"${test_dir}/logfile_access_log.*"
check_output "writing columns does not work?" <<EOF
┏━━┳━━━━━━━━━━━━━┓
┃c1┃ c2 ┃
┡━━╇━━━━━━━━━━━━━┩
│ 1│Hello, World!│
└━━┴━━━━━━━━━━━━━┘
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ";SELECT 1 AS c1, 'Hello, World!' AS c2" \
-c ":write-raw-to -" \
"${test_dir}/logfile_access_log.*"
check_output "writing raw DB does not work?" <<EOF
1 Hello, World!
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":write-view-to -" \
"${test_dir}/logfile_access_log.0"
check_output "writing raw log does not work?" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":filter-expr timeslice(:log_time_msecs, 'bad') is not null" \
"${test_dir}/logfile_multiline.0"
check_error_output "filter-expr with bad SQL works?" <<EOF
command-option:1: error: filter expression failed with: unable to parse time slice value: bad -- Unrecognized input
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":filter-expr :log_text LIKE '%How are%'" \
"${test_dir}/logfile_multiline.0"
check_output "filter-expr for multiline not working" <<EOF
2009-07-20 22:59:27,672:DEBUG:Hello, World!
How are you today?
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":filter-expr not json_contains(:log_tags, '#bad')" \
-c ":goto 0" \
-c ":tag #bad" \
"${test_dir}/logfile_access_log.0"
check_output "filter-expr for multiline not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":filter-expr :sc_bytes > 2000" \
"${test_dir}/logfile_access_log.*"
check_output "filter-expr not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":filter-expr :sc_bytes # ff" \
"${test_dir}/logfile_access_log.*"
check_error_output "filter-expr error not working" <<EOF
command-option:1: error: unrecognized token: "#"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":goto 0" \
-c ":close" \
-c ":goto 0" \
"${test_dir}/logfile_access_log.*"
check_output "close not sticking" <<EOF
10.112.81.15 - - [15/Feb/2013:06:00:31 +0000] "-" 400 0 "-" "-"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":goto 0" \
-c ":hide-file" \
${test_dir}/logfile_access_log.*
check_output "hide-file with log file does not work" <<EOF
10.112.81.15 - - [15/Feb/2013:06:00:31 +0000] "-" 400 0 "-" "-"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":goto 0" \
-c ":next-mark error" \
-c ":prev-location" \
${test_dir}/logfile_access_log.0
check_output "prev-location is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":goto 0" \
-c ":next-mark error" \
-c ":prev-location" \
-c ":next-location" \
${test_dir}/logfile_access_log.0
check_output "next-location is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":filter-in vmk" \
-c ":disable-filter vmk" \
${test_dir}/logfile_access_log.0
check_output "disable after :filter-in is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":filter-in vmk" \
-c ":rebuild" \
-c ":reset-session" \
-c ":rebuild" \
${test_dir}/logfile_access_log.0
check_output "filter-in vmk is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n -d /tmp/lnav.err \
-c ":goto 0" \
-c ":filter-out vmk" \
-c ":toggle-filtering" \
${test_dir}/logfile_access_log.0
check_output "toggle-filtering is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":switch-to-view help" \
${test_dir}/logfile_access_log.0
check_output "switch-to-view help is not working" < ${top_srcdir}/test/expected_help.txt
run_test ${lnav_test} -n \
-c ":hide-fields foobar" \
${test_dir}/logfile_access_log.0
check_error_output "hide-fields with unknown" <<EOF
command-option:1: error: unknown field(s) -- foobar
EOF
run_test ${lnav_test} -n \
-c ":hide-fields cs_uri_stem" \
${test_dir}/logfile_access_log.0
check_output "hide-fields with uri" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET ⋮ HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET ⋮ HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET ⋮ HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":hide-fields access_log.c_ip access_log.cs_uri_stem" \
${test_dir}/logfile_access_log.0
check_output "hide-fields with IP and uri" <<EOF
⋮ - - [20/Jul/2009:22:59:26 +0000] "GET ⋮ HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
⋮ - - [20/Jul/2009:22:59:29 +0000] "GET ⋮ HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
⋮ - - [20/Jul/2009:22:59:29 +0000] "GET ⋮ HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -f- -n < ${test_dir}/formats/scripts/multiline-echo.lnav
check_output "executing stdin failed" <<EOF
Hello, World!
Goodbye, World!
EOF
run_test ${lnav_test} -n \
-c ":config /bad/option" \
${test_dir}/logfile_access_log.0
check_error_output "config bad option" <<EOF
command-option:1: error: unknown configuration option -- /bad/option
EOF
check_output "config bad option" <<EOF
EOF
run_test ${lnav_test} -nvq \
-c ":config /ui/clock-format" \
${test_dir}/logfile_access_log.0
check_error_output "config clock-format 1" <<EOF
EOF
check_output "config clock-format 1" <<EOF
/ui/clock-format = "%a %b %d %H:%M:%S %Z"
EOF
run_test ${lnav_test} -nvq \
-c ":config /ui/clock-format" \
-c ":config /ui/clock-format abc" \
-c ":config /ui/clock-format" \
${test_dir}/logfile_access_log.0
check_error_output "config clock-format 2" <<EOF
EOF
check_output "config clock-format 2" <<EOF
/ui/clock-format = "%a %b %d %H:%M:%S %Z"
info: changed config option -- /ui/clock-format
/ui/clock-format = "abc"
EOF
run_test ${lnav_test} -nvq \
-c ":config /ui/clock-format abc" \
-c ":reset-config /ui/clock-format" \
-c ":config /ui/clock-format" \
${test_dir}/logfile_access_log.0
check_error_output "config clock-format 3" <<EOF
EOF
check_output "config clock-format 3" <<EOF
info: changed config option -- /ui/clock-format
info: reset option -- /ui/clock-format
/ui/clock-format = "%a %b %d %H:%M:%S %Z"
EOF
run_test ${lnav_test} -n \
-c "|${test_dir}/toplevel.lnav 123 456 789" \
${test_dir}/logfile_access_log.0
check_error_output "include toplevel.lnav" <<EOF
EOF
check_output "include toplevel.lnav" <<EOF
toplevel here 123 456
nested here nested.lnav abc 789
EOF
run_test ${lnav_test} -n \
-f "nonexistent.lnav" \
${test_dir}/logfile_access_log.0
check_error_output "include nonexistent" <<EOF
command-option:1: error: unknown script -- nonexistent.lnav -- file not found
EOF
run_test ${lnav_test} -n \
-c ":adjust-log-time 2010-01-01T00:00:00" \
${test_dir}/logfile_access_log.0
check_output "adjust-log-time is not working" <<EOF
192.168.202.254 - - [01/Jan/2010:00:00:00 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [01/Jan/2010:00:00:03 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [01/Jan/2010:00:00:03 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":adjust-log-time -1h" \
${test_dir}/logfile_access_log.0
check_output "adjust-log-time is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:21:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:21:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:21:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":goto 1" \
${test_dir}/logfile_access_log.0
check_output "goto 1 is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":goto -1" \
${test_dir}/logfile_access_log.0
check_output "goto -1 is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":goto 0" \
-c ":goto 2 hours later" \
${test_dir}/logfile_syslog_with_mixed_times.0
check_output "goto 3:45 is not working?" <<EOF
Sep 13 03:12:04 Tim-Stacks-iMac kernel[0]: vm_compressor_record_warmup (9478314 - 9492476)
Sep 13 03:12:04 Tim-Stacks-iMac kernel[0]: AppleBCM5701Ethernet [en0]: 0 0 memWrInd fBJP_Wakeup_Timer
Sep 13 01:25:39 Tim-Stacks-iMac kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 60000
Sep 13 03:12:04 Tim-Stacks-iMac kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff8428276000, 0xffffff8428336000
Sep 13 03:12:58 Tim-Stacks-iMac kernel[0]: *** kernel exceeded 500 log message per second limit - remaining messages this second discarded ***
Sep 13 03:46:03 Tim-Stacks-iMac kernel[0]: IOThunderboltSwitch<0xffffff803f4b3000>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
Sep 13 03:46:03 Tim-Stacks-iMac kernel[0]: vm_compressor_flush - starting
Sep 13 03:46:03 Tim-Stacks-iMac kernel[0]: AppleBCM5701Ethernet [en0]: 0 0 memWrInd fBJP_Wakeup_Timer
Sep 13 03:13:16 Tim-Stacks-iMac kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 60000
Sep 13 03:46:03 Tim-Stacks-iMac kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff838f1fc000, 0xffffff838f2bc000
EOF
run_test ${lnav_test} -n \
-c ":goto 0" \
-c ":goto 3:45" \
${test_dir}/logfile_syslog_with_mixed_times.0
check_output "goto 3:45 is not working?" <<EOF
Sep 13 03:46:03 Tim-Stacks-iMac kernel[0]: IOThunderboltSwitch<0xffffff803f4b3000>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
Sep 13 03:46:03 Tim-Stacks-iMac kernel[0]: vm_compressor_flush - starting
Sep 13 03:46:03 Tim-Stacks-iMac kernel[0]: AppleBCM5701Ethernet [en0]: 0 0 memWrInd fBJP_Wakeup_Timer
Sep 13 03:13:16 Tim-Stacks-iMac kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 60000
Sep 13 03:46:03 Tim-Stacks-iMac kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff838f1fc000, 0xffffff838f2bc000
EOF
run_test ${lnav_test} -n \
-c ":goto invalid" \
${test_dir}/logfile_access_log.0
check_error_output "goto invalid is working" <<EOF
command-option:1: error: expecting line number/percentage, timestamp, or relative time
EOF
check_output "goto invalid is not working" <<EOF
EOF
run_test ${lnav_test} -n \
-c ":goto 1" \
-c ":relative-goto -1" \
${test_dir}/logfile_access_log.0
check_output "relative-goto -1 is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":goto 0" \
-c ":next-mark error" \
${test_dir}/logfile_access_log.0
check_output "next-mark error is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":goto -1" \
-c ":prev-mark error" \
${test_dir}/logfile_access_log.0
check_output "prev-mark error is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":goto 0" \
-c ":next-mark foobar" \
${test_dir}/logfile_access_log.0
check_error_output "goto invalid is not working" <<EOF
command-option:2: error: unknown bookmark type
EOF
check_output "invalid mark-type is working" <<EOF
EOF
run_test ${lnav_test} -n \
-c ":filter-in vmk" \
${test_dir}/logfile_access_log.0
check_output "filter-in vmk is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":filter-in vmk" \
-c ":reset-session" \
-c ":filter-in cgi" \
${test_dir}/logfile_access_log.0
check_output "filter-in vmk is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":filter-in today" \
${test_dir}/logfile_multiline.0
check_output "filter-in multiline is not working" <<EOF
2009-07-20 22:59:27,672:DEBUG:Hello, World!
How are you today?
EOF
run_test ${lnav_test} -n \
-c ":filter-out vmk" \
${test_dir}/logfile_access_log.0
check_output "filter-out vmk is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":filter-out today" \
${test_dir}/logfile_multiline.0
check_output "filter-out multiline is not working" <<EOF
2009-07-20 22:59:30,221:ERROR:Goodbye, World!
EOF
cp ${test_dir}/logfile_multiline.0 logfile_append.0
chmod ug+w logfile_append.0
run_test ${lnav_test} -n \
-c ";update generic_log set log_mark=1" \
-c ":filter-in Goodbye" \
-c ":append-to logfile_append.0" \
-c ":rebuild" \
logfile_append.0
check_output "filter-in append is not working" <<EOF
2009-07-20 22:59:30,221:ERROR:Goodbye, World!
2009-07-20 22:59:30,221:ERROR:Goodbye, World!
EOF
cp ${test_dir}/logfile_multiline.0 logfile_append.0
chmod ug+w logfile_append.0
run_test ${lnav_test} -n -d /tmp/lnav-search.err \
-c "/goodbye" \
-c ";update generic_log set log_mark=1" \
-c ":filter-in Goodbye" \
-c ":append-to logfile_append.0" \
-c ":rebuild" \
-c ":next-mark search" \
logfile_append.0
check_output "search after filter-in is not working" <<EOF
2009-07-20 22:59:30,221:ERROR:Goodbye, World!
EOF
cp ${test_dir}/logfile_multiline.0 logfile_append.0
chmod ug+w logfile_append.0
run_test ${lnav_test} -n \
-c ":filter-out Goodbye" \
-c ":shexec echo '2009-07-20 22:59:30,221:ERROR:Goodbye, World!' >> logfile_append.0" \
-c ":rebuild" \
logfile_append.0
check_output "filter-out append is not working" <<EOF
2009-07-20 22:59:27,672:DEBUG:Hello, World!
How are you today?
EOF
run_test ${lnav_test} -n \
-c ":filter-in avahi" \
-c ":delete-filter avahi" \
-c ":filter-in avahi" \
-c ":filter-in dnsmasq" \
${test_dir}/logfile_filter.0
check_output "multiple filter-in is not working" <<EOF
Dec 6 13:01:34 ubu-mac avahi-daemon[786]: Joining mDNS multicast group on interface virbr0.IPv4 with address 192.168.122.1.
Dec 6 13:01:34 ubu-mac avahi-daemon[786]: New relevant interface virbr0.IPv4 for mDNS.
Dec 6 13:01:34 ubu-mac avahi-daemon[786]: Registering new address record for 192.168.122.1 on virbr0.IPv4.
Dec 6 13:01:34 ubu-mac dnsmasq[1840]: started, version 2.68 cachesize 150
Dec 6 13:01:34 ubu-mac dnsmasq[1840]: compile time options: IPv6 GNU-getopt DBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth
Dec 6 13:01:34 ubu-mac dnsmasq-dhcp[1840]: DHCP, IP range 192.168.122.2 -- 192.168.122.254, lease time 1h
Dec 6 13:01:34 ubu-mac dnsmasq-dhcp[1840]: DHCP, sockets bound exclusively to interface virbr0
Dec 6 13:01:34 ubu-mac dnsmasq[1840]: reading /etc/resolv.conf
Dec 6 13:01:34 ubu-mac dnsmasq[1840]: using nameserver 192.168.1.1#53
Dec 6 13:01:34 ubu-mac dnsmasq[1840]: read /etc/hosts - 5 addresses
Dec 6 13:01:34 ubu-mac dnsmasq[1840]: read /var/lib/libvirt/dnsmasq/default.addnhosts - 0 addresses
Dec 6 13:01:34 ubu-mac dnsmasq-dhcp[1840]: read /var/lib/libvirt/dnsmasq/default.hostsfile
EOF
run_test ${lnav_test} -n \
-c ":switch-to-view text" \
-c ":filter-in World" \
${test_dir}/logfile_plain.0
check_output "plain text filter-in is not working" <<EOF
Hello, World!
Goodbye, World!
EOF
run_test ${lnav_test} -n \
-c ":switch-to-view text" \
-c ":filter-out World" \
${test_dir}/logfile_plain.0
check_output "plain text filter-out is not working" <<EOF
How are you?
EOF
TOO_MANY_FILTERS=""
for i in `seq 1 32`; do
TOO_MANY_FILTERS="$TOO_MANY_FILTERS -c ':filter-out $i'"
done
run_test eval ${lnav_test} -d /tmp/lnav.err -n \
$TOO_MANY_FILTERS \
${test_dir}/logfile_filter.0
check_error_output "able to create too many filters?" <<EOF
command-option:32: error: filter limit reached, try combining filters with a pipe symbol (e.g. foo|bar)
EOF
run_test ${lnav_test} -n \
-c ":close" \
${test_dir}/logfile_access_log.0
check_output "close is not working" <<EOF
EOF
run_test ${lnav_test} -n \
-c ":close" \
-c ":close" \
${test_dir}/logfile_access_log.0
check_error_output "double close works" <<EOF
command-option:2: error: no log files loaded
EOF
check_output "double close is working" <<EOF
EOF
run_test ${lnav_test} -n \
-c ":open" \
${test_dir}/logfile_access_log.0
check_error_output "open does not require arg?" <<EOF
command-option:1: error: expecting file name to open
EOF
run_test ${lnav_test} -n \
-c ":close" \
-c ":open ${test_dir}/logfile_multiline.0" \
${test_dir}/logfile_access_log.0
check_output "open is not working" <<EOF
2009-07-20 22:59:27,672:DEBUG:Hello, World!
How are you today?
2009-07-20 22:59:30,221:ERROR:Goodbye, World!
EOF
run_test ${lnav_test} -n \
-c ":close" \
-c ":open /non-existent" \
${test_dir}/logfile_access_log.0
check_error_output "open non-existent is working" <<EOF
command-option:2: error: cannot stat file: /non-existent -- No such file or directory
EOF
check_output "open non-existent is not working" <<EOF
EOF
run_test ${lnav_test} -n \
-c ":goto 1" \
-c ":write-screen-to -" \
"${test_dir}/logfile_access_log.0"
check_output "write-screen-to not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ";select * from access_log" \
-c ':write-json-to -' \
${test_dir}/logfile_access_log.0
check_output "write-json-to is not working" <<EOF
[
{
"log_line": 0,
"log_part": null,
"log_time": "2009-07-20 22:59:26.000",
"log_idle_msecs": 0,
"log_level": "info",
"log_mark": 0,
"log_comment": null,
"log_tags": null,
"log_filters": null,
"c_ip": "192.168.202.254",
"cs_method": "GET",
"cs_referer": "-",
"cs_uri_query": null,
"cs_uri_stem": "/vmw/cgi/tramp",
"cs_user_agent": "gPXE/0.9.7",
"cs_username": "-",
"cs_version": "HTTP/1.0",
"sc_bytes": 134,
"sc_status": 200,
"cs_host": null
},
{
"log_line": 1,
"log_part": null,
"log_time": "2009-07-20 22:59:29.000",
"log_idle_msecs": 3000,
"log_level": "error",
"log_mark": 0,
"log_comment": null,
"log_tags": null,
"log_filters": null,
"c_ip": "192.168.202.254",
"cs_method": "GET",
"cs_referer": "-",
"cs_uri_query": null,
"cs_uri_stem": "/vmw/vSphere/default/vmkboot.gz",
"cs_user_agent": "gPXE/0.9.7",
"cs_username": "-",
"cs_version": "HTTP/1.0",
"sc_bytes": 46210,
"sc_status": 404,
"cs_host": null
},
{
"log_line": 2,
"log_part": null,
"log_time": "2009-07-20 22:59:29.000",
"log_idle_msecs": 0,
"log_level": "info",
"log_mark": 0,
"log_comment": null,
"log_tags": null,
"log_filters": null,
"c_ip": "192.168.202.254",
"cs_method": "GET",
"cs_referer": "-",
"cs_uri_query": null,
"cs_uri_stem": "/vmw/vSphere/default/vmkernel.gz",
"cs_user_agent": "gPXE/0.9.7",
"cs_username": "-",
"cs_version": "HTTP/1.0",
"sc_bytes": 78929,
"sc_status": 200,
"cs_host": null
}
]
EOF
run_test ${lnav_test} -n \
-c ";select * from access_log" \
-c ':write-jsonlines-to -' \
${test_dir}/logfile_access_log.0
check_output "write-jsonlines-to is not working" <<EOF
{"log_line":0,"log_part":null,"log_time":"2009-07-20 22:59:26.000","log_idle_msecs":0,"log_level":"info","log_mark":0,"log_comment":null,"log_tags":null,"log_filters":null,"c_ip":"192.168.202.254","cs_method":"GET","cs_referer":"-","cs_uri_query":null,"cs_uri_stem":"/vmw/cgi/tramp","cs_user_agent":"gPXE/0.9.7","cs_username":"-","cs_version":"HTTP/1.0","sc_bytes":134,"sc_status":200,"cs_host":null}
{"log_line":1,"log_part":null,"log_time":"2009-07-20 22:59:29.000","log_idle_msecs":3000,"log_level":"error","log_mark":0,"log_comment":null,"log_tags":null,"log_filters":null,"c_ip":"192.168.202.254","cs_method":"GET","cs_referer":"-","cs_uri_query":null,"cs_uri_stem":"/vmw/vSphere/default/vmkboot.gz","cs_user_agent":"gPXE/0.9.7","cs_username":"-","cs_version":"HTTP/1.0","sc_bytes":46210,"sc_status":404,"cs_host":null}
{"log_line":2,"log_part":null,"log_time":"2009-07-20 22:59:29.000","log_idle_msecs":0,"log_level":"info","log_mark":0,"log_comment":null,"log_tags":null,"log_filters":null,"c_ip":"192.168.202.254","cs_method":"GET","cs_referer":"-","cs_uri_query":null,"cs_uri_stem":"/vmw/vSphere/default/vmkernel.gz","cs_user_agent":"gPXE/0.9.7","cs_username":"-","cs_version":"HTTP/1.0","sc_bytes":78929,"sc_status":200,"cs_host":null}
EOF
# By setting the LNAVSECURE mode before executing the command, we will disable
# the access to the write-json-to command and the output would just be the
# actual display of select query rather than json output.
export LNAVSECURE=1
run_test ${lnav_test} -n \
-c ";select * from access_log" \
-c ':write-json-to -' \
${test_dir}/logfile_access_log.0
check_error_output "We managed to bypass LNAVSECURE mode" <<EOF
command-option:2: error: write-json-to -- unavailable in secure mode
EOF
unset LNAVSECURE
run_test ${lnav_test} -n \
-c ";update generic_log set log_mark=1" \
-c ":pipe-to sed -e 's/World!/Bork!/g' -e 's/2009//g'" \
${test_dir}/logfile_multiline.0
check_output "pipe-to is not working" <<EOF
-07-20 22:59:27,672:DEBUG:Hello, Bork!
How are you today?
-07-20 22:59:30,221:ERROR:Goodbye, Bork!
EOF
run_test ${lnav_test} -n \
-c ":echo Hello, World!" \
-c ":goto 2" \
-c ":pipe-line-to sed -e 's/World!/Bork!/g' -e 's/2009//g'" \
${test_dir}/logfile_multiline.0
check_output "pipe-line-to is not working" <<EOF
Hello, World!
-07-20 22:59:30,221:ERROR:Goodbye, Bork!
EOF
run_test ${lnav_test} -n \
-c ":goto 0" \
-c ":pipe-line-to echo \$cs_uri_stem \$sc_status" \
${test_dir}/logfile_access_log.0
check_output "pipe-line-to env vars are not working" <<EOF
/vmw/cgi/tramp 200
EOF
run_test ${lnav_test} -n \
-c ":switch-to-view pretty" \
${test_dir}/textfile_json_one_line.0
check_output "pretty-printer is not working for text files" <<EOF
{
"foo bar" : null,
"array" : [
1,
2,
3
],
"obj" : {
"one" : 1,
"two" : true
}
}
EOF
run_test ${lnav_test} -n \
-c ":switch-to-view pretty" \
${test_dir}/textfile_json_one_line.0
check_output "pretty-printer is not working for indented text files" <<EOF
{
"foo bar": null,
"array": [
1,
2,
3
],
"obj": {
"one": 1,
"two": true
}
}
EOF
run_test ${lnav_test} -n \
-c ":switch-to-view pretty" \
${test_dir}/textfile_quoted_json.0
check_output "pretty-printer is not working for quoted text" <<EOF
''
{
"foo bar": null,
"array": [
1,
2,
3
],
"obj": {
"one": 1,
"two": true
}
}
''
EOF
run_test ${lnav_test} -n \
-c ":switch-to-view pretty" \
${test_dir}/logfile_vami.0
check_output "pretty-printer is not working" <<EOF
2015-03-12T23:16:52.071:INFO:com.root:Response :
<?xml version="1.0"?>
<response>
<locale>en-US</locale>
<requestid>ipInfo</requestid>
<value id="ipv4Gateway" actions="enabled">198.51.100.253</value>
<value id="ipv6Gateway" actions="enabled"/>
<value id="ipv6Enabled" actions="enabled">true</value>
<value id="ipv4Enabled" actions="enabled">true</value>
<value id="name" actions="enabled">nic1</value>
<value id="v4config" actions="enabled">
<value id="defaultGateway" actions="enabled">0.0.0.0</value>
<value id="updateable" actions="enabled">True</value>
<value id="prefix" actions="enabled">22</value>
<value id="mode" actions="enabled">dhcp</value>
<value id="address" actions="enabled">198.51.100.110</value>
<value id="interface" actions="enabled">nic1</value>
</value>
<value id="v6config" actions="enabled">
<value id="defaultGateway" actions="enabled">fe80::214:f609:19f7:6bf1</value>
<value id="updateable" actions="enabled">True</value>
<value id="interface" actions="enabled">nic1</value>
<value id="dhcp" actions="enabled">False</value>
<value id="autoconf" actions="enabled">False</value>
<value id="addresses" actions="enabled">
<value id="origin" actions="enabled">other</value>
<value id="status" actions="enabled">preferred</value>
<value id="prefix" actions="enabled">64</value>
<value id="address" actions="enabled">fe80::250:56ff:feaa:5abf</value>
</value>
</value>
<value id="interfaceInfo" actions="enabled">
<value id="status" actions="enabled">up</value>
<value id="mac" actions="enabled">00:50:56:aa:5a:bf</value>
<value id="name" actions="enabled">nic1</value>
</value>
</response>
EOF
run_test ${lnav_test} -n \
-c ":goto 0" \
-c ":switch-to-view pretty" \
${test_dir}/logfile_pretty.0
check_output "pretty-printer is not working" <<EOF
Apr 7 00:49:42 Tim-Stacks-iMac kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 1-Gigabit, Full-duplex, Symmetric flow-control, Debug [
796d,
2301,
0de1,
0300,
cde1,
3800
]
Apr 7 05:49:53 Tim-Stacks-iMac.local GoogleSoftwareUpdateDaemon[17212]: -[KSUpdateCheckAction performAction]
KSUpdateCheckAction running KSServerUpdateRequest: <KSOmahaServerUpdateRequest:0x511f30
server=
<KSOmahaServer:0x510d80>
url="https://tools.google.com/service/update2"
runningFetchers=0
tickets=1
activeTickets=1
rollCallTickets=1
body=
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<o:gupdate xmlns:o="http://www.google.com/update2/request" protocol="2.0" version="KeystoneDaemon-1.2.0.7709" ismachine="1" requestid="{0DFDBCD1-5E29-4DFC-BD99-31A2397198FE}">
<o:os platform="mac" version="MacOSX" sp="10.10.2_x86_64h"></o:os>
<o:app appid="com.google.Keystone" version="1.2.0.7709" lang="en-us" installage="180" brand="GGLG">
<o:ping r="1" a="1"></o:ping>
<o:updatecheck></o:updatecheck>
</o:app>
</o:gupdate>
>
Apr 7 07:31:56 Tim-Stacks-iMac.local VirtualBox[36403]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.2 instead of 10.10.2. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
Call location:
Apr 7 07:31:56 Tim-Stacks-iMac.local VirtualBox[36403]: 0 CarbonCore 0x00007fff8a9b3d9b ___Gestalt_SystemVersion_block_invoke + 113
Apr 7 07:31:56 Tim-Stacks-iMac.local VirtualBox[36403]: 1 libdispatch.dylib 0x00007fff8bc84c13 _dispatch_client_callout + 8
Apr 7 07:32:56 Tim-Stacks-iMac.local logger[234]: Bad data {
abc,
123,
456
)
}]
EOF
run_test ${lnav_test} -n \
-c ":set-min-log-level error" \
${test_dir}/logfile_access_log.0
check_output "set-min-log-level is not working" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":highlight foobar" \
-c ":clear-highlight foobar" \
${test_dir}/logfile_access_log.0
check_error_output "clear-highlight is not working?" <<EOF
EOF
run_test ${lnav_test} -n \
-c ":clear-highlight foobar" \
${test_dir}/logfile_access_log.0
check_error_output "clear-highlight did not report an error?" <<EOF
command-option:1: error: highlight does not exist -- foobar
EOF
run_test ${lnav_test} -n \
-c ":zoom-to 4-hour" \
${test_dir}/textfile_json_indented.0
check_output "histogram is not working?" <<EOF
{
"foo bar": null,
"array": [
1,
2,
3
],
"obj": {
"one": 1,
"two": true
}
}
EOF
cp ${test_dir}/logfile_rollover.1 logfile_rollover.1.live
chmod ug+w logfile_rollover.1.live
touch -t 200711030923 logfile_rollover.1.live
run_test ${lnav_test} -n \
-c ":shexec echo 'Jan 3 09:23:38 veridian automount[16442]: attempting to mount entry /auto/opt' >> logfile_rollover.1.live" \
-c ":rebuild" \
-c ":switch-to-view histogram" \
-c ":goto 0" \
logfile_rollover.1.live
check_output "rollover is not working with histogram" <<EOF
Thu Nov 03 09:20:00 1 normal 2 errors 0 warnings 0 marks
Thu Nov 03 09:45:00 1 normal 0 errors 0 warnings 0 marks
Fri Feb 03 09:20:00 0 normal 1 errors 0 warnings 0 marks
Wed Jan 03 09:20:00 1 normal 0 errors 0 warnings 0 marks
EOF
run_test ${lnav_test} -n \
-c ":goto 0" \
-c ":goto next year" \
logfile_rollover.1.live
check_output ":goto next year is not working" <<EOF
Feb 3 09:23:38 veridian automount[7998]: lookup(file): lookup for foobar failed
Jan 3 09:23:38 veridian automount[16442]: attempting to mount entry /auto/opt
EOF
touch -t 200711030923 ${srcdir}/logfile_syslog.0
run_test ${lnav_test} -n \
-c ":switch-to-view histogram" \
-c ":zoom-to 4-hour" \
${test_dir}/logfile_syslog.0
check_output "histogram is not working?" <<EOF
Sat Nov 03 08:00:00 2 normal 2 errors 0 warnings 0 marks
EOF
run_test ${lnav_test} -n \
-c ":switch-to-view histogram" \
-c ":zoom-to 1-day" \
${test_dir}/logfile_syslog.0
check_output "histogram is not working?" <<EOF
Sat Nov 03 00:00:00 2 normal 2 errors 0 warnings 0 marks
EOF
run_test ${lnav_test} -n \
-c ":filter-in sudo" \
-c ":switch-to-view histogram" \
-c ":zoom-to 4-hour" \
${test_dir}/logfile_syslog.0
check_output "histogram is not working?" <<EOF
Sat Nov 03 08:00:00 1 normal 0 errors 0 warnings 0 marks
EOF
run_test ${lnav_test} -n \
-c ":mark-expr" \
${test_dir}/logfile_syslog.0
check_error_output ":mark-expr works without an expression?" <<EOF
command-option:1: error: expecting an SQL expression
EOF
run_test ${lnav_test} -n \
-c ":mark-expr :log_procname lik" \
${test_dir}/logfile_syslog.0
check_error_output ":mark-expr works with a bad expression?" <<EOF
command-option:1: error: near "lik": syntax error
EOF
run_test ${lnav_test} -n \
-c ":mark-expr :cs_uri_stem LIKE '%vmk%'" \
-c ":write-to -" \
${test_dir}/logfile_access_log.0
check_output "mark-expr is not working?" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":goto 0" \
-c ":mark" \
-c ":switch-to-view histogram" \
${test_dir}/logfile_syslog.0
check_output "histogram is not working?" <<EOF
Sat Nov 03 09:20:00 1 normal 2 errors 0 warnings 1 marks
Sat Nov 03 09:45:00 1 normal 0 errors 0 warnings 0 marks
EOF
run_test ${lnav_test} -n \
-c ":zoom-to bad" \
${test_dir}/logfile_access_log.0
check_error_output "bad zoom level is not rejected?" <<EOF
command-option:1: error: invalid zoom level -- bad
EOF
run_test ${lnav_test} -n \
-f ${test_dir}/multiline.lnav \
${test_dir}/logfile_access_log.0
check_output "multiline commands do not work?" <<EOF
Hello: Jules
EOF
printf "Hello, World!" | run_test ${lnav_test} -n \
-c ":switch-to-view text"
test_num=`expr ${test_num} \+ 1`
check_output "stdin with no line feed failed" <<EOF
Hello, World!
EOF
run_test ${lnav_test} -Nnv \
-c ":hide-lines-before 2009-07-20T22:59:29" \
-c ":hide-lines-before"
check_output "hide-lines-before with no args does not work?" <<EOF
info: hiding lines before 2009-07-20 22:59:29.000
info: hiding lines before 2009-07-20 22:59:29.000
EOF
run_test ${lnav_test} -Nnv \
-c ":hide-lines-after 2009-07-20T22:59:29" \
-c ":hide-lines-after"
check_output "hide-lines-after with no args does not work?" <<EOF
info: hiding lines after 2009-07-20 22:59:29.000
info: hiding lines after 2009-07-20 22:59:29.000
EOF
run_test ${lnav_test} -Nnv \
-c ":hide-lines-before 2009-07-20T22:00:29" \
-c ":hide-lines-after 2009-07-20T22:59:29" \
-c ":hide-lines-before"
check_output "hide-lines-after with no args does not work?" <<EOF
info: hiding lines before 2009-07-20 22:00:29.000
info: hiding lines after 2009-07-20 22:59:29.000
info: hiding lines before 2009-07-20 22:00:29.000 and after 2009-07-20 22:59:29.000
EOF
run_test ${lnav_test} -n \
-c ":hide-lines-before 2009-07-20T22:59:29" \
${test_dir}/logfile_access_log.0
check_output "hide-lines-before does not work?" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":hide-lines-after 2009-07-20T22:59:26" \
${test_dir}/logfile_access_log.0
check_output "hide-lines-after does not work?" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
EOF
run_test ${lnav_test} -n \
-c ":hide-lines-after 2009-07-20T22:59:26" \
-c ":show-lines-before-and-after" \
${test_dir}/logfile_access_log.0
check_output "hide-lines-after does not work?" <<EOF
192.168.202.254 - - [20/Jul/2009:22:59:26 +0000] "GET /vmw/cgi/tramp HTTP/1.0" 200 134 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkboot.gz HTTP/1.0" 404 46210 "-" "gPXE/0.9.7"
192.168.202.254 - - [20/Jul/2009:22:59:29 +0000] "GET /vmw/vSphere/default/vmkernel.gz HTTP/1.0" 200 78929 "-" "gPXE/0.9.7"
EOF
export XYZ="World"
run_test ${lnav_test} -n \
-c ':echo Hello, \$XYZ!' \
${test_dir}/logfile_access_log.0
check_output "echo hello" <<EOF
Hello, \$XYZ!
EOF
export XYZ="World"
run_test ${lnav_test} -n \
-c ':echo -n Hello, ' \
-c ':echo World!' \
${test_dir}/logfile_access_log.0
check_output "echo hello" <<EOF
Hello, World!
EOF
run_test ${lnav_test} -n \
-c ':echo Hello, $XYZ!' \
${test_dir}/logfile_access_log.0
check_output "eval echo hello" <<EOF
Hello, World!
EOF