summary refs log tree commit diff
path: root/bin/1sh/tests/expansion/pathname1.0
blob: b1daef58db37d87c9e36876c51022453cc9bcb2a (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# $FreeBSD: releng/12.1/bin/sh/tests/expansion/pathname1.0 302937 2016-07-16 13:26:18Z ache $

unset LC_ALL
LC_COLLATE=C
export LC_COLLATE

failures=0

check() {
	testcase=$1
	expect=$2
	eval "set -- $testcase"
	actual="$*"
	if [ "$actual" != "$expect" ]; then
		failures=$((failures+1))
		printf '%s\n' "For $testcase, expected $expect actual $actual"
	fi
}

set -e
T=$(mktemp -d ${TMPDIR:-/tmp}/sh-test.XXXXXX)
trap 'rm -rf $T' 0
cd -P $T

mkdir testdir testdir2 'testdir/*' 'testdir/?' testdir/a testdir/b testdir2/b
mkdir testdir2/.c
touch testf 'testdir/*/1' 'testdir/?/1' testdir/a/1 testdir/b/1 testdir2/b/.a

check '' ''
check 'testdir/b' 'testdir/b'
check 'testdir/c' 'testdir/c'
check '\*' '*'
check '\?' '?'
check '*' 'testdir testdir2 testf'
check '*""' 'testdir testdir2 testf'
check '""*' 'testdir testdir2 testf'
check '*/' 'testdir/ testdir2/'
check 'testdir*/a' 'testdir/a'
check 'testdir*/b' 'testdir/b testdir2/b'
check '*/.c' 'testdir2/.c'
check 'testdir2/*' 'testdir2/b'
check 'testdir2/b/*' 'testdir2/b/*'
check 'testdir/*' 'testdir/* testdir/? testdir/a testdir/b'
check 'testdir/*/1' 'testdir/*/1 testdir/?/1 testdir/a/1 testdir/b/1'
check '"testdir/"*/1' 'testdir/*/1 testdir/?/1 testdir/a/1 testdir/b/1'
check 'testdir/\*/*' 'testdir/*/1'
check 'testdir/\?/*' 'testdir/?/1'
check 'testdir/"?"/*' 'testdir/?/1'
check '"testdir"/"?"/*' 'testdir/?/1'
check '"testdir"/"?"*/*' 'testdir/?/1'
check '"testdir"/*"?"/*' 'testdir/?/1'
check '"testdir/?"*/*' 'testdir/?/1'
check 'testdir/\*/' 'testdir/*/'
check 'testdir/\?/' 'testdir/?/'
check 'testdir/"?"/' 'testdir/?/'
check '"testdir"/"?"/' 'testdir/?/'
check '"testdir"/"?"*/' 'testdir/?/'
check '"testdir"/*"?"/' 'testdir/?/'
check '"testdir/?"*/' 'testdir/?/'
check 'testdir/[*]/' 'testdir/*/'
check 'testdir/[?]/' 'testdir/?/'
check 'testdir/[*?]/' 'testdir/*/ testdir/?/'
check '[tz]estdir/[*]/' 'testdir/*/'

exit $((failures != 0))