Home | History | Annotate | Download | only in tests
      1 #!/bin/bash
      2 
      3 [ -f testing.sh ] && . testing.sh
      4 
      5 #testing "name" "command" "result" "infile" "stdin"
      6 
      7 testing "split" "seq 1 12345 | split && ls xa[a-z] | wc -l" "13\n" "" ""
      8 rm xa[a-z]
      9 
     10 testing "-" "seq 1 12345 | split - && ls xa[a-z] | wc -l" "13\n" "" ""
     11 rm xa[a-z]
     12 
     13 seq 1 12345 > file
     14 testing "file" "split file && ls xa[a-z] | wc -l" "13\n" "" ""
     15 rm xa[a-z]
     16 
     17 testing "-l" "split file -l 10k && wc -l xab" "2105 xab\n" "" ""
     18 rm xa[ab]
     19 
     20 testing "suffix exhaustion" \
     21   "split file -l 10 -a 1 walrus 2>/dev/null || ls walrus* | wc -l" "26\n" "" ""
     22 rm walrus*
     23 
     24 testing "bytes" \
     25   "seq 1 20000 | split -b 100 -a 3 - whang && ls whang* | wc -l && wc -c whangbpw" "1089\n94 whangbpw\n" "" ""
     26 
     27 testing "reassembly" \
     28   'diff -u <(ls whang* | sort | xargs cat) <(seq 1 20000) && echo yes' \
     29   "yes\n" "" ""
     30 
     31 rm file whang*
     32