3 '''automated testing library for testing Samba against windows'''
5 import pexpect
, subprocess
7 import sys
, os
, time
, re
10 '''testing of Samba against windows VMs'''
14 self
.list_mode
= False
16 os
.environ
['PYTHONUNBUFFERED'] = '1'
17 self
.parser
= optparse
.OptionParser("wintest")
19 def check_prerequesites(self
):
20 self
.info("Checking prerequesites")
21 self
.setvar('HOSTNAME', self
.cmd_output("hostname -s").strip())
23 raise Exception("You must run this script as root")
24 self
.run_cmd('ifconfig ${INTERFACE} ${INTERFACE_NET} up')
25 if self
.getvar('INTERFACE_IPV6'):
26 self
.run_cmd('ifconfig ${INTERFACE} inet6 del ${INTERFACE_IPV6}/64', checkfail
=False)
27 self
.run_cmd('ifconfig ${INTERFACE} inet6 add ${INTERFACE_IPV6}/64 up')
30 '''Shut down any existing alive VMs, so they do not collide with what we are doing'''
31 self
.info('Shutting down any of our VMs already running')
34 self
.vm_poweroff(v
, checkfail
=False)
36 def setvar(self
, varname
, value
):
37 '''set a substitution variable'''
38 self
.vars[varname
] = value
40 def getvar(self
, varname
):
41 '''return a substitution variable'''
42 if not varname
in self
.vars:
44 return self
.vars[varname
]
46 def setwinvars(self
, vm
, prefix
='WIN'):
47 '''setup WIN_XX vars based on a vm name'''
48 for v
in ['VM', 'HOSTNAME', 'USER', 'PASS', 'SNAPSHOT', 'REALM', 'DOMAIN', 'IP']:
49 vname
= '%s_%s' % (vm
, v
)
50 if vname
in self
.vars:
51 self
.setvar("%s_%s" % (prefix
,v
), self
.substitute("${%s}" % vname
))
53 self
.vars.pop("%s_%s" % (prefix
,v
), None)
55 if self
.getvar("WIN_REALM"):
56 self
.setvar("WIN_REALM", self
.getvar("WIN_REALM").upper())
57 self
.setvar("WIN_LCREALM", self
.getvar("WIN_REALM").lower())
58 dnsdomain
= self
.getvar("WIN_REALM")
59 self
.setvar("WIN_BASEDN", "DC=" + dnsdomain
.replace(".", ",DC="))
60 if self
.getvar("WIN_USER") is None:
61 self
.setvar("WIN_USER", "administrator")
64 '''print some information'''
65 if not self
.list_mode
:
66 print(self
.substitute(msg
))
68 def load_config(self
, fname
):
69 '''load the config file'''
73 if len(line
) == 0 or line
[0] == '#':
75 colon
= line
.find(':')
77 raise RuntimeError("Invalid config line '%s'" % line
)
78 varname
= line
[0:colon
].strip()
79 value
= line
[colon
+1:].strip()
80 self
.setvar(varname
, value
)
82 def list_steps_mode(self
):
83 '''put wintest in step listing mode'''
86 def set_skip(self
, skiplist
):
87 '''set a list of tests to skip'''
88 self
.skiplist
= skiplist
.split(',')
90 def set_vms(self
, vms
):
91 '''set a list of VMs to test'''
94 for vm
in vms
.split(','):
99 '''return True if we should skip a step'''
103 return step
in self
.skiplist
105 def substitute(self
, text
):
106 """Substitute strings of the form ${NAME} in text, replacing
107 with substitutions from vars.
109 if isinstance(text
, list):
111 for i
in range(len(ret
)):
112 ret
[i
] = self
.substitute(ret
[i
])
115 """We may have objects such as pexpect.EOF that are not strings"""
116 if not isinstance(text
, str):
119 var_start
= text
.find("${")
122 var_end
= text
.find("}", var_start
)
125 var_name
= text
[var_start
+2:var_end
]
126 if not var_name
in self
.vars:
127 raise RuntimeError("Unknown substitution variable ${%s}" % var_name
)
128 text
= text
.replace("${%s}" % var_name
, self
.vars[var_name
])
131 def have_var(self
, varname
):
132 '''see if a variable has been set'''
133 return varname
in self
.vars
135 def have_vm(self
, vmname
):
136 '''see if a VM should be used'''
137 if not self
.have_var(vmname
+ '_VM'):
141 return vmname
in self
.vms
143 def putenv(self
, key
, value
):
144 '''putenv with substitution'''
145 os
.environ
[key
] = self
.substitute(value
)
147 def chdir(self
, dir):
148 '''chdir with substitution'''
149 os
.chdir(self
.substitute(dir))
151 def del_files(self
, dirs
):
152 '''delete all files in the given directory'''
154 self
.run_cmd("find %s -type f | xargs rm -f" % d
)
156 def write_file(self
, filename
, text
, mode
='w'):
157 '''write to a file'''
158 f
= open(self
.substitute(filename
), mode
=mode
)
159 f
.write(self
.substitute(text
))
162 def run_cmd(self
, cmd
, dir=".", show
=None, output
=False, checkfail
=True):
164 cmd
= self
.substitute(cmd
)
165 if isinstance(cmd
, list):
166 self
.info('$ ' + " ".join(cmd
))
168 self
.info('$ ' + cmd
)
170 return subprocess
.Popen([cmd
], shell
=True, stdout
=subprocess
.PIPE
, stderr
=subprocess
.STDOUT
, cwd
=dir).communicate()[0]
171 if isinstance(cmd
, list):
176 return subprocess
.check_call(cmd
, shell
=shell
, cwd
=dir)
178 return subprocess
.call(cmd
, shell
=shell
, cwd
=dir)
181 def run_child(self
, cmd
, dir="."):
182 '''create a child and return the Popen handle to it'''
184 cmd
= self
.substitute(cmd
)
185 if isinstance(cmd
, list):
186 self
.info('$ ' + " ".join(cmd
))
188 self
.info('$ ' + cmd
)
189 if isinstance(cmd
, list):
194 ret
= subprocess
.Popen(cmd
, shell
=shell
, stderr
=subprocess
.STDOUT
)
198 def cmd_output(self
, cmd
):
199 '''return output from and command'''
200 cmd
= self
.substitute(cmd
)
201 return self
.run_cmd(cmd
, output
=True)
203 def cmd_contains(self
, cmd
, contains
, nomatch
=False, ordered
=False, regex
=False,
205 '''check that command output contains the listed strings'''
207 if isinstance(contains
, str):
208 contains
= [contains
]
210 out
= self
.cmd_output(cmd
)
212 for c
in self
.substitute(contains
):
217 m
= re
.search(c
, out
)
225 start
= out
.upper().find(c
.upper())
232 raise RuntimeError("Expected to not see %s in %s" % (c
, cmd
))
235 raise RuntimeError("Expected to see %s in %s" % (c
, cmd
))
236 if ordered
and start
!= -1:
239 def retry_cmd(self
, cmd
, contains
, retries
=30, delay
=2, wait_for_fail
=False,
240 ordered
=False, regex
=False, casefold
=True):
241 '''retry a command a number of times'''
244 self
.cmd_contains(cmd
, contains
, nomatch
=wait_for_fail
,
245 ordered
=ordered
, regex
=regex
, casefold
=casefold
)
250 self
.info("retrying (retries=%u delay=%u)" % (retries
, delay
))
251 raise RuntimeError("Failed to find %s" % contains
)
253 def pexpect_spawn(self
, cmd
, timeout
=60, crlf
=True, casefold
=True):
254 '''wrapper around pexpect spawn'''
255 cmd
= self
.substitute(cmd
)
256 self
.info("$ " + cmd
)
257 ret
= pexpect
.spawn(cmd
, logfile
=sys
.stdout
, timeout
=timeout
)
259 def sendline_sub(line
):
260 line
= self
.substitute(line
)
262 line
= line
.replace('\n', '\r\n') + '\r'
263 return ret
.old_sendline(line
)
265 def expect_sub(line
, timeout
=ret
.timeout
, casefold
=casefold
):
266 line
= self
.substitute(line
)
268 if isinstance(line
, list):
269 for i
in range(len(line
)):
270 if isinstance(line
[i
], str):
271 line
[i
] = '(?i)' + line
[i
]
272 elif isinstance(line
, str):
274 return ret
.old_expect(line
, timeout
=timeout
)
276 ret
.old_sendline
= ret
.sendline
277 ret
.sendline
= sendline_sub
278 ret
.old_expect
= ret
.expect
279 ret
.expect
= expect_sub
283 def get_nameserver(self
):
284 '''Get the current nameserver from /etc/resolv.conf'''
285 child
= self
.pexpect_spawn('cat /etc/resolv.conf', crlf
=False)
286 i
= child
.expect(['Generated by wintest', 'nameserver'])
288 child
.expect('your original resolv.conf')
289 child
.expect('nameserver')
290 child
.expect('\d+.\d+.\d+.\d+')
293 def rndc_cmd(self
, cmd
, checkfail
=True):
294 '''run a rndc command'''
295 self
.run_cmd("${RNDC} -c ${PREFIX}/etc/rndc.conf %s" % cmd
, checkfail
=checkfail
)
297 def named_supports_gssapi_keytab(self
):
298 '''see if named supports tkey-gssapi-keytab'''
299 self
.write_file("${PREFIX}/named.conf.test",
300 'options { tkey-gssapi-keytab "test"; };')
302 self
.run_cmd("${NAMED_CHECKCONF} ${PREFIX}/named.conf.test")
303 except subprocess
.CalledProcessError
:
307 def set_nameserver(self
, nameserver
):
308 '''set the nameserver in resolv.conf'''
309 self
.write_file("/etc/resolv.conf.wintest", '''
310 # Generated by wintest, the Samba v Windows automated testing system
313 # your original resolv.conf appears below:
314 ''' % self
.substitute(nameserver
))
315 child
= self
.pexpect_spawn("cat /etc/resolv.conf", crlf
=False)
316 i
= child
.expect(['your original resolv.conf appears below:', pexpect
.EOF
])
318 child
.expect(pexpect
.EOF
)
319 contents
= child
.before
.lstrip().replace('\r', '')
320 self
.write_file('/etc/resolv.conf.wintest', contents
, mode
='a')
321 self
.write_file('/etc/resolv.conf.wintest-bak', contents
)
322 self
.run_cmd("mv -f /etc/resolv.conf.wintest /etc/resolv.conf")
323 self
.resolv_conf_backup
= '/etc/resolv.conf.wintest-bak';
325 def configure_bind(self
, kerberos_support
=False, include
=None):
326 self
.chdir('${PREFIX}')
328 if self
.getvar('INTERFACE_IPV6'):
329 ipv6_listen
= 'listen-on-v6 port 53 { ${INTERFACE_IPV6}; };'
332 self
.setvar('BIND_LISTEN_IPV6', ipv6_listen
)
334 if not kerberos_support
:
335 self
.setvar("NAMED_TKEY_OPTION", "")
337 if self
.named_supports_gssapi_keytab():
338 self
.setvar("NAMED_TKEY_OPTION",
339 'tkey-gssapi-keytab "${PREFIX}/private/dns.keytab";')
341 self
.info("LCREALM=${LCREALM}")
342 self
.setvar("NAMED_TKEY_OPTION",
343 '''tkey-gssapi-credential "DNS/${LCREALM}";
344 tkey-domain "${LCREALM}";
346 self
.putenv('KEYTAB_FILE', '${PREFIX}/private/dns.keytab')
347 self
.putenv('KRB5_KTNAME', '${PREFIX}/private/dns.keytab')
350 self
.setvar("NAMED_INCLUDE", 'include "%s";' % include
)
352 self
.setvar("NAMED_INCLUDE", '')
354 self
.run_cmd("mkdir -p ${PREFIX}/etc")
356 self
.write_file("etc/named.conf", '''
358 listen-on port 53 { ${INTERFACE_IP}; };
360 directory "${PREFIX}/var/named";
361 dump-file "${PREFIX}/var/named/data/cache_dump.db";
362 pid-file "${PREFIX}/var/named/named.pid";
363 statistics-file "${PREFIX}/var/named/data/named_stats.txt";
364 memstatistics-file "${PREFIX}/var/named/data/named_mem_stats.txt";
365 allow-query { any; };
380 secret "lA/cTrno03mt5Ju17ybEYw==";
384 inet ${INTERFACE_IP} port 953
385 allow { any; } keys { "rndc-key"; };
391 # add forwarding for the windows domains
392 domains
= self
.get_domains()
394 self
.write_file('etc/named.conf',
403 ''' % (d
, domains
[d
]),
407 self
.write_file("etc/rndc.conf", '''
411 secret "lA/cTrno03mt5Ju17ybEYw==";
415 default-key "rndc-key";
416 default-server ${INTERFACE_IP};
423 '''Stop our private BIND from listening and operating'''
424 self
.rndc_cmd("stop", checkfail
=False)
425 self
.port_wait("${INTERFACE_IP}", 53, wait_for_fail
=True)
427 self
.run_cmd("rm -rf var/named")
430 def start_bind(self
):
431 '''restart the test environment version of bind'''
432 self
.info("Restarting bind9")
433 self
.chdir('${PREFIX}')
435 self
.run_cmd("mkdir -p var/named/data")
436 self
.run_cmd("chown -R ${BIND_USER} var/named")
438 self
.bind_child
= self
.run_child("${BIND9} -u ${BIND_USER} -n 1 -c ${PREFIX}/etc/named.conf -g")
440 self
.port_wait("${INTERFACE_IP}", 53)
441 self
.rndc_cmd("flush")
443 def restart_bind(self
, kerberos_support
=False, include
=None):
444 self
.configure_bind(kerberos_support
=kerberos_support
, include
=include
)
448 def restore_resolv_conf(self
):
449 '''restore the /etc/resolv.conf after testing is complete'''
450 if getattr(self
, 'resolv_conf_backup', False):
451 self
.info("restoring /etc/resolv.conf")
452 self
.run_cmd("mv -f %s /etc/resolv.conf" % self
.resolv_conf_backup
)
455 def vm_poweroff(self
, vmname
, checkfail
=True):
457 self
.setvar('VMNAME', vmname
)
458 self
.run_cmd("${VM_POWEROFF}", checkfail
=checkfail
)
460 def vm_reset(self
, vmname
):
462 self
.setvar('VMNAME', vmname
)
463 self
.run_cmd("${VM_RESET}")
465 def vm_restore(self
, vmname
, snapshot
):
467 self
.setvar('VMNAME', vmname
)
468 self
.setvar('SNAPSHOT', snapshot
)
469 self
.run_cmd("${VM_RESTORE}")
471 def ping_wait(self
, hostname
):
472 '''wait for a hostname to come up on the network'''
473 hostname
= self
.substitute(hostname
)
477 self
.run_cmd("ping -c 1 -w 10 %s" % hostname
)
482 raise RuntimeError("Failed to ping %s" % hostname
)
483 self
.info("Host %s is up" % hostname
)
485 def port_wait(self
, hostname
, port
, retries
=200, delay
=3, wait_for_fail
=False):
486 '''wait for a host to come up on the network'''
489 child
= self
.pexpect_spawn("nc -v -z -w 1 %s %u" % (hostname
, port
), crlf
=False, timeout
=1)
490 child
.expect([pexpect
.EOF
, pexpect
.TIMEOUT
])
494 #wait for timeout or fail
495 if i
== None or i
> 0:
503 self
.info("retrying (retries=%u delay=%u)" % (retries
, delay
))
505 raise RuntimeError("gave up waiting for %s:%d" % (hostname
, port
))
507 def run_net_time(self
, child
):
508 '''run net time on windows'''
509 child
.sendline("net time \\\\${HOSTNAME} /set")
510 child
.expect("Do you want to set the local computer")
512 child
.expect("The command completed successfully")
514 def run_date_time(self
, child
, time_tuple
=None):
515 '''run date and time on windows'''
516 if time_tuple
is None:
517 time_tuple
= time
.localtime()
518 child
.sendline("date")
519 child
.expect("Enter the new date:")
520 i
= child
.expect(["dd-mm-yy", "mm-dd-yy"])
522 child
.sendline(time
.strftime("%d-%m-%y", time_tuple
))
524 child
.sendline(time
.strftime("%m-%d-%y", time_tuple
))
526 child
.sendline("time")
527 child
.expect("Enter the new time:")
528 child
.sendline(time
.strftime("%H:%M:%S", time_tuple
))
531 def get_ipconfig(self
, child
):
532 '''get the IP configuration of the child'''
533 child
.sendline("ipconfig /all")
534 child
.expect('Ethernet adapter ')
535 child
.expect("[\w\s]+")
536 self
.setvar("WIN_NIC", child
.after
)
537 child
.expect(['IPv4 Address', 'IP Address'])
538 child
.expect('\d+.\d+.\d+.\d+')
539 self
.setvar('WIN_IPV4_ADDRESS', child
.after
)
540 child
.expect('Subnet Mask')
541 child
.expect('\d+.\d+.\d+.\d+')
542 self
.setvar('WIN_SUBNET_MASK', child
.after
)
543 child
.expect('Default Gateway')
544 i
= child
.expect(['\d+.\d+.\d+.\d+', "C:"])
546 self
.setvar('WIN_DEFAULT_GATEWAY', child
.after
)
549 def get_is_dc(self
, child
):
550 '''check if a windows machine is a domain controller'''
551 child
.sendline("dcdiag")
552 i
= child
.expect(["is not a [Directory Server|DC]",
553 "is not recognized as an internal or external command",
555 "passed test Replications"])
560 child
.sendline("net config Workstation")
561 child
.expect("Workstation domain")
562 child
.expect('[\S]+')
564 i
= child
.expect(["Workstation Domain DNS Name", "Logon domain"])
565 '''If we get the Logon domain first, we are not in an AD domain'''
568 if domain
.upper() == self
.getvar("WIN_DOMAIN").upper():
571 child
.expect('[\S]+')
572 hostname
= child
.after
573 if hostname
.upper() == self
.getvar("WIN_HOSTNAME").upper():
576 def set_noexpire(self
, child
, username
):
577 """Ensure this user's password does not expire"""
578 child
.sendline('wmic useraccount where name="%s" set PasswordExpires=FALSE' % username
)
579 child
.expect("update successful")
582 def run_tlntadmn(self
, child
):
583 '''remove the annoying telnet restrictions'''
584 child
.sendline('tlntadmn config maxconn=1024')
585 child
.expect(["The settings were successfully updated", "Access is denied"])
588 def disable_firewall(self
, child
):
589 '''remove the annoying firewall'''
590 child
.sendline('netsh advfirewall set allprofiles state off')
591 i
= child
.expect(["Ok", "The following command was not found: advfirewall set allprofiles state off", "The requested operation requires elevation", "Access is denied"])
594 child
.sendline('netsh firewall set opmode mode = DISABLE profile = ALL')
595 i
= child
.expect(["Ok", "The following command was not found", "Access is denied"])
597 self
.info("Firewall disable failed - ignoring")
600 def set_dns(self
, child
):
601 child
.sendline('netsh interface ip set dns "${WIN_NIC}" static ${INTERFACE_IP} primary')
602 i
= child
.expect(['C:', pexpect
.EOF
, pexpect
.TIMEOUT
], timeout
=5)
608 def set_ip(self
, child
):
609 """fix the IP address to the same value it had when we
610 connected, but don't use DHCP, and force the DNS server to our
611 DNS server. This allows DNS updates to run"""
612 self
.get_ipconfig(child
)
613 if self
.getvar("WIN_IPV4_ADDRESS") != self
.getvar("WIN_IP"):
614 raise RuntimeError("ipconfig address %s != nmblookup address %s" % (self
.getvar("WIN_IPV4_ADDRESS"),
615 self
.getvar("WIN_IP")))
616 child
.sendline('netsh')
617 child
.expect('netsh>')
618 child
.sendline('offline')
619 child
.expect('netsh>')
620 child
.sendline('routing ip add persistentroute dest=0.0.0.0 mask=0.0.0.0 name="${WIN_NIC}" nhop=${WIN_DEFAULT_GATEWAY}')
621 child
.expect('netsh>')
622 child
.sendline('interface ip set address "${WIN_NIC}" static ${WIN_IPV4_ADDRESS} ${WIN_SUBNET_MASK} ${WIN_DEFAULT_GATEWAY} 1 store=persistent')
623 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)
625 child
.sendline('interface ip set address "${WIN_NIC}" static ${WIN_IPV4_ADDRESS} ${WIN_SUBNET_MASK} ${WIN_DEFAULT_GATEWAY} 1')
626 child
.expect('netsh>')
627 child
.sendline('commit')
628 child
.sendline('online')
629 child
.sendline('exit')
631 child
.expect([pexpect
.EOF
, pexpect
.TIMEOUT
], timeout
=5)
635 def resolve_ip(self
, hostname
, retries
=60, delay
=5):
636 '''resolve an IP given a hostname, assuming NBT'''
638 child
= self
.pexpect_spawn("bin/nmblookup %s" % hostname
)
641 i
= child
.expect(["querying", '\d+.\d+.\d+.\d+', hostname
, "Lookup failed"])
648 self
.info("retrying (retries=%u delay=%u)" % (retries
, delay
))
649 raise RuntimeError("Failed to resolve IP of %s" % hostname
)
652 def open_telnet(self
, hostname
, username
, password
, retries
=60, delay
=5, set_time
=False, set_ip
=False,
653 disable_firewall
=True, run_tlntadmn
=True, set_noexpire
=False):
654 '''open a telnet connection to a windows server, return the pexpect child'''
657 set_telnetclients
= True
658 if self
.getvar('WIN_IP'):
659 ip
= self
.getvar('WIN_IP')
661 ip
= self
.resolve_ip(hostname
)
662 self
.setvar('WIN_IP', ip
)
664 child
= self
.pexpect_spawn("telnet " + ip
+ " -l '" + username
+ "'")
665 i
= child
.expect(["Welcome to Microsoft Telnet Service",
666 "Denying new connections due to the limit on number of connections",
667 "No more connections are allowed to telnet server",
668 "Unable to connect to remote host",
670 "Connection refused",
676 self
.info("retrying (retries=%u delay=%u)" % (retries
, delay
))
678 child
.expect("password:")
679 child
.sendline(password
)
680 i
= child
.expect(["C:",
682 "Denying new connections due to the limit on number of connections",
683 "No more connections are allowed to telnet server",
684 "Unable to connect to remote host",
686 "Connection refused",
689 if set_telnetclients
:
690 self
.run_cmd('bin/net rpc group addmem TelnetClients "authenticated users" -S $WIN_IP -U$WIN_USER%$WIN_PASS')
693 set_telnetclients
= False
694 self
.info("retrying (retries=%u delay=%u)" % (retries
, delay
))
697 raise RuntimeError("Failed to connect with telnet due to missing TelnetClients membership")
703 self
.info("retrying (retries=%u delay=%u)" % (retries
, delay
))
707 if self
.set_dns(child
):
710 child
.sendline('route add 0.0.0.0 mask 0.0.0.0 ${WIN_DEFAULT_GATEWAY}')
714 self
.run_date_time(child
, None)
717 self
.run_tlntadmn(child
)
720 self
.set_noexpire(child
, username
)
723 self
.disable_firewall(child
)
724 disable_firewall
= False
727 if self
.set_ip(child
):
732 raise RuntimeError("Failed to connect with telnet")
734 def kinit(self
, username
, password
):
735 '''use kinit to setup a credentials cache'''
736 self
.run_cmd("kdestroy")
737 self
.putenv('KRB5CCNAME', "${PREFIX}/ccache.test")
738 username
= self
.substitute(username
)
739 s
= username
.split('@')
742 username
= '@'.join(s
)
743 child
= self
.pexpect_spawn('kinit ' + username
)
744 child
.expect("Password")
745 child
.sendline(password
)
746 child
.expect(pexpect
.EOF
)
748 if child
.exitstatus
!= 0:
749 raise RuntimeError("kinit failed with status %d" % child
.exitstatus
)
751 def get_domains(self
):
752 '''return a dictionary of DNS domains and IPs for named.conf'''
755 if v
[-6:] == "_REALM":
757 if base
+ '_IP' in self
.vars:
758 ret
[self
.vars[base
+ '_REALM']] = self
.vars[base
+ '_IP']
761 def wait_reboot(self
, retries
=3):
762 '''wait for a VM to reboot'''
764 # first wait for it to shutdown
765 self
.port_wait("${WIN_IP}", 139, wait_for_fail
=True, delay
=6)
767 # now wait for it to come back. If it fails to come back
768 # then try resetting it
771 self
.port_wait("${WIN_IP}", 139)
775 self
.vm_reset("${WIN_VM}")
776 self
.info("retrying reboot (retries=%u)" % retries
)
777 raise RuntimeError(self
.substitute("VM ${WIN_VM} failed to reboot"))
780 '''return a dictionary of all the configured VM names'''
784 ret
.append(self
.vars[v
])
788 def run_dcpromo_as_first_dc(self
, vm
, func_level
=None):
790 self
.info("Configuring a windows VM ${WIN_VM} at the first DC in the domain using dcpromo")
791 child
= self
.open_telnet("${WIN_HOSTNAME}", "administrator", "${WIN_PASS}", set_time
=True)
792 if self
.get_is_dc(child
):
795 if func_level
== '2008r2':
796 self
.setvar("FUNCTION_LEVEL_INT", str(4))
797 elif func_level
== '2003':
798 self
.setvar("FUNCTION_LEVEL_INT", str(1))
800 self
.setvar("FUNCTION_LEVEL_INT", str(0))
802 child
= self
.open_telnet("${WIN_HOSTNAME}", "administrator", "${WIN_PASS}", set_ip
=True, set_noexpire
=True)
804 """This server must therefore not yet be a directory server, so we must promote it"""
805 child
.sendline("copy /Y con answers.txt")
808 ; New forest promotion
809 ReplicaOrNewDomain=Domain
811 NewDomainDNSName=${WIN_REALM}
812 ForestLevel=${FUNCTION_LEVEL_INT}
813 DomainNetbiosName=${WIN_DOMAIN}
814 DomainLevel=${FUNCTION_LEVEL_INT}
817 CreateDNSDelegation=No
818 DatabasePath="C:\Windows\NTDS"
819 LogPath="C:\Windows\NTDS"
820 SYSVOLPath="C:\Windows\SYSVOL"
821 ; Set SafeModeAdminPassword to the correct value prior to using the unattend file
822 SafeModeAdminPassword=${WIN_PASS}
823 ; Run-time flags (optional)
824 RebootOnCompletion=No
827 child
.expect("copied.")
830 child
.sendline("dcpromo /answer:answers.txt")
831 i
= child
.expect(["You must restart this computer", "failed", "Active Directory Domain Services was not installed", "C:"], timeout
=240)
833 raise Exception("dcpromo failed")
834 child
.sendline("shutdown -r -t 0")
835 self
.port_wait("${WIN_IP}", 139, wait_for_fail
=True)
836 self
.port_wait("${WIN_IP}", 139)
837 self
.retry_cmd("host -t SRV _ldap._tcp.${WIN_REALM} ${WIN_IP}", ['has SRV record'], retries
=60, delay
=5 )
840 def start_winvm(self
, vm
):
841 '''start a Windows VM'''
844 self
.info("Joining a windows box to the domain")
845 self
.vm_poweroff("${WIN_VM}", checkfail
=False)
846 self
.vm_restore("${WIN_VM}", "${WIN_SNAPSHOT}")
848 def run_winjoin(self
, vm
, domain
, username
="administrator", password
="${PASSWORD1}"):
849 '''join a windows box to a domain'''
850 child
= self
.open_telnet("${WIN_HOSTNAME}", "${WIN_USER}", "${WIN_PASS}", set_time
=True, set_ip
=True, set_noexpire
=True)
853 child
.sendline("ipconfig /flushdns")
855 child
.sendline("netdom join ${WIN_HOSTNAME} /Domain:%s /UserD:%s /PasswordD:%s" % (domain
, username
, password
))
856 i
= child
.expect(["The command completed successfully",
857 "The specified domain either does not exist or could not be contacted."])
864 child
.sendline("shutdown /r -t 0")
866 child
= self
.open_telnet("${WIN_HOSTNAME}", "${WIN_USER}", "${WIN_PASS}", set_time
=True, set_ip
=True)
867 child
.sendline("ipconfig /registerdns")
868 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")
872 def test_remote_smbclient(self
, vm
, username
="${WIN_USER}", password
="${WIN_PASS}", args
=""):
873 '''test smbclient against remote server'''
875 self
.info('Testing smbclient')
876 self
.chdir('${PREFIX}')
877 smbclient
= self
.getvar("smbclient")
878 self
.cmd_contains("%s --version" % (smbclient
), ["${SAMBA_VERSION}"])
879 self
.retry_cmd('%s -L ${WIN_HOSTNAME} -U%s%%%s %s' % (smbclient
, username
, password
, args
), ["IPC"], retries
=60, delay
=5)
881 def test_net_use(self
, vm
, realm
, domain
, username
, password
):
883 self
.info('Testing net use against Samba3 member')
884 child
= self
.open_telnet("${WIN_HOSTNAME}", "%s\\%s" % (domain
, username
), password
)
885 child
.sendline("net use t: \\\\${HOSTNAME}.%s\\test" % realm
)
886 child
.expect("The command completed successfully")
889 def setup(self
, testname
, subdir
):
890 '''setup for main tests, parsing command line'''
891 self
.parser
.add_option("--conf", type='string', default
='', help='config file')
892 self
.parser
.add_option("--skip", type='string', default
='', help='list of steps to skip (comma separated)')
893 self
.parser
.add_option("--vms", type='string', default
=None, help='list of VMs to use (comma separated)')
894 self
.parser
.add_option("--list", action
='store_true', default
=False, help='list the available steps')
895 self
.parser
.add_option("--rebase", action
='store_true', default
=False, help='do a git pull --rebase')
896 self
.parser
.add_option("--clean", action
='store_true', default
=False, help='clean the tree')
897 self
.parser
.add_option("--prefix", type='string', default
=None, help='override install prefix')
898 self
.parser
.add_option("--sourcetree", type='string', default
=None, help='override sourcetree location')
899 self
.parser
.add_option("--nocleanup", action
='store_true', default
=False, help='disable cleanup code')
900 self
.parser
.add_option("--use-ntvfs", action
='store_true', default
=False, help='use NTVFS for the fileserver')
901 self
.parser
.add_option("--dns-backend", type="choice",
902 choices
=["SAMBA_INTERNAL", "BIND9_FLATFILE", "BIND9_DLZ", "NONE"],
903 help="The DNS server backend. SAMBA_INTERNAL is the builtin name server, " \
904 "BIND9_FLATFILE uses bind9 text database to store zone information, " \
905 "BIND9_DLZ uses samba4 AD to store zone information (default), " \
906 "NONE skips the DNS setup entirely (not recommended)",
909 self
.opts
, self
.args
= self
.parser
.parse_args()
911 if not self
.opts
.conf
:
912 print("Please specify a config file with --conf")
915 # we don't need fsync safety in these tests
916 self
.putenv('TDB_NO_FSYNC', '1')
918 self
.load_config(self
.opts
.conf
)
920 nameserver
= self
.get_nameserver()
921 if nameserver
== self
.getvar('INTERFACE_IP'):
922 raise RuntimeError("old /etc/resolv.conf must not contain %s as a nameserver, this will create loops with the generated dns configuration" % nameserver
)
923 self
.setvar('DNSSERVER', nameserver
)
925 self
.set_skip(self
.opts
.skip
)
926 self
.set_vms(self
.opts
.vms
)
929 self
.list_steps_mode()
932 self
.setvar('PREFIX', self
.opts
.prefix
)
934 if self
.opts
.sourcetree
:
935 self
.setvar('SOURCETREE', self
.opts
.sourcetree
)
938 self
.info('rebasing')
939 self
.chdir('${SOURCETREE}')
940 self
.run_cmd('git pull --rebase')
943 self
.info('cleaning')
944 self
.chdir('${SOURCETREE}/' + subdir
)
945 self
.run_cmd('make clean')
947 if self
.opts
.use_ntvfs
:
948 self
.setvar('USE_NTVFS', "--use-ntvfs")
950 self
.setvar('USE_NTVFS', "")
952 self
.setvar('NAMESERVER_BACKEND', self
.opts
.dns_backend
)
954 if self
.opts
.dns_backend
== 'SAMBA_INTERNAL':
955 self
.setvar('ALLOW_DNS_UPDATES', '--option=allow dns updates = True')
956 # we need recursive queries, since host expects answers with RA-bit
957 self
.setvar('DNS_RECURSIVE_QUERIES', '--option=dns recursive queries = Yes')
958 self
.setvar('DNS_FORWARDER', "--option=dns forwarder = %s" % nameserver
)
960 self
.setvar('ALLOW_DNS_UPDATES', '')
961 self
.setvar('DNS_RECURSIVE_QUERIES', '')
962 self
.setvar('DNS_FORWARDER', '')