lnav/test/test_line_buffer.sh

60 lines
1.5 KiB
Bash

#! /bin/bash
cp ${test_dir}/logfile_access_log.1 logfile_changed.0
chmod u+w logfile_changed.0
run_test ${lnav_test} -n \
-c ":rebuild" \
-c ":shexec head -1 ${test_dir}/logfile_access_log.0 > logfile_changed.0" \
-c ":rebuild" \
logfile_changed.0
check_error_output "line buffer cache flush" <<EOF
EOF
check_output "line buffer cache flush 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 ./drive_line_buffer "${top_srcdir}/src/line_buffer.hh"
check_output "Line buffer output doesn't match input?" < \
"${top_srcdir}/src/line_buffer.hh"
run_test ./drive_line_buffer < ${top_srcdir}/src/line_buffer.hh
check_output "Line buffer output doesn't match input from pipe?" < \
"${top_srcdir}/src/line_buffer.hh"
cat > lb.dat <<EOF
1
2
3
4
5
EOF
LINE_OFF=`grep -b '4' lb.dat | cut -f 1 -d :`
run_test ./drive_line_buffer -o $LINE_OFF lb.dat
check_output "Seeking in the line buffer doesn't work?" <<EOF
4
5
EOF
run_test ./drive_line_buffer -o 4424 -c 1 ${srcdir}/UTF-8-test.txt
check_output "Invalid UTF is not scrubbed?" <<EOF
2.1.5 5 bytes (U-00200000): "?????" |
EOF
cat "${top_srcdir}/src/"*.hh "${top_srcdir}/src/"*.cc > lb-2.dat
grep -b '$' lb-2.dat | cut -f 1 -d : > lb.index
line_count=`wc -l lb-2.dat`
run_test ./drive_line_buffer -i lb.index -n 10 lb-2.dat
check_output "Random reads don't match input?" <<EOF
All done
EOF