grep.tests 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. #!/bin/sh
  2. # Copyright 2005 by Rob Landley <rob@landley.net>
  3. # Licensed under GPLv2, see file LICENSE in this source tree.
  4. # AUDIT:
  5. . ./testing.sh
  6. # testing "test name" "options" "expected result" "file input" "stdin"
  7. # file input will be file called "input"
  8. # test can create a file "actual" instead of writing to stdout
  9. # Test exit status
  10. testing "grep (exit with error)" "grep nonexistent 2> /dev/null ; echo \$?" \
  11. "1\n" "" ""
  12. testing "grep (exit success)" "grep grep $0 > /dev/null 2>&1 ; echo \$?" "0\n" \
  13. "" ""
  14. # Test various data sources and destinations
  15. testing "grep (default to stdin)" "grep two" "two\n" "" \
  16. "one\ntwo\nthree\nthree\nthree\n"
  17. testing "grep - (specify stdin)" "grep two -" "two\n" "" \
  18. "one\ntwo\nthree\nthree\nthree\n"
  19. testing "grep input (specify file)" "grep two input" "two\n" \
  20. "one\ntwo\nthree\nthree\nthree\n" ""
  21. # GNU grep 2.5.3 outputs a new line character after the located string
  22. # even if there is no new line character in the input
  23. testing "grep (no newline at EOL)" "grep bug input" "bug\n" "bug" ""
  24. >empty
  25. testing "grep two files" "grep two input empty 2>/dev/null" \
  26. "input:two\n" "one\ntwo\nthree\nthree\nthree\n" ""
  27. rm empty
  28. testing "grep - infile (specify stdin and file)" "grep two - input" \
  29. "(standard input):two\ninput:two\n" "one\ntwo\nthree\n" \
  30. "one\ntwo\ntoo\nthree\nthree\n"
  31. # Check if we see the correct return value if both stdin and non-existing file
  32. # are given.
  33. testing "grep - nofile (specify stdin and nonexisting file)" \
  34. "grep two - nonexistent 2> /dev/null ; echo \$?" \
  35. "(standard input):two\n(standard input):two\n2\n" \
  36. "" "one\ntwo\ntwo\nthree\nthree\nthree\n"
  37. testing "grep -q - nofile (specify stdin and nonexisting file, no match)" \
  38. "grep -q nomatch - nonexistent 2> /dev/null ; echo \$?" \
  39. "2\n" "" "one\ntwo\ntwo\nthree\nthree\nthree\n"
  40. # SUSv3: If the -q option is specified, the exit status shall be zero
  41. # if an input line is selected, even if an error was detected.
  42. testing "grep -q - nofile (specify stdin and nonexisting file, match)" \
  43. "grep -q two - nonexistent ; echo \$?" \
  44. "0\n" "" "one\ntwo\ntwo\nthree\nthree\nthree\n"
  45. # Test various command line options
  46. # -s no error messages
  47. testing "grep -s nofile (nonexisting file, no match)" \
  48. "grep -s nomatch nonexistent ; echo \$?" "2\n" "" ""
  49. testing "grep -s nofile - (stdin and nonexisting file, match)" \
  50. "grep -s domatch nonexistent - ; echo \$?" \
  51. "(standard input):domatch\n2\n" "" "nomatch\ndomatch\nend\n"
  52. optional EXTRA_COMPAT
  53. testing "grep handles NUL in files" "grep -a foo input" "\0foo\n" "\0foo\n\n" ""
  54. testing "grep handles NUL on stdin" "grep -a foo" "\0foo\n" "" "\0foo\n\n"
  55. testing "grep matches NUL" "grep . input > /dev/null 2>&1 ; echo \$?" \
  56. "0\n" "\0\n" ""
  57. SKIP=
  58. # -e regex
  59. testing "grep handles multiple regexps" "grep -e one -e two input ; echo \$?" \
  60. "one\ntwo\n0\n" "one\ntwo\n" ""
  61. testing "grep -F handles multiple expessions" "grep -F -e one -e two input ; echo \$?" \
  62. "one\ntwo\n0\n" "one\ntwo\n" ""
  63. testing "grep -F handles -i" "grep -F -i foo input ; echo \$?" \
  64. "FOO\n0\n" "FOO\n" ""
  65. # -f file/-
  66. testing "grep can read regexps from stdin" "grep -f - input ; echo \$?" \
  67. "two\nthree\n0\n" "tw\ntwo\nthree\n" "tw.\nthr\n"
  68. optional FEATURE_GREP_EGREP_ALIAS
  69. testing "grep -E supports extended regexps" "grep -E fo+" "foo\n" "" \
  70. "b\ar\nfoo\nbaz"
  71. testing "grep is also egrep" "egrep foo" "foo\n" "" "foo\nbar\n"
  72. testing "egrep is not case insensitive" \
  73. "egrep foo ; [ \$? -ne 0 ] && echo yes" "yes\n" "" "FOO\n"
  74. testing "grep -E -o prints all matches" \
  75. "grep -E -o '([[:xdigit:]]{2}[:-]){5}[[:xdigit:]]{2}'" \
  76. "00:19:3E:00:AA:5E\n00:1D:60:3D:3A:FB\n00:22:43:49:FB:AA\n" \
  77. "" "00:19:3E:00:AA:5E 00:1D:60:3D:3A:FB 00:22:43:49:FB:AA\n"
  78. SKIP=
  79. testing "grep -o does not loop forever" \
  80. 'grep -o "[^/]*$"' \
  81. "test\n" \
  82. "" "/var/test\n"
  83. testing "grep -o does not loop forever on zero-length match" \
  84. 'grep -o "" | head -n1' \
  85. "" \
  86. "" "test\n"
  87. exit $FAILCOUNT