rev.test 960 B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. [ -f testing.sh ] && . testing.sh
  3. #testing "name" "command" "result" "infile" "stdin"
  4. echo -e "one" > file1
  5. echo -e "two" > file2
  6. testing "rev" "rev && echo yes" "orez\nyes\n" "" "zero\n"
  7. toyonly testing "-" "rev - && echo yes" "orez\nyes\n" "" "zero\n"
  8. testing "file1 file2" "rev file1 file2" "eno\nowt\n" "" ""
  9. toyonly testing "- file" "rev - file1" "orez\neno\n" "" "zero\n"
  10. toyonly testing "file -" "rev file1 -" "eno\norez\n" "" "zero\n"
  11. toyonly testing "no trailing newline" "rev input" "cba\nfed\n" "abc\ndef" ""
  12. testing "file1 notfound file2" \
  13. "rev file1 notfound file2 2>stderr && echo ok ; grep -o 'notfound: No such file or directory' stderr; rm stderr" \
  14. "eno\nowt\nnotfound: No such file or directory\n" "" ""
  15. testing "different input sizes"\
  16. "rev"\
  17. "\n1\n21\n321\n4321\n54321\n4321\n321\n21\n1\n\n"\
  18. "" "\n1\n12\n123\n1234\n12345\n1234\n123\n12\n1\n\n"
  19. rm file1 file2