Since time.xmlrpc.com is unreliable, add another test to test_xmlrpc_net

This commit is contained in:
Antoine Pitrou 2009-11-03 17:13:59 +00:00
parent f964ac258e
commit 305c6b8fee
1 changed files with 17 additions and 2 deletions

View File

@ -1,5 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
import collections
import errno import errno
import socket import socket
import sys import sys
@ -17,8 +18,7 @@ class CurrentTimeTest(unittest.TestCase):
try: try:
t0 = server.currentTime.getCurrentTime() t0 = server.currentTime.getCurrentTime()
except socket.error as e: except socket.error as e:
print(" test_current_time: skipping test, got error: %s" % e, self.skipTest("network error: %s" % e)
file=sys.stderr)
return return
# Perform a minimal sanity check on the result, just to be sure # Perform a minimal sanity check on the result, just to be sure
@ -35,6 +35,21 @@ class CurrentTimeTest(unittest.TestCase):
# time on the server should not be too big. # time on the server should not be too big.
self.assertTrue(delta.days <= 1) self.assertTrue(delta.days <= 1)
def test_python_builders(self):
# Get the list of builders from the XMLRPC buildbot interface at
# python.org.
server = xmlrpclib.ServerProxy("http://www.python.org/dev/buildbot/all/xmlrpc/")
try:
builders = server.getAllBuilders()
except socket.error as e:
self.skipTest("network error: %s" % e)
return
# Perform a minimal sanity check on the result, just to be sure
# the request means what we think it means.
self.assertIsInstance(builders, collections.Sequence)
self.assertTrue([x for x in builders if "trunk" in x], builders)
def test_main(): def test_main():
support.requires("network") support.requires("network")