depricate whatnow
[mmh] / test / tests / whatnow / test-ls
1 #!/bin/sh
2 ######################################################
3 #
4 # Test that whatnow's "ls" copes with directory names
5 # which have spaces and quotes in them (see bug #23319)
6 #
7 ######################################################
8
9 set -e
10 SPDIR="$MH_TEST_DIR/foo's bar"
11 rm -rf "$SPDIR"
12 mkdir "$SPDIR"
13 cd "$SPDIR"
14 touch baz boz
15
16 expectederr=$MH_TEST_DIR/$$.expectederr
17 actualerr=$MH_TEST_DIR/$$.actualerr
18 expected=$MH_TEST_DIR/$$.expected
19 actual=$MH_TEST_DIR/$$.actual
20
21 cat > $expected <<EOF
22 baz
23 boz
24 EOF
25
26 cat > $expectederr <<EOF
27 whatnow: whatnow is deprecated. Consider switching to whatnow2.
28 EOF
29
30 # create a draft message
31 comp -whatnow true
32
33 # NB use of sort as the order of output of ls is not guaranteed
34 echo 'ls' | whatnow -prompt '' 2> "$actualerr" | sort > "$actual"
35
36 diff -u $expectederr $actualerr
37 diff -u $expected $actual