summaryrefslogtreecommitdiff
path: root/wintest/wintest.py
AgeCommit message (Collapse)AuthorFilesLines
2010-11-23wintest Improve wintest's handling of IP addresses and add more auto-setupAndrew Bartlett1-12/+62
- Don't change the IP address if DHCP is not in use The main reason to 'fix' the IP is to get around Dynamic DNS issues caused by the DHCP server, if the VM is already on a fixed IP, it does not matter. - Set the maximum telnet connection limit to 1024 This ensures that we can always make a new connection, regardless of the existing configuration. We also catch more conditions when the server has restricted the number of connections, and try again. - Set the route after the connection drops out My WinXP box always wants to drop the default route - Set the DNS as a distinct step My WinXP box drops the connection when we set DNS servers Andrew Bartlett
2010-11-23wintest Allow substitute to cope with objects like pexpect.EOFAndrew Bartlett1-0/+3
These are not strings, but may get passed into this function on the way to pexpect. Andrew Bartlett
2010-11-23wintest Set the virtual machine IP to match it's dynamic IP, but don't use DHCPAndrew Bartlett1-4/+66
The idea here is that the virtual machine stays on the address allocated by DHCP, but is configured statically. This avoids the need to manually set the address on the host, but avoids the host being instructed by DHCP not to do Dynamic DNS. Andrew Bartlett
2010-11-19wintest: added del_files, write_file and casefoldAndrew Tridgell1-3/+21
2010-11-19wintest: moved to top levelAndrew Tridgell1-0/+266
the plan is to expand wintest to test a lot more of Samba against windows, including testing the Samba3 file server, winbind, nmbd etc