blob: ede78c2a4b45bd8a725a6386db4d909c17ad2d2f [file] [log] [blame]
Elie De Brauwerfadbd602012-12-16 12:31:15 +01001#!/bin/bash
2
3[ -f testing.sh ] && . testing.sh
4
5#testing "name" "command" "result" "infile" "stdin"
6
7echo -e "one" > file1
8echo -e "two" > file2
9testing "rev" "rev && echo yes" "orez\nyes\n" "" "zero\n"
Rob Landley336c44a2016-03-02 15:20:04 -060010testing "-" "rev - && echo yes" "orez\nyes\n" "" "zero\n"
11testing "file1 file2" "rev file1 file2" "eno\nowt\n" "" ""
12testing "- file" "rev - file1" "orez\neno\n" "" "zero\n"
13testing "file -" "rev file1 -" "eno\norez\n" "" "zero\n"
14testing "no trailing newline" "rev -" "cba\nfed\n" "" "abc\ndef"
Elie De Brauwerfadbd602012-12-16 12:31:15 +010015
Rob Landley336c44a2016-03-02 15:20:04 -060016testing "file1 notfound file2" \
Elie De Brauwerfadbd602012-12-16 12:31:15 +010017 "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 Landley336c44a2016-03-02 15:20:04 -060020testing "different input sizes"\
Elie De Brauwerfadbd602012-12-16 12:31:15 +010021 "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
25rm file1 file2