2018-12-12 03:37:10 +03:00
#!/usr/bin/env python3
2010-11-18 02:56:05 +03:00
''' automated testing library for testing Samba against windows '''
2018-07-30 09:21:38 +03:00
import pexpect
import subprocess
2010-12-03 07:31:39 +03:00
import optparse
2018-07-30 09:21:38 +03:00
import sys
import os
import time
import re
2010-11-18 02:56:05 +03:00
2018-07-30 09:20:39 +03:00
2010-11-18 02:56:05 +03:00
class wintest ( ) :
''' testing of Samba against windows VMs '''
def __init__ ( self ) :
self . vars = { }
2010-11-18 06:43:53 +03:00
self . list_mode = False
2010-11-30 03:54:55 +03:00
self . vms = None
2011-02-21 08:46:58 +03:00
os . environ [ ' PYTHONUNBUFFERED ' ] = ' 1 '
2010-12-03 07:31:39 +03:00
self . parser = optparse . OptionParser ( " wintest " )
2010-11-18 02:56:05 +03:00
2010-12-10 04:13:58 +03:00
def check_prerequesites ( self ) :
self . info ( " Checking prerequesites " )
self . setvar ( ' HOSTNAME ' , self . cmd_output ( " hostname -s " ) . strip ( ) )
if os . getuid ( ) != 0 :
raise Exception ( " You must run this script as root " )
self . run_cmd ( ' ifconfig $ {INTERFACE} $ {INTERFACE_NET} up ' )
if self . getvar ( ' INTERFACE_IPV6 ' ) :
self . run_cmd ( ' ifconfig $ {INTERFACE} inet6 del $ {INTERFACE_IPV6} /64 ' , checkfail = False )
self . run_cmd ( ' ifconfig $ {INTERFACE} inet6 add $ {INTERFACE_IPV6} /64 up ' )
2012-09-12 12:34:41 +04:00
self . run_cmd ( ' ifconfig $ {NAMED_INTERFACE} $ {NAMED_INTERFACE_NET} up ' )
if self . getvar ( ' NAMED_INTERFACE_IPV6 ' ) :
self . run_cmd ( ' ifconfig $ {NAMED_INTERFACE} inet6 del $ {NAMED_INTERFACE_IPV6} /64 ' , checkfail = False )
self . run_cmd ( ' ifconfig $ {NAMED_INTERFACE} inet6 add $ {NAMED_INTERFACE_IPV6} /64 up ' )
2010-12-10 04:13:58 +03:00
def stop_vms ( self ) :
''' Shut down any existing alive VMs, so they do not collide with what we are doing '''
self . info ( ' Shutting down any of our VMs already running ' )
vms = self . get_vms ( )
for v in vms :
self . vm_poweroff ( v , checkfail = False )
2010-11-18 02:56:05 +03:00
def setvar ( self , varname , value ) :
''' set a substitution variable '''
self . vars [ varname ] = value
2010-11-23 12:20:18 +03:00
def getvar ( self , varname ) :
''' return a substitution variable '''
2018-07-30 09:22:34 +03:00
if varname not in self . vars :
2010-11-24 05:36:21 +03:00
return None
2010-11-23 12:20:18 +03:00
return self . vars [ varname ]
2010-11-18 06:43:53 +03:00
def setwinvars ( self , vm , prefix = ' WIN ' ) :
''' setup WIN_XX vars based on a vm name '''
2010-11-30 03:58:05 +03:00
for v in [ ' VM ' , ' HOSTNAME ' , ' USER ' , ' PASS ' , ' SNAPSHOT ' , ' REALM ' , ' DOMAIN ' , ' IP ' ] :
2010-11-18 06:43:53 +03:00
vname = ' %s _ %s ' % ( vm , v )
if vname in self . vars :
2018-07-30 09:19:05 +03:00
self . setvar ( " %s _ %s " % ( prefix , v ) , self . substitute ( " $ { %s } " % vname ) )
2010-11-18 06:43:53 +03:00
else :
2018-07-30 09:19:05 +03:00
self . vars . pop ( " %s _ %s " % ( prefix , v ) , None )
2010-11-18 06:43:53 +03:00
2010-11-30 03:58:05 +03:00
if self . getvar ( " WIN_REALM " ) :
self . setvar ( " WIN_REALM " , self . getvar ( " WIN_REALM " ) . upper ( ) )
self . setvar ( " WIN_LCREALM " , self . getvar ( " WIN_REALM " ) . lower ( ) )
dnsdomain = self . getvar ( " WIN_REALM " )
self . setvar ( " WIN_BASEDN " , " DC= " + dnsdomain . replace ( " . " , " ,DC= " ) )
2010-12-14 02:53:34 +03:00
if self . getvar ( " WIN_USER " ) is None :
self . setvar ( " WIN_USER " , " administrator " )
2010-11-30 03:58:05 +03:00
2010-11-18 06:43:53 +03:00
def info ( self , msg ) :
''' print some information '''
if not self . list_mode :
print ( self . substitute ( msg ) )
2010-11-18 02:56:05 +03:00
def load_config ( self , fname ) :
''' load the config file '''
f = open ( fname )
for line in f :
line = line . strip ( )
if len ( line ) == 0 or line [ 0 ] == ' # ' :
continue
colon = line . find ( ' : ' )
if colon == - 1 :
raise RuntimeError ( " Invalid config line ' %s ' " % line )
varname = line [ 0 : colon ] . strip ( )
2018-07-30 09:18:25 +03:00
value = line [ colon + 1 : ] . strip ( )
2010-11-18 02:56:05 +03:00
self . setvar ( varname , value )
2010-11-18 06:43:53 +03:00
def list_steps_mode ( self ) :
''' put wintest in step listing mode '''
self . list_mode = True
def set_skip ( self , skiplist ) :
''' set a list of tests to skip '''
self . skiplist = skiplist . split ( ' , ' )
2010-11-30 03:54:55 +03:00
def set_vms ( self , vms ) :
''' set a list of VMs to test '''
2010-11-30 04:37:01 +03:00
if vms is not None :
2011-02-17 03:21:12 +03:00
self . vms = [ ]
for vm in vms . split ( ' , ' ) :
vm = vm . upper ( )
self . vms . append ( vm )
2010-11-30 03:54:55 +03:00
2010-11-18 06:43:53 +03:00
def skip ( self , step ) :
''' return True if we should skip a step '''
if self . list_mode :
print ( " \t %s " % step )
return True
return step in self . skiplist
2010-11-18 02:56:05 +03:00
def substitute ( self , text ) :
""" Substitute strings of the form $ {NAME} in text, replacing
with substitutions from vars .
"""
if isinstance ( text , list ) :
ret = text [ : ]
for i in range ( len ( ret ) ) :
ret [ i ] = self . substitute ( ret [ i ] )
return ret
2010-11-22 13:24:56 +03:00
""" We may have objects such as pexpect.EOF that are not strings """
if not isinstance ( text , str ) :
return text
2010-11-18 02:56:05 +03:00
while True :
var_start = text . find ( " $ { " )
if var_start == - 1 :
return text
var_end = text . find ( " } " , var_start )
if var_end == - 1 :
return text
2018-07-30 09:18:25 +03:00
var_name = text [ var_start + 2 : var_end ]
2018-07-30 09:22:34 +03:00
if var_name not in self . vars :
2010-11-18 02:56:05 +03:00
raise RuntimeError ( " Unknown substitution variable $ { %s } " % var_name )
text = text . replace ( " $ { %s } " % var_name , self . vars [ var_name ] )
return text
2010-11-18 15:56:22 +03:00
def have_var ( self , varname ) :
''' see if a variable has been set '''
return varname in self . vars
2010-11-30 03:54:55 +03:00
def have_vm ( self , vmname ) :
''' see if a VM should be used '''
if not self . have_var ( vmname + ' _VM ' ) :
return False
if self . vms is None :
return True
return vmname in self . vms
2010-11-18 15:56:22 +03:00
2010-11-18 02:56:05 +03:00
def putenv ( self , key , value ) :
''' putenv with substitution '''
2011-02-21 08:46:58 +03:00
os . environ [ key ] = self . substitute ( value )
2010-11-18 02:56:05 +03:00
def chdir ( self , dir ) :
''' chdir with substitution '''
os . chdir ( self . substitute ( dir ) )
2010-11-19 06:08:18 +03:00
def del_files ( self , dirs ) :
''' delete all files in the given directory '''
for d in dirs :
self . run_cmd ( " find %s -type f | xargs rm -f " % d )
def write_file ( self , filename , text , mode = ' w ' ) :
''' write to a file '''
f = open ( self . substitute ( filename ) , mode = mode )
f . write ( self . substitute ( text ) )
f . close ( )
2010-11-18 02:56:05 +03:00
def run_cmd ( self , cmd , dir = " . " , show = None , output = False , checkfail = True ) :
2010-11-24 09:48:39 +03:00
''' run a command '''
2010-11-18 02:56:05 +03:00
cmd = self . substitute ( cmd )
if isinstance ( cmd , list ) :
2010-11-18 06:43:53 +03:00
self . info ( ' $ ' + " " . join ( cmd ) )
2010-11-18 02:56:05 +03:00
else :
2010-11-18 06:43:53 +03:00
self . info ( ' $ ' + cmd )
2010-11-18 02:56:05 +03:00
if output :
return subprocess . Popen ( [ cmd ] , shell = True , stdout = subprocess . PIPE , stderr = subprocess . STDOUT , cwd = dir ) . communicate ( ) [ 0 ]
if isinstance ( cmd , list ) :
2018-07-30 09:18:03 +03:00
shell = False
2010-11-18 02:56:05 +03:00
else :
2018-07-30 09:18:03 +03:00
shell = True
2010-11-18 02:56:05 +03:00
if checkfail :
return subprocess . check_call ( cmd , shell = shell , cwd = dir )
else :
return subprocess . call ( cmd , shell = shell , cwd = dir )
2010-11-23 09:38:31 +03:00
def run_child ( self , cmd , dir = " . " ) :
2010-11-24 09:48:39 +03:00
''' create a child and return the Popen handle to it '''
2010-11-23 09:38:31 +03:00
cwd = os . getcwd ( )
cmd = self . substitute ( cmd )
if isinstance ( cmd , list ) :
self . info ( ' $ ' + " " . join ( cmd ) )
else :
self . info ( ' $ ' + cmd )
if isinstance ( cmd , list ) :
2018-07-30 09:18:03 +03:00
shell = False
2010-11-23 09:38:31 +03:00
else :
2018-07-30 09:18:03 +03:00
shell = True
2010-11-23 09:38:31 +03:00
os . chdir ( dir )
2010-11-24 09:48:39 +03:00
ret = subprocess . Popen ( cmd , shell = shell , stderr = subprocess . STDOUT )
2010-11-23 09:38:31 +03:00
os . chdir ( cwd )
return ret
2010-11-18 02:56:05 +03:00
def cmd_output ( self , cmd ) :
''' return output from and command '''
cmd = self . substitute ( cmd )
return self . run_cmd ( cmd , output = True )
2010-11-19 06:08:18 +03:00
def cmd_contains ( self , cmd , contains , nomatch = False , ordered = False , regex = False ,
2010-12-01 08:07:56 +03:00
casefold = True ) :
2010-11-18 02:56:05 +03:00
''' check that command output contains the listed strings '''
2010-11-19 06:08:18 +03:00
if isinstance ( contains , str ) :
contains = [ contains ]
2010-11-18 02:56:05 +03:00
out = self . cmd_output ( cmd )
2010-11-18 06:43:53 +03:00
self . info ( out )
2010-11-18 02:56:05 +03:00
for c in self . substitute ( contains ) :
2010-11-18 15:56:22 +03:00
if regex :
2010-12-01 08:07:56 +03:00
if casefold :
c = c . upper ( )
out = out . upper ( )
2010-11-18 15:56:22 +03:00
m = re . search ( c , out )
if m is None :
start = - 1
end = - 1
else :
start = m . start ( )
end = m . end ( )
2010-11-19 06:08:18 +03:00
elif casefold :
start = out . upper ( ) . find ( c . upper ( ) )
end = start + len ( c )
2010-11-18 15:56:22 +03:00
else :
start = out . find ( c )
end = start + len ( c )
2010-11-18 02:56:05 +03:00
if nomatch :
2010-11-18 15:56:22 +03:00
if start != - 1 :
2010-11-18 02:56:05 +03:00
raise RuntimeError ( " Expected to not see %s in %s " % ( c , cmd ) )
else :
2010-11-18 15:56:22 +03:00
if start == - 1 :
2010-11-18 02:56:05 +03:00
raise RuntimeError ( " Expected to see %s in %s " % ( c , cmd ) )
2010-11-18 15:56:22 +03:00
if ordered and start != - 1 :
out = out [ end : ]
2010-11-18 02:56:05 +03:00
2010-11-18 15:56:22 +03:00
def retry_cmd ( self , cmd , contains , retries = 30 , delay = 2 , wait_for_fail = False ,
2010-12-01 08:07:56 +03:00
ordered = False , regex = False , casefold = True ) :
2010-11-18 02:56:05 +03:00
''' retry a command a number of times '''
while retries > 0 :
try :
2010-11-18 15:56:22 +03:00
self . cmd_contains ( cmd , contains , nomatch = wait_for_fail ,
2010-11-19 06:08:18 +03:00
ordered = ordered , regex = regex , casefold = casefold )
2010-11-18 02:56:05 +03:00
return
except :
time . sleep ( delay )
2010-11-27 03:33:52 +03:00
retries - = 1
self . info ( " retrying (retries= %u delay= %u ) " % ( retries , delay ) )
2010-11-18 02:56:05 +03:00
raise RuntimeError ( " Failed to find %s " % contains )
2010-11-30 03:55:48 +03:00
def pexpect_spawn ( self , cmd , timeout = 60 , crlf = True , casefold = True ) :
2010-11-18 02:56:05 +03:00
''' wrapper around pexpect spawn '''
cmd = self . substitute ( cmd )
2010-11-18 06:43:53 +03:00
self . info ( " $ " + cmd )
2010-11-18 02:56:05 +03:00
ret = pexpect . spawn ( cmd , logfile = sys . stdout , timeout = timeout )
def sendline_sub ( line ) :
2010-11-30 03:55:48 +03:00
line = self . substitute ( line )
if crlf :
line = line . replace ( ' \n ' , ' \r \n ' ) + ' \r '
return ret . old_sendline ( line )
2010-11-18 02:56:05 +03:00
2010-11-30 03:55:48 +03:00
def expect_sub ( line , timeout = ret . timeout , casefold = casefold ) :
2010-11-18 02:56:05 +03:00
line = self . substitute ( line )
2010-11-30 03:55:48 +03:00
if casefold :
2010-12-01 05:24:35 +03:00
if isinstance ( line , list ) :
for i in range ( len ( line ) ) :
if isinstance ( line [ i ] , str ) :
line [ i ] = ' (?i) ' + line [ i ]
elif isinstance ( line , str ) :
line = ' (?i) ' + line
2010-11-18 02:56:05 +03:00
return ret . old_expect ( line , timeout = timeout )
2010-11-30 03:55:48 +03:00
ret . old_sendline = ret . sendline
ret . sendline = sendline_sub
2010-11-18 02:56:05 +03:00
ret . old_expect = ret . expect
ret . expect = expect_sub
return ret
2010-11-23 09:38:31 +03:00
def get_nameserver ( self ) :
''' Get the current nameserver from /etc/resolv.conf '''
2010-11-24 09:48:39 +03:00
child = self . pexpect_spawn ( ' cat /etc/resolv.conf ' , crlf = False )
i = child . expect ( [ ' Generated by wintest ' , ' nameserver ' ] )
if i == 0 :
child . expect ( ' your original resolv.conf ' )
child . expect ( ' nameserver ' )
2010-11-23 09:38:31 +03:00
child . expect ( ' \ d+. \ d+. \ d+. \ d+ ' )
return child . after
2010-12-10 04:13:58 +03:00
def rndc_cmd ( self , cmd , checkfail = True ) :
''' run a rndc command '''
self . run_cmd ( " $ {RNDC} -c $ {PREFIX} /etc/rndc.conf %s " % cmd , checkfail = checkfail )
def named_supports_gssapi_keytab ( self ) :
''' see if named supports tkey-gssapi-keytab '''
self . write_file ( " $ {PREFIX} /named.conf.test " ,
2018-07-30 09:16:12 +03:00
' options { tkey-gssapi-keytab " test " ; }; ' )
2010-12-10 04:13:58 +03:00
try :
self . run_cmd ( " $ {NAMED_CHECKCONF} $ {PREFIX} /named.conf.test " )
except subprocess . CalledProcessError :
return False
return True
def set_nameserver ( self , nameserver ) :
''' set the nameserver in resolv.conf '''
self . write_file ( " /etc/resolv.conf.wintest " , '''
# Generated by wintest, the Samba v Windows automated testing system
nameserver % s
# your original resolv.conf appears below:
''' % s elf.substitute(nameserver))
child = self . pexpect_spawn ( " cat /etc/resolv.conf " , crlf = False )
i = child . expect ( [ ' your original resolv.conf appears below: ' , pexpect . EOF ] )
if i == 0 :
child . expect ( pexpect . EOF )
contents = child . before . lstrip ( ) . replace ( ' \r ' , ' ' )
self . write_file ( ' /etc/resolv.conf.wintest ' , contents , mode = ' a ' )
self . write_file ( ' /etc/resolv.conf.wintest-bak ' , contents )
self . run_cmd ( " mv -f /etc/resolv.conf.wintest /etc/resolv.conf " )
2018-07-30 09:22:11 +03:00
self . resolv_conf_backup = ' /etc/resolv.conf.wintest-bak '
2010-12-10 04:13:58 +03:00
def configure_bind ( self , kerberos_support = False , include = None ) :
self . chdir ( ' $ {PREFIX} ' )
2012-09-12 12:34:41 +04:00
if self . getvar ( ' NAMED_INTERFACE_IPV6 ' ) :
ipv6_listen = ' listen-on-v6 port 53 { $ {NAMED_INTERFACE_IPV6} ; }; '
2010-12-10 04:13:58 +03:00
else :
ipv6_listen = ' '
self . setvar ( ' BIND_LISTEN_IPV6 ' , ipv6_listen )
if not kerberos_support :
self . setvar ( " NAMED_TKEY_OPTION " , " " )
2012-09-12 12:34:41 +04:00
elif self . getvar ( ' NAMESERVER_BACKEND ' ) != ' SAMBA_INTERNAL ' :
2010-12-10 04:13:58 +03:00
if self . named_supports_gssapi_keytab ( ) :
self . setvar ( " NAMED_TKEY_OPTION " ,
2018-07-30 09:16:12 +03:00
' tkey-gssapi-keytab " $ {PREFIX} /bind-dns/dns.keytab " ; ' )
2010-12-10 04:13:58 +03:00
else :
self . info ( " LCREALM=$ {LCREALM} " )
self . setvar ( " NAMED_TKEY_OPTION " ,
2018-07-30 09:16:12 +03:00
''' tkey-gssapi-credential " DNS/$ {LCREALM} " ;
2010-12-10 04:13:58 +03:00
tkey - domain " $ {LCREALM} " ;
''' )
2017-08-10 16:37:54 +03:00
self . putenv ( ' KEYTAB_FILE ' , ' $ {PREFIX} /bind-dns/dns.keytab ' )
self . putenv ( ' KRB5_KTNAME ' , ' $ {PREFIX} /bind-dns/dns.keytab ' )
2012-09-12 12:34:41 +04:00
else :
self . setvar ( " NAMED_TKEY_OPTION " , " " )
2010-12-10 04:13:58 +03:00
2012-09-12 12:34:41 +04:00
if include and self . getvar ( ' NAMESERVER_BACKEND ' ) != ' SAMBA_INTERNAL ' :
2010-12-10 04:13:58 +03:00
self . setvar ( " NAMED_INCLUDE " , ' include " %s " ; ' % include )
else :
self . setvar ( " NAMED_INCLUDE " , ' ' )
self . run_cmd ( " mkdir -p $ {PREFIX} /etc " )
self . write_file ( " etc/named.conf " , '''
options {
2012-09-12 12:34:41 +04:00
listen - on port 53 { $ { NAMED_INTERFACE_IP } ; } ;
2010-12-10 04:13:58 +03:00
$ { BIND_LISTEN_IPV6 }
directory " $ {PREFIX} /var/named " ;
dump - file " $ {PREFIX} /var/named/data/cache_dump.db " ;
pid - file " $ {PREFIX} /var/named/named.pid " ;
statistics - file " $ {PREFIX} /var/named/data/named_stats.txt " ;
memstatistics - file " $ {PREFIX} /var/named/data/named_mem_stats.txt " ;
allow - query { any ; } ;
recursion yes ;
$ { NAMED_TKEY_OPTION }
max - cache - ttl 10 ;
max - ncache - ttl 10 ;
forward only ;
forwarders {
$ { DNSSERVER } ;
} ;
} ;
key " rndc-key " {
algorithm hmac - md5 ;
secret " lA/cTrno03mt5Ju17ybEYw== " ;
} ;
controls {
2012-09-12 12:34:41 +04:00
inet $ { NAMED_INTERFACE_IP } port 953
2010-12-10 04:13:58 +03:00
allow { any ; } keys { " rndc-key " ; } ;
} ;
$ { NAMED_INCLUDE }
''' )
2018-08-21 02:47:07 +03:00
2012-09-12 12:34:41 +04:00
if self . getvar ( ' NAMESERVER_BACKEND ' ) == ' SAMBA_INTERNAL ' :
2018-08-21 02:47:07 +03:00
self . write_file ( ' etc/named.conf ' ,
2018-07-30 09:16:12 +03:00
'''
2012-09-12 12:34:41 +04:00
zone " %s " IN {
type forward ;
forward only ;
forwarders {
% s ;
} ;
} ;
''' % (self.getvar( ' LCREALM ' ), self.getvar( ' INTERFACE_IP ' )),
2018-08-21 02:47:07 +03:00
mode = ' a ' )
2010-12-10 04:13:58 +03:00
# add forwarding for the windows domains
domains = self . get_domains ( )
2012-09-12 12:34:41 +04:00
2010-12-10 04:13:58 +03:00
for d in domains :
self . write_file ( ' etc/named.conf ' ,
2018-07-30 09:16:12 +03:00
'''
2010-12-10 04:13:58 +03:00
zone " %s " IN {
type forward ;
forward only ;
forwarders {
% s ;
} ;
} ;
''' % (d, domains[d]),
mode = ' a ' )
self . write_file ( " etc/rndc.conf " , '''
# Start of rndc.conf
key " rndc-key " {
algorithm hmac - md5 ;
secret " lA/cTrno03mt5Ju17ybEYw== " ;
} ;
options {
default - key " rndc-key " ;
2012-09-12 12:34:41 +04:00
default - server $ { NAMED_INTERFACE_IP } ;
2010-12-10 04:13:58 +03:00
default - port 953 ;
} ;
''' )
def stop_bind ( self ) :
''' Stop our private BIND from listening and operating '''
self . rndc_cmd ( " stop " , checkfail = False )
2012-09-12 12:34:41 +04:00
self . port_wait ( " $ {NAMED_INTERFACE_IP} " , 53 , wait_for_fail = True )
2010-12-10 04:13:58 +03:00
self . run_cmd ( " rm -rf var/named " )
def start_bind ( self ) :
''' restart the test environment version of bind '''
self . info ( " Restarting bind9 " )
self . chdir ( ' $ {PREFIX} ' )
2012-09-12 12:34:41 +04:00
self . set_nameserver ( self . getvar ( ' NAMED_INTERFACE_IP ' ) )
2010-12-10 04:13:58 +03:00
self . run_cmd ( " mkdir -p var/named/data " )
self . run_cmd ( " chown -R $ {BIND_USER} var/named " )
self . bind_child = self . run_child ( " $ {BIND9} -u $ {BIND_USER} -n 1 -c $ {PREFIX} /etc/named.conf -g " )
2012-09-12 12:34:41 +04:00
self . port_wait ( " $ {NAMED_INTERFACE_IP} " , 53 )
2010-12-10 04:13:58 +03:00
self . rndc_cmd ( " flush " )
def restart_bind ( self , kerberos_support = False , include = None ) :
2010-12-13 19:14:51 +03:00
self . configure_bind ( kerberos_support = kerberos_support , include = include )
2010-12-10 04:13:58 +03:00
self . stop_bind ( )
self . start_bind ( )
def restore_resolv_conf ( self ) :
''' restore the /etc/resolv.conf after testing is complete '''
if getattr ( self , ' resolv_conf_backup ' , False ) :
self . info ( " restoring /etc/resolv.conf " )
self . run_cmd ( " mv -f %s /etc/resolv.conf " % self . resolv_conf_backup )
2010-11-18 02:56:05 +03:00
def vm_poweroff ( self , vmname , checkfail = True ) :
''' power off a VM '''
self . setvar ( ' VMNAME ' , vmname )
self . run_cmd ( " $ {VM_POWEROFF} " , checkfail = checkfail )
2010-11-27 03:33:52 +03:00
def vm_reset ( self , vmname ) :
''' reset a VM '''
self . setvar ( ' VMNAME ' , vmname )
self . run_cmd ( " $ {VM_RESET} " )
2010-11-18 02:56:05 +03:00
def vm_restore ( self , vmname , snapshot ) :
''' restore a VM '''
self . setvar ( ' VMNAME ' , vmname )
self . setvar ( ' SNAPSHOT ' , snapshot )
self . run_cmd ( " $ {VM_RESTORE} " )
def ping_wait ( self , hostname ) :
''' wait for a hostname to come up on the network '''
hostname = self . substitute ( hostname )
2018-07-30 09:18:03 +03:00
loops = 10
2010-11-18 02:56:05 +03:00
while loops > 0 :
try :
self . run_cmd ( " ping -c 1 -w 10 %s " % hostname )
break
except :
loops = loops - 1
if loops == 0 :
raise RuntimeError ( " Failed to ping %s " % hostname )
2010-11-18 06:43:53 +03:00
self . info ( " Host %s is up " % hostname )
2010-11-18 02:56:05 +03:00
2010-11-18 06:43:53 +03:00
def port_wait ( self , hostname , port , retries = 200 , delay = 3 , wait_for_fail = False ) :
2010-11-18 02:56:05 +03:00
''' wait for a host to come up on the network '''
2012-02-15 02:29:27 +04:00
while retries > 0 :
child = self . pexpect_spawn ( " nc -v -z -w 1 %s %u " % ( hostname , port ) , crlf = False , timeout = 1 )
2012-06-12 21:45:51 +04:00
child . expect ( [ pexpect . EOF , pexpect . TIMEOUT ] )
child . close ( )
i = child . exitstatus
2012-02-15 02:29:27 +04:00
if wait_for_fail :
2018-07-30 09:19:49 +03:00
# wait for timeout or fail
2018-07-30 09:22:15 +03:00
if i is None or i > 0 :
2012-02-15 02:29:27 +04:00
return
else :
if i == 0 :
return
time . sleep ( delay )
retries - = 1
self . info ( " retrying (retries= %u delay= %u ) " % ( retries , delay ) )
raise RuntimeError ( " gave up waiting for %s : %d " % ( hostname , port ) )
2010-11-18 02:56:05 +03:00
def run_net_time ( self , child ) :
''' run net time on windows '''
child . sendline ( " net time \\ \\ $ {HOSTNAME} /set " )
child . expect ( " Do you want to set the local computer " )
child . sendline ( " Y " )
child . expect ( " The command completed successfully " )
def run_date_time ( self , child , time_tuple = None ) :
''' run date and time on windows '''
if time_tuple is None :
time_tuple = time . localtime ( )
child . sendline ( " date " )
child . expect ( " Enter the new date: " )
2010-11-22 13:23:38 +03:00
i = child . expect ( [ " dd-mm-yy " , " mm-dd-yy " ] )
if i == 0 :
child . sendline ( time . strftime ( " %d - % m- % y " , time_tuple ) )
else :
child . sendline ( time . strftime ( " % m- %d - % y " , time_tuple ) )
2010-11-18 02:56:05 +03:00
child . expect ( " C: " )
child . sendline ( " time " )
child . expect ( " Enter the new time: " )
child . sendline ( time . strftime ( " % H: % M: % S " , time_tuple ) )
child . expect ( " C: " )
2010-11-22 13:23:38 +03:00
def get_ipconfig ( self , child ) :
''' get the IP configuration of the child '''
2010-11-23 07:04:31 +03:00
child . sendline ( " ipconfig /all " )
2010-11-22 13:23:38 +03:00
child . expect ( ' Ethernet adapter ' )
child . expect ( " [ \ w \ s]+ " )
self . setvar ( " WIN_NIC " , child . after )
child . expect ( [ ' IPv4 Address ' , ' IP Address ' ] )
child . expect ( ' \ d+. \ d+. \ d+. \ d+ ' )
self . setvar ( ' WIN_IPV4_ADDRESS ' , child . after )
child . expect ( ' Subnet Mask ' )
child . expect ( ' \ d+. \ d+. \ d+. \ d+ ' )
self . setvar ( ' WIN_SUBNET_MASK ' , child . after )
child . expect ( ' Default Gateway ' )
2012-02-17 04:26:23 +04:00
i = child . expect ( [ ' \ d+. \ d+. \ d+. \ d+ ' , " C: " ] )
if i == 0 :
self . setvar ( ' WIN_DEFAULT_GATEWAY ' , child . after )
child . expect ( " C: " )
2010-11-23 07:04:31 +03:00
2010-11-29 11:03:34 +03:00
def get_is_dc ( self , child ) :
2010-12-01 08:34:16 +03:00
''' check if a windows machine is a domain controller '''
2010-11-29 11:03:34 +03:00
child . sendline ( " dcdiag " )
2012-06-05 15:57:59 +04:00
i = child . expect ( [ " is not a [Directory Server|DC] " ,
2010-12-01 08:34:16 +03:00
" is not recognized as an internal or external command " ,
" Home Server = " ,
" passed test Replications " ] )
2010-11-29 11:03:34 +03:00
if i == 0 :
return False
2010-12-01 08:34:16 +03:00
if i == 1 or i == 3 :
2010-11-30 13:18:34 +03:00
child . expect ( " C: " )
child . sendline ( " net config Workstation " )
child . expect ( " Workstation domain " )
child . expect ( ' [ \ S]+ ' )
domain = child . after
i = child . expect ( [ " Workstation Domain DNS Name " , " Logon domain " ] )
''' If we get the Logon domain first, we are not in an AD domain '''
if i == 1 :
return False
if domain . upper ( ) == self . getvar ( " WIN_DOMAIN " ) . upper ( ) :
return True
2010-11-29 11:03:34 +03:00
child . expect ( ' [ \ S]+ ' )
hostname = child . after
2010-11-30 13:18:34 +03:00
if hostname . upper ( ) == self . getvar ( " WIN_HOSTNAME " ) . upper ( ) :
2010-11-29 11:03:34 +03:00
return True
2010-12-09 14:05:14 +03:00
def set_noexpire ( self , child , username ) :
2011-03-28 05:27:33 +04:00
""" Ensure this user ' s password does not expire """
2010-12-09 14:05:14 +03:00
child . sendline ( ' wmic useraccount where name= " %s " set PasswordExpires=FALSE ' % username )
child . expect ( " update successful " )
child . expect ( " C: " )
2010-11-23 07:04:31 +03:00
def run_tlntadmn ( self , child ) :
''' remove the annoying telnet restrictions '''
child . sendline ( ' tlntadmn config maxconn=1024 ' )
2011-04-07 06:25:30 +04:00
child . expect ( [ " The settings were successfully updated " , " Access is denied " ] )
2010-11-23 07:04:31 +03:00
child . expect ( " C: " )
2010-11-22 13:23:38 +03:00
def disable_firewall ( self , child ) :
''' remove the annoying firewall '''
child . sendline ( ' netsh advfirewall set allprofiles state off ' )
2012-02-16 07:01:44 +04:00
i = child . expect ( [ " Ok " , " The following command was not found: advfirewall set allprofiles state off " , " The requested operation requires elevation " , " Access is denied " ] )
2010-11-22 13:23:38 +03:00
child . expect ( " C: " )
if i == 1 :
child . sendline ( ' netsh firewall set opmode mode = DISABLE profile = ALL ' )
2012-02-16 07:01:44 +04:00
i = child . expect ( [ " Ok " , " The following command was not found " , " Access is denied " ] )
2010-11-27 02:27:22 +03:00
if i != 0 :
self . info ( " Firewall disable failed - ignoring " )
2010-11-22 13:23:38 +03:00
child . expect ( " C: " )
2010-12-13 19:14:51 +03:00
2010-11-23 07:04:31 +03:00
def set_dns ( self , child ) :
2012-09-12 12:34:41 +04:00
child . sendline ( ' netsh interface ip set dns " $ {WIN_NIC} " static $ {NAMED_INTERFACE_IP} primary ' )
2010-11-23 07:04:31 +03:00
i = child . expect ( [ ' C: ' , pexpect . EOF , pexpect . TIMEOUT ] , timeout = 5 )
if i > 0 :
return True
else :
return False
2010-11-22 13:23:38 +03:00
def set_ip ( self , child ) :
2010-11-23 12:20:18 +03:00
""" fix the IP address to the same value it had when we
2010-11-22 13:23:38 +03:00
connected , but don ' t use DHCP, and force the DNS server to our
2010-11-23 12:20:18 +03:00
DNS server . This allows DNS updates to run """
2010-11-22 13:23:38 +03:00
self . get_ipconfig ( child )
2010-11-24 06:16:35 +03:00
if self . getvar ( " WIN_IPV4_ADDRESS " ) != self . getvar ( " WIN_IP " ) :
raise RuntimeError ( " ipconfig address %s != nmblookup address %s " % ( self . getvar ( " WIN_IPV4_ADDRESS " ) ,
self . getvar ( " WIN_IP " ) ) )
2010-11-22 13:23:38 +03:00
child . sendline ( ' netsh ' )
2010-11-23 07:04:31 +03:00
child . expect ( ' netsh> ' )
2010-11-22 13:23:38 +03:00
child . sendline ( ' offline ' )
2010-11-23 07:04:31 +03:00
child . expect ( ' netsh> ' )
child . sendline ( ' routing ip add persistentroute dest=0.0.0.0 mask=0.0.0.0 name= " $ {WIN_NIC} " nhop=$ {WIN_DEFAULT_GATEWAY} ' )
child . expect ( ' netsh> ' )
2010-11-22 13:23:38 +03:00
child . sendline ( ' interface ip set address " $ {WIN_NIC} " static $ {WIN_IPV4_ADDRESS} $ {WIN_SUBNET_MASK} $ {WIN_DEFAULT_GATEWAY} 1 store=persistent ' )
2010-11-23 07:04:31 +03:00
i = child . expect ( [ ' The syntax supplied for this command is not valid. Check help for the correct syntax ' , ' netsh> ' , pexpect . EOF , pexpect . TIMEOUT ] , timeout = 5 )
2010-11-22 13:23:38 +03:00
if i == 0 :
child . sendline ( ' interface ip set address " $ {WIN_NIC} " static $ {WIN_IPV4_ADDRESS} $ {WIN_SUBNET_MASK} $ {WIN_DEFAULT_GATEWAY} 1 ' )
2010-11-23 07:04:31 +03:00
child . expect ( ' netsh> ' )
2010-11-22 13:23:38 +03:00
child . sendline ( ' commit ' )
2010-11-23 07:04:31 +03:00
child . sendline ( ' online ' )
2010-11-22 13:23:38 +03:00
child . sendline ( ' exit ' )
child . expect ( [ pexpect . EOF , pexpect . TIMEOUT ] , timeout = 5 )
2010-11-23 07:04:31 +03:00
return True
2010-11-24 05:36:21 +03:00
def resolve_ip ( self , hostname , retries = 60 , delay = 5 ) :
''' resolve an IP given a hostname, assuming NBT '''
while retries > 0 :
child = self . pexpect_spawn ( " bin/nmblookup %s " % hostname )
2010-12-14 02:53:34 +03:00
i = 0
while i == 0 :
i = child . expect ( [ " querying " , ' \ d+. \ d+. \ d+. \ d+ ' , hostname , " Lookup failed " ] )
if i == 0 :
child . expect ( " \r " )
if i == 1 :
2010-11-24 05:36:21 +03:00
return child . after
retries - = 1
time . sleep ( delay )
2010-11-27 03:33:52 +03:00
self . info ( " retrying (retries= %u delay= %u ) " % ( retries , delay ) )
2010-11-24 05:36:21 +03:00
raise RuntimeError ( " Failed to resolve IP of %s " % hostname )
def open_telnet ( self , hostname , username , password , retries = 60 , delay = 5 , set_time = False , set_ip = False ,
2010-12-09 14:05:14 +03:00
disable_firewall = True , run_tlntadmn = True , set_noexpire = False ) :
2010-11-18 02:56:05 +03:00
''' open a telnet connection to a windows server, return the pexpect child '''
2010-11-22 13:23:38 +03:00
set_route = False
2010-11-23 07:04:31 +03:00
set_dns = False
2012-02-17 04:27:02 +04:00
set_telnetclients = True
2013-10-30 01:21:00 +04:00
start_telnet = True
2010-11-24 05:36:21 +03:00
if self . getvar ( ' WIN_IP ' ) :
ip = self . getvar ( ' WIN_IP ' )
else :
ip = self . resolve_ip ( hostname )
self . setvar ( ' WIN_IP ' , ip )
2010-11-18 02:56:05 +03:00
while retries > 0 :
2010-11-24 05:36:21 +03:00
child = self . pexpect_spawn ( " telnet " + ip + " -l ' " + username + " ' " )
2010-11-18 02:56:05 +03:00
i = child . expect ( [ " Welcome to Microsoft Telnet Service " ,
2010-11-22 13:23:38 +03:00
" Denying new connections due to the limit on number of connections " ,
2010-11-18 02:56:05 +03:00
" No more connections are allowed to telnet server " ,
" Unable to connect to remote host " ,
2010-11-22 13:23:38 +03:00
" No route to host " ,
2010-11-23 07:04:31 +03:00
" Connection refused " ,
pexpect . EOF ] )
2010-11-18 02:56:05 +03:00
if i != 0 :
child . close ( )
time . sleep ( delay )
retries - = 1
2010-11-27 03:33:52 +03:00
self . info ( " retrying (retries= %u delay= %u ) " % ( retries , delay ) )
2010-11-18 02:56:05 +03:00
continue
child . expect ( " password: " )
child . sendline ( password )
2010-11-23 07:04:31 +03:00
i = child . expect ( [ " C: " ,
2012-02-17 04:27:02 +04:00
" TelnetClients " ,
2010-11-23 07:04:31 +03:00
" Denying new connections due to the limit on number of connections " ,
" No more connections are allowed to telnet server " ,
" Unable to connect to remote host " ,
" No route to host " ,
" Connection refused " ,
pexpect . EOF ] )
2012-02-17 04:27:02 +04:00
if i == 1 :
if set_telnetclients :
2013-10-30 01:21:00 +04:00
self . run_cmd ( ' bin/net rpc group add TelnetClients -S $WIN_IP -U$WIN_USER % $WIN_PASS ' )
2012-02-17 04:27:02 +04:00
self . run_cmd ( ' bin/net rpc group addmem TelnetClients " authenticated users " -S $WIN_IP -U$WIN_USER % $WIN_PASS ' )
child . close ( )
retries - = 1
set_telnetclients = False
self . info ( " retrying (retries= %u delay= %u ) " % ( retries , delay ) )
continue
else :
raise RuntimeError ( " Failed to connect with telnet due to missing TelnetClients membership " )
2013-10-30 01:21:00 +04:00
if i == 6 :
# This only works if it is installed and enabled, but not started. Not entirely likely, but possible
self . run_cmd ( ' bin/net rpc service start TlntSvr -S $WIN_IP -U$WIN_USER % $WIN_PASS ' )
child . close ( )
start_telnet = False
retries - = 1
self . info ( " retrying (retries= %u delay= %u ) " % ( retries , delay ) )
continue
2010-11-23 07:04:31 +03:00
if i != 0 :
child . close ( )
time . sleep ( delay )
retries - = 1
2010-11-27 03:33:52 +03:00
self . info ( " retrying (retries= %u delay= %u ) " % ( retries , delay ) )
2010-11-23 07:04:31 +03:00
continue
if set_dns :
set_dns = False
if self . set_dns ( child ) :
2018-07-30 09:22:11 +03:00
continue
2010-11-22 13:23:38 +03:00
if set_route :
child . sendline ( ' route add 0.0.0.0 mask 0.0.0.0 $ {WIN_DEFAULT_GATEWAY} ' )
child . expect ( " C: " )
2010-11-23 07:04:31 +03:00
set_route = False
2010-11-18 02:56:05 +03:00
if set_time :
self . run_date_time ( child , None )
2010-11-23 07:04:31 +03:00
set_time = False
if run_tlntadmn :
self . run_tlntadmn ( child )
run_tlntadmn = False
2010-12-09 14:05:14 +03:00
if set_noexpire :
self . set_noexpire ( child , username )
set_noexpire = False
2010-11-22 13:23:38 +03:00
if disable_firewall :
self . disable_firewall ( child )
2010-11-23 07:04:31 +03:00
disable_firewall = False
2010-11-22 13:23:38 +03:00
if set_ip :
set_ip = False
2010-11-23 07:04:31 +03:00
if self . set_ip ( child ) :
set_route = True
set_dns = True
2010-11-22 13:23:38 +03:00
continue
2010-11-18 02:56:05 +03:00
return child
raise RuntimeError ( " Failed to connect with telnet " )
def kinit ( self , username , password ) :
''' use kinit to setup a credentials cache '''
self . run_cmd ( " kdestroy " )
self . putenv ( ' KRB5CCNAME ' , " $ {PREFIX} /ccache.test " )
username = self . substitute ( username )
s = username . split ( ' @ ' )
if len ( s ) > 0 :
s [ 1 ] = s [ 1 ] . upper ( )
username = ' @ ' . join ( s )
2010-11-29 09:19:55 +03:00
child = self . pexpect_spawn ( ' kinit ' + username )
child . expect ( " Password " )
2010-11-18 02:56:05 +03:00
child . sendline ( password )
2010-11-29 09:19:55 +03:00
child . expect ( pexpect . EOF )
child . close ( )
if child . exitstatus != 0 :
raise RuntimeError ( " kinit failed with status %d " % child . exitstatus )
2010-11-24 05:36:21 +03:00
def get_domains ( self ) :
''' return a dictionary of DNS domains and IPs for named.conf '''
ret = { }
for v in self . vars :
if v [ - 6 : ] == " _REALM " :
base = v [ : - 6 ]
if base + ' _IP ' in self . vars :
ret [ self . vars [ base + ' _REALM ' ] ] = self . vars [ base + ' _IP ' ]
return ret
2010-11-27 03:33:52 +03:00
def wait_reboot ( self , retries = 3 ) :
''' wait for a VM to reboot '''
# first wait for it to shutdown
self . port_wait ( " $ {WIN_IP} " , 139 , wait_for_fail = True , delay = 6 )
# now wait for it to come back. If it fails to come back
# then try resetting it
while retries > 0 :
try :
self . port_wait ( " $ {WIN_IP} " , 139 )
return
except :
retries - = 1
self . vm_reset ( " $ {WIN_VM} " )
self . info ( " retrying reboot (retries= %u ) " % retries )
raise RuntimeError ( self . substitute ( " VM $ {WIN_VM} failed to reboot " ) )
2010-11-30 03:55:32 +03:00
def get_vms ( self ) :
''' return a dictionary of all the configured VM names '''
ret = [ ]
for v in self . vars :
if v [ - 3 : ] == " _VM " :
ret . append ( self . vars [ v ] )
return ret
2010-12-03 07:31:39 +03:00
2010-12-10 04:13:58 +03:00
def run_dcpromo_as_first_dc ( self , vm , func_level = None ) :
self . setwinvars ( vm )
self . info ( " Configuring a windows VM $ {WIN_VM} at the first DC in the domain using dcpromo " )
child = self . open_telnet ( " $ {WIN_HOSTNAME} " , " administrator " , " $ {WIN_PASS} " , set_time = True )
if self . get_is_dc ( child ) :
return
if func_level == ' 2008r2 ' :
self . setvar ( " FUNCTION_LEVEL_INT " , str ( 4 ) )
elif func_level == ' 2003 ' :
self . setvar ( " FUNCTION_LEVEL_INT " , str ( 1 ) )
else :
self . setvar ( " FUNCTION_LEVEL_INT " , str ( 0 ) )
child = self . open_telnet ( " $ {WIN_HOSTNAME} " , " administrator " , " $ {WIN_PASS} " , set_ip = True , set_noexpire = True )
""" This server must therefore not yet be a directory server, so we must promote it """
child . sendline ( " copy /Y con answers.txt " )
child . sendline ( '''
[ DCInstall ]
; New forest promotion
ReplicaOrNewDomain = Domain
NewDomain = Forest
NewDomainDNSName = $ { WIN_REALM }
ForestLevel = $ { FUNCTION_LEVEL_INT }
DomainNetbiosName = $ { WIN_DOMAIN }
DomainLevel = $ { FUNCTION_LEVEL_INT }
InstallDNS = Yes
ConfirmGc = Yes
CreateDNSDelegation = No
DatabasePath = " C: \ Windows \ NTDS "
LogPath = " C: \ Windows \ NTDS "
SYSVOLPath = " C: \ Windows \ SYSVOL "
; Set SafeModeAdminPassword to the correct value prior to using the unattend file
SafeModeAdminPassword = $ { WIN_PASS }
; Run - time flags ( optional )
RebootOnCompletion = No
''' )
child . expect ( " copied. " )
child . expect ( " C: " )
child . expect ( " C: " )
child . sendline ( " dcpromo /answer:answers.txt " )
2012-11-05 12:35:51 +04:00
i = child . expect ( [ " You must restart this computer " , " failed " , " Active Directory Domain Services was not installed " , " C: " , pexpect . TIMEOUT ] , timeout = 240 )
2010-12-10 04:13:58 +03:00
if i == 1 or i == 2 :
raise Exception ( " dcpromo failed " )
2018-07-30 09:19:33 +03:00
if i == 4 : # timeout
2012-11-05 12:35:51 +04:00
child = self . open_telnet ( " $ {WIN_HOSTNAME} " , " administrator " , " $ {WIN_PASS} " )
2010-12-10 04:13:58 +03:00
child . sendline ( " shutdown -r -t 0 " )
self . port_wait ( " $ {WIN_IP} " , 139 , wait_for_fail = True )
self . port_wait ( " $ {WIN_IP} " , 139 )
2012-11-05 12:35:51 +04:00
child = self . open_telnet ( " $ {WIN_HOSTNAME} " , " administrator " , " $ {WIN_PASS} " )
# Check if we became a DC by now
if not self . get_is_dc ( child ) :
raise Exception ( " dcpromo failed (and wasn ' t a DC even after rebooting) " )
# Give DNS registration a kick
child . sendline ( " ipconfig /registerdns " )
2018-07-30 09:17:02 +03:00
self . retry_cmd ( " host -t SRV _ldap._tcp.$ {WIN_REALM} $ {WIN_IP} " , [ ' has SRV record ' ] , retries = 60 , delay = 5 )
2010-12-14 02:53:34 +03:00
def start_winvm ( self , vm ) :
''' start a Windows VM '''
self . setwinvars ( vm )
2018-08-21 02:47:07 +03:00
2010-12-14 02:53:34 +03:00
self . info ( " Joining a windows box to the domain " )
self . vm_poweroff ( " $ {WIN_VM} " , checkfail = False )
self . vm_restore ( " $ {WIN_VM} " , " $ {WIN_SNAPSHOT} " )
def run_winjoin ( self , vm , domain , username = " administrator " , password = " $ {PASSWORD1} " ) :
''' join a windows box to a domain '''
child = self . open_telnet ( " $ {WIN_HOSTNAME} " , " $ {WIN_USER} " , " $ {WIN_PASS} " , set_time = True , set_ip = True , set_noexpire = True )
2012-02-16 06:51:55 +04:00
retries = 5
while retries > 0 :
child . sendline ( " ipconfig /flushdns " )
child . expect ( " C: " )
child . sendline ( " netdom join $ {WIN_HOSTNAME} /Domain: %s /UserD: %s /PasswordD: %s " % ( domain , username , password ) )
2018-07-30 09:22:52 +03:00
i = child . expect ( [ " The command completed successfully " ,
2018-07-30 09:16:12 +03:00
" The specified domain either does not exist or could not be contacted. " ] , timeout = 120 )
2012-02-16 06:51:55 +04:00
if i == 0 :
break
time . sleep ( 10 )
retries - = 1
2010-12-14 02:53:34 +03:00
child . expect ( " C: " )
child . sendline ( " shutdown /r -t 0 " )
self . wait_reboot ( )
child = self . open_telnet ( " $ {WIN_HOSTNAME} " , " $ {WIN_USER} " , " $ {WIN_PASS} " , set_time = True , set_ip = True )
child . sendline ( " ipconfig /registerdns " )
child . expect ( " Registration of the DNS resource records for all adapters of this computer has been initiated. Any errors will be reported in the Event Viewer " )
child . expect ( " C: " )
def test_remote_smbclient ( self , vm , username = " $ {WIN_USER} " , password = " $ {WIN_PASS} " , args = " " ) :
''' test smbclient against remote server '''
self . setwinvars ( vm )
self . info ( ' Testing smbclient ' )
self . chdir ( ' $ {PREFIX} ' )
2012-05-30 17:22:52 +04:00
smbclient = self . getvar ( " smbclient " )
self . cmd_contains ( " %s --version " % ( smbclient ) , [ " $ {SAMBA_VERSION} " ] )
self . retry_cmd ( ' %s -L $ {WIN_HOSTNAME} -U %s %% %s %s ' % ( smbclient , username , password , args ) , [ " IPC " ] , retries = 60 , delay = 5 )
2010-12-10 04:13:58 +03:00
2012-02-16 06:51:32 +04:00
def test_net_use ( self , vm , realm , domain , username , password ) :
2011-04-07 02:54:52 +04:00
self . setwinvars ( vm )
self . info ( ' Testing net use against Samba3 member ' )
child = self . open_telnet ( " $ {WIN_HOSTNAME} " , " %s \\ %s " % ( domain , username ) , password )
2012-02-16 06:51:32 +04:00
child . sendline ( " net use t: \\ \\ $ {HOSTNAME} . %s \\ test " % realm )
2011-04-07 02:54:52 +04:00
child . expect ( " The command completed successfully " )
2010-12-03 07:31:39 +03:00
def setup ( self , testname , subdir ) :
''' setup for main tests, parsing command line '''
self . parser . add_option ( " --conf " , type = ' string ' , default = ' ' , help = ' config file ' )
self . parser . add_option ( " --skip " , type = ' string ' , default = ' ' , help = ' list of steps to skip (comma separated) ' )
self . parser . add_option ( " --vms " , type = ' string ' , default = None , help = ' list of VMs to use (comma separated) ' )
self . parser . add_option ( " --list " , action = ' store_true ' , default = False , help = ' list the available steps ' )
self . parser . add_option ( " --rebase " , action = ' store_true ' , default = False , help = ' do a git pull --rebase ' )
self . parser . add_option ( " --clean " , action = ' store_true ' , default = False , help = ' clean the tree ' )
self . parser . add_option ( " --prefix " , type = ' string ' , default = None , help = ' override install prefix ' )
self . parser . add_option ( " --sourcetree " , type = ' string ' , default = None , help = ' override sourcetree location ' )
self . parser . add_option ( " --nocleanup " , action = ' store_true ' , default = False , help = ' disable cleanup code ' )
2012-05-31 13:13:59 +04:00
self . parser . add_option ( " --use-ntvfs " , action = ' store_true ' , default = False , help = ' use NTVFS for the fileserver ' )
2012-05-31 16:15:47 +04:00
self . parser . add_option ( " --dns-backend " , type = " choice " ,
2018-07-30 09:16:12 +03:00
choices = [ " SAMBA_INTERNAL " , " BIND9_FLATFILE " , " BIND9_DLZ " , " NONE " ] ,
2018-07-30 09:22:01 +03:00
help = " The DNS server backend. SAMBA_INTERNAL is the builtin name server (default), "
" BIND9_FLATFILE uses bind9 text database to store zone information, "
" BIND9_DLZ uses samba4 AD to store zone information, "
2018-07-30 09:16:12 +03:00
" NONE skips the DNS setup entirely (not recommended) " ,
default = " SAMBA_INTERNAL " )
2010-12-03 07:31:39 +03:00
self . opts , self . args = self . parser . parse_args ( )
if not self . opts . conf :
print ( " Please specify a config file with --conf " )
sys . exit ( 1 )
# we don't need fsync safety in these tests
self . putenv ( ' TDB_NO_FSYNC ' , ' 1 ' )
self . load_config ( self . opts . conf )
2012-06-21 15:43:22 +04:00
nameserver = self . get_nameserver ( )
2012-09-12 12:34:41 +04:00
if nameserver == self . getvar ( ' NAMED_INTERFACE_IP ' ) :
2012-06-21 15:43:22 +04:00
raise RuntimeError ( " old /etc/resolv.conf must not contain %s as a nameserver, this will create loops with the generated dns configuration " % nameserver )
self . setvar ( ' DNSSERVER ' , nameserver )
2010-12-03 07:31:39 +03:00
self . set_skip ( self . opts . skip )
self . set_vms ( self . opts . vms )
if self . opts . list :
self . list_steps_mode ( )
if self . opts . prefix :
self . setvar ( ' PREFIX ' , self . opts . prefix )
if self . opts . sourcetree :
self . setvar ( ' SOURCETREE ' , self . opts . sourcetree )
if self . opts . rebase :
self . info ( ' rebasing ' )
self . chdir ( ' $ {SOURCETREE} ' )
self . run_cmd ( ' git pull --rebase ' )
if self . opts . clean :
self . info ( ' cleaning ' )
self . chdir ( ' $ {SOURCETREE} / ' + subdir )
self . run_cmd ( ' make clean ' )
2012-05-31 13:13:59 +04:00
if self . opts . use_ntvfs :
self . setvar ( ' USE_NTVFS ' , " --use-ntvfs " )
else :
self . setvar ( ' USE_NTVFS ' , " " )
2012-05-31 16:15:47 +04:00
self . setvar ( ' NAMESERVER_BACKEND ' , self . opts . dns_backend )
2012-09-12 12:34:41 +04:00
self . setvar ( ' DNS_FORWARDER ' , " --option=dns forwarder= %s " % nameserver )