~dricottone/my-utils

ref: c198ef1e2669c126601a2f41c5e7fac3af76d30f my-utils/core/test_ctdir.sh -rwxr-xr-x 843 bytes
c198ef1eDominic Ricottone Fix quiet option on whiched and whichvi 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
# tests ctdir

# move to temp directory
cd test

test_exit_code() {
  $1 >/dev/null 2>&1
  if [ $? -ne $2 ]; then
    printf "Failure in ctdir tests: wrong exit code ('$1' returned '$?', should be '$2')\n"
    exit 1
  fi
}
test_exit_code "../ctdir -v" "0"
test_exit_code "../ctdir -h" "0"
test_exit_code "../ctdir" "1"
test_exit_code "../ctdir non-existant-directory" "1"
test_exit_code "../ctdir ." "0"
test_exit_code "../ctdir . non-existant-directory" "1"
test_exit_code "../ctdir non-existant-directory ." "1"
test_exit_code "../ctdir . ." "0"

count=0
for n in $(../ctdir ./ctdir ./ctdir); do
  count=$(($count+1))
  if [ "$n" -ne 10 ]; then
    printf "Failure in ctdir tests: wrong return value\n"
    exit 1
  fi
done
if [ $count -ne 2 ]; then
  printf "Failure in ctdir tests: wrong number of return values\n"
  exit 1
fi