2 # Blackbox test for wbinfo
5 Usage: test_wbinfo.sh DOMAIN USERNAME PASSWORD TARGET
17 samba4bindir
="$BUILDDIR/bin"
18 wbinfo
="$samba4bindir/wbinfo$EXEEXT"
20 .
`dirname $0`/..
/..
/testprogs
/blackbox
/subunit.sh
29 if [ x
$status = x0
]; then
44 if [ x
$status = x0
]; then
45 echo "failure: $name [unexpected success]"
48 echo "knownfail: $name"
55 testit
"wbinfo -u against $TARGET" $wbinfo -u || failed
=`expr $failed + 1`
57 testit
"wbinfo -g against $TARGET" $wbinfo -g || failed
=`expr $failed + 1`
58 # Convert netbios name to IP
60 knownfail
"wbinfo -N against $TARGET" $wbinfo -N $NETBIOSNAME || failed
=`expr $failed + 1`
61 # Convert IP to netbios name
63 knownfail
"wbinfo -I against $TARGET" $wbinfo -I $SERVER_IP || failed
=`expr $failed + 1`
66 testit
"wbinfo -n against $TARGET" $wbinfo -n "$DOMAIN/$USERNAME" || failed
=`expr $failed + 1`
67 admin_sid
=`$wbinfo -n "$DOMAIN/$USERNAME" | cut -d " " -f1`
68 echo "$DOMAIN/$USERNAME resolved to $admin_sid"
70 testit
"wbinfo -s $admin_sid against $TARGET" $wbinfo -s $admin_sid || failed
=`expr $failed + 1`
71 admin_name
=`$wbinfo -s $admin_sid | cut -d " " -f1| tr a-z A-Z`
72 echo "$admin_sid resolved to $admin_name"
74 tested_name
=`echo $DOMAIN/$USERNAME | tr a-z A-Z`
76 echo "test: wbinfo -s check for sane mapping"
77 if test x
$admin_name != x
$tested_name; then
78 echo "$admin_name does not match $tested_name"
79 echo "failure: wbinfo -s check for sane mapping"
80 failed
=`expr $failed + 1`
82 echo "success: wbinfo -s check for sane mapping"
85 testit
"wbinfo -n on the returned name against $TARGET" $wbinfo -n $admin_name || failed
=`expr $failed + 1`
86 test_sid
=`$wbinfo -n $tested_name | cut -d " " -f1`
88 echo "test: wbinfo -n check for sane mapping"
89 if test x
$admin_sid != x
$test_sid; then
90 echo "$admin_sid does not match $test_sid"
91 echo "failure: wbinfo -n check for sane mapping"
92 failed
=`expr $failed + 1`
94 echo "success: wbinfo -n check for sane mapping"
97 testit
"wbinfo -U against $TARGET" $wbinfo -U 30000 || failed
=`expr $failed + 1`
99 echo "test: wbinfo -U check for sane mapping"
100 sid_for_30000
=`$wbinfo -U 30000`
101 if test x
$sid_for_30000 != "xS-1-22-1-30000"; then
102 echo "uid 30000 mapped to $sid_for_30000, not S-1-22-1-30000"
103 echo "failure: wbinfo -U check for sane mapping"
104 failed
=`expr $failed + 1`
106 echo "success: wbinfo -U check for sane mapping"
109 admin_uid
=`$wbinfo -S $admin_sid`
111 testit
"wbinfo -G against $TARGET" $wbinfo -G 30000 || failed
=`expr $failed + 1`
113 echo "test: wbinfo -G check for sane mapping"
114 sid_for_30000
=`$wbinfo -G 30000`
115 if test x
$sid_for_30000 != "xS-1-22-2-30000"; then
116 echo "gid 30000 mapped to $sid_for_30000, not S-1-22-2-30000"
117 echo "failure: wbinfo -G check for sane mapping"
118 failed
=`expr $failed + 1`
120 echo "success: wbinfo -G check for sane mapping"
123 testit
"wbinfo -S against $TARGET" $wbinfo -S "S-1-22-1-30000" || failed
=`expr $failed + 1`
125 echo "test: wbinfo -S check for sane mapping"
126 uid_for_sid
=`$wbinfo -S S-1-22-1-30000`
127 if test 0$uid_for_sid -ne 30000; then
128 echo "S-1-22-1-30000 mapped to $uid_for_sid, not 30000"
129 echo "failure: wbinfo -S check for sane mapping"
130 failed
=`expr $failed + 1`
132 echo "success: wbinfo -S check for sane mapping"
135 testfail
"wbinfo -S against $TARGET using invalid SID" $wbinfo -S "S-1-22-2-30000" && failed
=`expr $failed + 1`
137 testit
"wbinfo -Y against $TARGET" $wbinfo -Y "S-1-22-2-30000" || failed
=`expr $failed + 1`
139 echo "test: wbinfo -Y check for sane mapping"
140 gid_for_sid
=`$wbinfo -Y S-1-22-2-30000`
141 if test 0$gid_for_sid -ne 30000; then
142 echo "S-1-22-2-30000 mapped to $gid_for_sid, not 30000"
143 echo "failure: wbinfo -Y check for sane mapping"
144 failed
=`expr $failed + 1`
146 echo "success: wbinfo -Y check for sane mapping"
149 testfail
"wbinfo -Y against $TARGET using invalid SID" $wbinfo -Y "S-1-22-1-30000" && failed
=`expr $failed + 1`
151 testit
"wbinfo -t against $TARGET" $wbinfo -t || failed
=`expr $failed + 1`
153 testit
"wbinfo --trusted-domains against $TARGET" $wbinfo --trusted-domains || failed
=`expr $failed + 1`
154 testit
"wbinfo --all-domains against $TARGET" $wbinfo --all-domains || failed
=`expr $failed + 1`
155 testit
"wbinfo --own-domain against $TARGET" $wbinfo --own-domain || failed
=`expr $failed + 1`
157 echo "test: wbinfo --own-domain against $TARGET check output"
158 own_domain
=`$wbinfo --own-domain`
159 if test x
$own_domain = x
$DOMAIN; then
160 echo "success: wbinfo --own-domain against $TARGET check output"
162 echo "Own domain reported as $own_domain instead of $DOMAIN"
163 echo "failure: wbinfo --own-domain against $TARGET check output"
167 knownfail
"wbinfo --sequence against $TARGET" $wbinfo --sequence
168 knownfail
"wbinfo -D against $TARGET" $wbinfo -D $DOMAIN || failed
=`expr $failed + 1`
170 testit
"wbinfo -i against $TARGET" $wbinfo -i "$DOMAIN/$USERNAME" || failed
=`expr $failed + 1`
172 testit
"wbinfo --uid-info against $TARGET" $wbinfo --uid-info $admin_uid
175 knownfail
"wbinfo --group-info against $TARGET" $wbinfo --group-info "S-1-22-2-0"
176 knownfail
"wbinfo --gid-info against $TARGET" $wbinfo --gid-info 30001
177 knownfail
"wbinfo -r against $TARGET" $wbinfo -r "$DOMAIN/$USERNAME"
179 testit
"wbinfo --user-domgroups against $TARGET" $wbinfo --user-domgroups $admin_sid || failed
=`expr $failed + 1`
181 testit
"wbinfo --user-sids against $TARGET" $wbinfo --user-sids $admin_sid || failed
=`expr $failed + 1`
183 testit
"wbinfo -a against $TARGET with domain creds" $wbinfo -a "$DOMAIN/$USERNAME"%"$PASSWORD" || failed
=`expr $failed + 1`
185 testit
"wbinfo --getdcname against $TARGET" $wbinfo --getdcname=$DOMAIN
187 testit
"wbinfo -p against $TARGET" $wbinfo -p || failed
=`expr $failed + 1`
189 testit
"wbinfo -K against $TARGET with domain creds" $wbinfo -K "$DOMAIN/$USERNAME"%"$PASSWORD" || failed
=`expr $failed + 1`
191 testit
"wbinfo --separator against $TARGET" $wbinfo --separator || failed
=`expr $failed + 1`