2005-09-23 21:14:46 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# grep tests.
|
|
|
|
# Copyright 2005 by Rob Landley <rob@landley.net>
|
|
|
|
# Licensed under GPL v2, see file LICENSE for details.
|
|
|
|
|
|
|
|
# AUDIT:
|
|
|
|
|
|
|
|
. testing.sh
|
|
|
|
|
|
|
|
# testing "test name" "options" "expected result" "file input" "stdin"
|
|
|
|
# file input will be file called "input"
|
|
|
|
# test can create a file "actual" instead of writing to stdout
|
|
|
|
|
|
|
|
# Test exit status
|
|
|
|
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep (exit with error)" "grep nonexistent 2> /dev/null ; echo \$?" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"1\n" "" ""
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep (exit success)" "grep grep $0 > /dev/null 2>&1 ; echo \$?" "0\n" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"" ""
|
|
|
|
# Test various data sources and destinations
|
|
|
|
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep (default to stdin)" "grep two" "two\n" "" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"one\ntwo\nthree\nthree\nthree\n"
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep - (specify stdin)" "grep two -" "two\n" "" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"one\ntwo\nthree\nthree\nthree\n"
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep input (specify file)" "grep two input" "two\n" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"one\ntwo\nthree\nthree\nthree\n" ""
|
|
|
|
|
|
|
|
# Note that this assumes actual is empty.
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep input actual (two files)" "grep two input actual 2> /dev/null" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"input:two\n" "one\ntwo\nthree\nthree\nthree\n" ""
|
|
|
|
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep - infile (specify stdin and file)" "grep two - input" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"(standard input):two\ninput:two\n" "one\ntwo\nthree\n" \
|
|
|
|
"one\ntwo\ntoo\nthree\nthree\n"
|
|
|
|
|
|
|
|
# Check if we see the correct return value if both stdin and non-existing file
|
|
|
|
# are given.
|
|
|
|
testing "grep - nofile (specify stdin and nonexisting file)" \
|
2006-03-16 20:50:45 +05:30
|
|
|
"grep two - nonexistent 2> /dev/null ; echo \$?" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"(standard input):two\n(standard input):two\n2\n" \
|
|
|
|
"" "one\ntwo\ntwo\nthree\nthree\nthree\n"
|
|
|
|
testing "grep -q - nofile (specify stdin and nonexisting file, no match)" \
|
2006-03-16 20:50:45 +05:30
|
|
|
"grep -q nomatch - nonexistent 2> /dev/null ; echo \$?" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"2\n" "" "one\ntwo\ntwo\nthree\nthree\nthree\n"
|
|
|
|
# SUSv3: If the -q option is specified, the exit status shall be zero
|
|
|
|
# if an input line is selected, even if an error was detected.
|
|
|
|
testing "grep -q - nofile (specify stdin and nonexisting file, match)" \
|
2006-03-16 20:50:45 +05:30
|
|
|
"grep -q two - nonexistent ; echo \$?" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"0\n" "" "one\ntwo\ntwo\nthree\nthree\nthree\n"
|
|
|
|
|
|
|
|
# Test various command line options
|
|
|
|
# -s no error messages
|
|
|
|
testing "grep -s nofile (nonexisting file, no match)" \
|
2006-03-16 20:50:45 +05:30
|
|
|
"grep -s nomatch nonexistent ; echo \$?" "2\n" "" ""
|
2005-09-23 21:14:46 +05:30
|
|
|
testing "grep -s nofile - (stdin and nonexisting file, match)" \
|
2006-03-16 20:50:45 +05:30
|
|
|
"grep -s domatch nonexistent - ; echo \$?" \
|
|
|
|
"(standard input):domatch\n2\n" "" "nomatch\ndomatch\nend\n"
|
2005-09-23 21:14:46 +05:30
|
|
|
|
|
|
|
# This doesn't match GNU behaviour (Binary file input matches)
|
|
|
|
# acts like GNU grep -a
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep handles binary files" "grep foo input" "foo\n" "\0foo\n\n" ""
|
2005-09-23 21:14:46 +05:30
|
|
|
# This doesn't match GNU behaviour (Binary file (standard input) matches)
|
|
|
|
# acts like GNU grep -a
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep handles binary stdin" "grep foo" "foo\n" "" "\0foo\n\n"
|
2005-09-23 21:14:46 +05:30
|
|
|
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep matches NUL" "grep . input > /dev/null 2>&1 ; echo \$?" \
|
|
|
|
"0\n" "\0\n" ""
|
2005-09-23 21:14:46 +05:30
|
|
|
|
|
|
|
# -e regex
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep handles multiple regexps" "grep -e one -e two input ; echo \$?" \
|
2005-09-23 21:14:46 +05:30
|
|
|
"one\ntwo\n0\n" "one\ntwo\n" ""
|
|
|
|
|
2005-11-07 14:20:53 +05:30
|
|
|
optional FEATURE_GREP_EGREP_ALIAS
|
2006-03-16 20:50:45 +05:30
|
|
|
testing "grep -E supports extended regexps" "grep -E fo+" "foo\n" "" \
|
|
|
|
"b\ar\nfoo\nbaz"
|
|
|
|
testing "grep is also egrep" "egrep foo" "foo\n" "" "foo\nbar\n"
|
|
|
|
testing "egrep is not case insensitive" \
|
|
|
|
"egrep foo ; [ \$? -ne 0 ] && echo yes" "yes\n" "" "FOO\n"
|
2005-09-23 21:14:46 +05:30
|
|
|
|
|
|
|
exit $FAILCOUNT
|