blob: 891c2f25fb508e0cc781ee5d828ee547c04ce575 (
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
|
#!/bin/sh
#
# Blackbox test for the server addresses parameter
#
incdir=$(dirname $0)/../../../testprogs/blackbox
. $incdir/subunit.sh
failed=0
testit_grep_count \
"[only_ipv6] invisible over ipv4" "netname: only_ipv6" 0 \
bin/rpcclient "$SERVER_IP" -U% -c netshareenumall ||
failed=$(expr "$failed" + 1)
testit_grep_count \
"[only_ipv6] visible over ipv6" "netname: only_ipv6" 1 \
bin/rpcclient "$SERVER_IPV6" -U% -c netshareenumall ||
failed=$(expr "$failed" + 1)
testit_expect_failure_grep \
"[only_ipv6] inaccessible over ipv4" \
"tree connect failed: NT_STATUS_BAD_NETWORK_NAME" \
bin/smbclient //"$SERVER_IP"/only_ipv6 -U% -c quit ||
failed=$(expr "$failed" + 1)
testit \
"[only_ipv6] accessible over ipv6" \
bin/smbclient //"$SERVER_IPV6"/only_ipv6 -U% -c quit ||
failed=$(expr "$failed" + 1)
testok $0 $failed
|