testprogs: Consistantly use kinit -c $KRB5CCNAME
[samba.git] / testprogs / blackbox / test_samba_upgradedns.sh
1 #!/bin/sh
2 # Blackbox tests for the samba_upgradedns
3 # Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@samba.org>
4 # Copyright (C) 2006-2012 Andrew Bartlett <abartlet@samba.org>
5
6 if [ $# -lt 4 ]; then
7 cat <<EOF
8 Usage: test_samba_upgradedns.sh SERVER REALM PREFIX PROVDIR
9 EOF
10 exit 1;
11 fi
12
13 SERVER=$1
14 REALM=$2
15 PREFIX=$3
16 PROVDIR=$4
17 shift 4
18 failed=0
19
20 samba4bindir="$BINDIR"
21 samba4srcdir="$SRCDIR/source4"
22
23
24 . `dirname $0`/subunit.sh
25
26 testit "run samba_upgradedns converting to bind9 DLZ" $PYTHON $samba4srcdir/scripting/bin/samba_upgradedns --dns-backend=BIND9_DLZ --configfile=$PROVDIR/etc/smb.conf || failed=`expr $failed + 1`
27 testit "check that dns.keytab is present" test -f $PROVDIR/bind-dns/dns.keytab
28
29 testit "run samba_upgradedns converting to internal" $PYTHON $samba4srcdir/scripting/bin/samba_upgradedns --dns-backend=SAMBA_INTERNAL --configfile=$PROVDIR/etc/smb.conf || failed=`expr $failed + 1`
30
31 testit "run samba_upgradedns converting to internal (2nd time)" $PYTHON $samba4srcdir/scripting/bin/samba_upgradedns --dns-backend=SAMBA_INTERNAL --configfile=$PROVDIR/etc/smb.conf || failed=`expr $failed + 1`
32
33 testit "run samba_upgradedns converting to bind9 DLZ (2nd time)" $PYTHON $samba4srcdir/scripting/bin/samba_upgradedns --dns-backend=BIND9_DLZ --configfile=$PROVDIR/etc/smb.conf || failed=`expr $failed + 1`
34
35 testit "run samba_upgradedns converting to bind9 DLZ (3rd time)" $PYTHON $samba4srcdir/scripting/bin/samba_upgradedns --dns-backend=BIND9_DLZ --configfile=$PROVDIR/etc/smb.conf || failed=`expr $failed + 1`
36
37
38 exit $failed