Elie De Brauwer | fadbd60 | 2012-12-16 12:31:15 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | [ -f testing.sh ] && . testing.sh |
| 4 | |
| 5 | #testing "name" "command" "result" "infile" "stdin" |
| 6 | |
| 7 | echo -e "one" > file1 |
| 8 | echo -e "two" > file2 |
| 9 | testing "rev" "rev && echo yes" "orez\nyes\n" "" "zero\n" |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 10 | testing "-" "rev - && echo yes" "orez\nyes\n" "" "zero\n" |
| 11 | testing "file1 file2" "rev file1 file2" "eno\nowt\n" "" "" |
| 12 | testing "- file" "rev - file1" "orez\neno\n" "" "zero\n" |
| 13 | testing "file -" "rev file1 -" "eno\norez\n" "" "zero\n" |
| 14 | testing "no trailing newline" "rev -" "cba\nfed\n" "" "abc\ndef" |
Elie De Brauwer | fadbd60 | 2012-12-16 12:31:15 +0100 | [diff] [blame] | 15 | |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 16 | testing "file1 notfound file2" \ |
Elie De Brauwer | fadbd60 | 2012-12-16 12:31:15 +0100 | [diff] [blame] | 17 | "rev file1 notfound file2 2>stderr && echo ok ; cat stderr; rm stderr" \ |
| 18 | "eno\nowt\nrev: notfound: No such file or directory\n" "" "" |
| 19 | |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 20 | testing "different input sizes"\ |
Elie De Brauwer | fadbd60 | 2012-12-16 12:31:15 +0100 | [diff] [blame] | 21 | "rev"\ |
| 22 | "\n1\n21\n321\n4321\n54321\n4321\n321\n21\n1\n\n"\ |
| 23 | "" "\n1\n12\n123\n1234\n12345\n1234\n123\n12\n1\n\n" |
| 24 | |
| 25 | rm file1 file2 |