summaryrefslogtreecommitdiffstats
path: root/source3/script/tests/test_symlink_dosmode.sh
blob: dd6cb6be47227f1ff90b898429e6a96d694c8f53 (plain)
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
66
67
68
69
70
71
72
73
74
#!/bin/sh

if [ $# -lt 7 ]; then
	cat <<EOF
Usage: test_symlink_dosmode.sh SERVER SERVER_IP USERNAME PASSWORD LOCAL_PATH PREFIX SMBCLIENT
EOF
	exit 1
fi

SERVER="${1}"
SERVER_IP="${2}"
USERNAME="${3}"
PASSWORD="${4}"
LOCAL_PATH="${5}"
PREFIX="${6}"
SMBCLIENT="${7}"
SMBCLIENT="$VALGRIND ${SMBCLIENT}"
shift 6

incdir=$(dirname "$0")/../../../testprogs/blackbox
. "$incdir"/subunit.sh

failed=0

# Do not let deprecated option warnings muck this up
SAMBA_DEPRECATED_SUPPRESS=1
export SAMBA_DEPRECATED_SUPPRESS

# Define the test environment/filenames.
#
share_test_dir="$LOCAL_PATH"

rm -rf "$share_test_dir/testdir"

mkdir -p "$share_test_dir/testdir/dir"
touch "$share_test_dir/testdir/file"
ln -s "../file" "$share_test_dir/testdir/dir/symlink"

test_symlink_dosmode()
{
	tmpfile=$PREFIX/smbclient_interactive_prompt_commands
	cat >"$tmpfile" <<EOF
ls testdir/dir/*
quit
EOF
	cmd='CLI_FORCE_INTERACTIVE=yes $SMBCLIENT -U$USERNAME%$PASSWORD //$SERVER/local_symlinks -I$SERVER_IP < $tmpfile 2>&1'
	eval echo "$cmd"
	out=$(eval "$cmd")
	ret=$?
	rm -f "$tmpfile"

	if [ $ret != 0 ]; then
		printf "%s\n" "$out"
		printf "failed accessing local_symlinks with error %s\n" "$ret"
		return 1
	fi

	mode=$(printf "%s" "$out" | awk '/symlink/ {print $2}')
	echo "mode: $mode"
	if [ x"$mode" != x"N" ] ; then
		printf "Bad mode: '%s', expected 'N'\n" "$mode"
		printf "%s\n" "$out"
		return 1
	fi
	return 0
}

testit "symlink_dosmode" \
	test_symlink_dosmode ||
	failed=$((failed + 1))

rm -rf "$share_test_dir/testdir"

testok "$0" "$failed"