| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | . "$(dirname "$0")/functions.inc" |
|---|
| 4 | |
|---|
| 5 | checkutils() |
|---|
| 6 | { |
|---|
| 7 | r=$1 |
|---|
| 8 | for type in 00 ff text random; do |
|---|
| 9 | file="$DIR/file-$type" |
|---|
| 10 | ZZOPTS="-s $seed -r $r" |
|---|
| 11 | case $file in |
|---|
| 12 | *text*) ZZOPTS="$ZZOPTS -P '\\n' -R '\\000'" ;; |
|---|
| 13 | esac |
|---|
| 14 | echo "*** file $file, ratio $r ***" |
|---|
| 15 | REFMD5="" |
|---|
| 16 | if [ $r = 0.0 -a $type = 00 ]; then |
|---|
| 17 | check="bb7df04e1b0a2570657527a7e108ae23" |
|---|
| 18 | echo "*** should be $check ***" |
|---|
| 19 | check "$ZZOPTS" "< $file" "zzuf" "$check" |
|---|
| 20 | else |
|---|
| 21 | check "$ZZOPTS" "< $file" "zzuf" |
|---|
| 22 | fi |
|---|
| 23 | for n in 0 20 21 22 30 31 40 41 42; do |
|---|
| 24 | check "$ZZOPTS" "$ZZCAT $n $file" "zzcat $n" |
|---|
| 25 | done |
|---|
| 26 | if [ "$STATIC_CAT" = "" ]; then |
|---|
| 27 | check "$ZZOPTS" "cat $file" "cat" |
|---|
| 28 | check "$ZZOPTS" "-i cat < $file" "|cat" |
|---|
| 29 | fi |
|---|
| 30 | if [ "$STATIC_DD" = "" ]; then |
|---|
| 31 | check "$ZZOPTS" "dd bs=65536 if=$file" "dd(bs=65536)" |
|---|
| 32 | check "$ZZOPTS" "dd bs=1111 if=$file" "dd(bs=1111)" |
|---|
| 33 | check "$ZZOPTS" "dd bs=1024 if=$file" "dd(bs=1024)" |
|---|
| 34 | check "$ZZOPTS" "dd bs=1 if=$file" "dd(bs=1)" |
|---|
| 35 | fi |
|---|
| 36 | case $file in |
|---|
| 37 | *text*) |
|---|
| 38 | # We don't include grep or sed when the input is not text, because |
|---|
| 39 | # they put a newline at the end of their input if it was not there |
|---|
| 40 | # initially. (Linux sed doesn't, but OS X sed does.) |
|---|
| 41 | check "$ZZOPTS" "head -n 9999 $file" "head -n 9999" |
|---|
| 42 | check "$ZZOPTS" "${TAILN}9999 $file" "${TAILN}9999" |
|---|
| 43 | check "$ZZOPTS" "${TAILP}1 $file" "${TAILP}1" |
|---|
| 44 | if grep -a '' /dev/null >/dev/null 2>&1; then |
|---|
| 45 | check "$ZZOPTS" "grep -a '' $file" "grep -a ''" |
|---|
| 46 | fi |
|---|
| 47 | check "$ZZOPTS" "sed -e n $file" "sed -e n" |
|---|
| 48 | #check "$ZZOPTS" "cut -b1- $file" "cut -b1-" |
|---|
| 49 | check "$ZZOPTS" "-i head -n 9999 < $file" "|head -n 9999" |
|---|
| 50 | check "$ZZOPTS" "-i ${TAILN}9999 < $file" "|${TAILN}9999" |
|---|
| 51 | check "$ZZOPTS" "-i ${TAILP}1 < $file" "|${TAILP}1" |
|---|
| 52 | if grep -a '' /dev/null >/dev/null 2>&1; then |
|---|
| 53 | check "$ZZOPTS" "-i grep -a '' < $file" "|grep -a ''" |
|---|
| 54 | fi |
|---|
| 55 | check "$ZZOPTS" "-i sed -e n < $file" "|sed -e n" |
|---|
| 56 | #check "$ZZOPTS" "-i cut -b1- < $file" "|cut -b1-" |
|---|
| 57 | ;; |
|---|
| 58 | esac |
|---|
| 59 | done |
|---|
| 60 | } |
|---|
| 61 | |
|---|
| 62 | check() |
|---|
| 63 | { |
|---|
| 64 | ZZOPTS="$1" |
|---|
| 65 | CMD="$2" |
|---|
| 66 | ALIAS="$3" |
|---|
| 67 | CHECK="$4" |
|---|
| 68 | printf " $(echo "$ALIAS .............." | cut -b1-18) " |
|---|
| 69 | MD5="$(eval "$ZZUF -m $ZZOPTS $CMD" 2>/dev/null | cut -f2 -d' ')" |
|---|
| 70 | if [ -n "$CHECK" ]; then |
|---|
| 71 | REFMD5="$CHECK" |
|---|
| 72 | fi |
|---|
| 73 | if [ -z "$REFMD5" ]; then |
|---|
| 74 | REFMD5="$MD5" |
|---|
| 75 | echo "$MD5" |
|---|
| 76 | elif [ "$MD5" != "$REFMD5" ]; then |
|---|
| 77 | fail_test "$MD5 FAILED" |
|---|
| 78 | else |
|---|
| 79 | pass_test 'ok' |
|---|
| 80 | fi |
|---|
| 81 | } |
|---|
| 82 | |
|---|
| 83 | start_test "zzuf utils test suite" |
|---|
| 84 | |
|---|
| 85 | checkutils 0.0 |
|---|
| 86 | checkutils 0.001 |
|---|
| 87 | checkutils 1.0 |
|---|
| 88 | |
|---|
| 89 | stop_test |
|---|
| 90 | |
|---|