2001-08-20 19:39:42 -03:00
|
|
|
# Test just the SSL support in the socket module, in a moderately bogus way.
|
|
|
|
|
2006-03-31 15:09:56 -04:00
|
|
|
import sys
|
2007-04-03 11:05:08 -03:00
|
|
|
import unittest
|
2002-07-23 16:04:11 -03:00
|
|
|
from test import test_support
|
2002-12-03 23:26:57 -04:00
|
|
|
import socket
|
2006-06-20 14:30:26 -03:00
|
|
|
import errno
|
2007-04-03 11:05:08 -03:00
|
|
|
import threading
|
|
|
|
import subprocess
|
|
|
|
import time
|
2007-04-03 14:29:48 -03:00
|
|
|
import ctypes
|
|
|
|
import os
|
|
|
|
import urllib
|
2007-04-03 11:05:08 -03:00
|
|
|
|
|
|
|
# Optionally test SSL support, if we have it in the tested platform
|
|
|
|
skip_expected = not hasattr(socket, "ssl")
|
|
|
|
|
|
|
|
class ConnectedTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def testBasic(self):
|
|
|
|
socket.RAND_status()
|
2003-06-30 00:25:20 -03:00
|
|
|
try:
|
2007-04-03 11:05:08 -03:00
|
|
|
socket.RAND_egd(1)
|
|
|
|
except TypeError:
|
2003-06-30 00:25:20 -03:00
|
|
|
pass
|
|
|
|
else:
|
2007-04-03 11:05:08 -03:00
|
|
|
print "didn't raise TypeError"
|
|
|
|
socket.RAND_add("this is a random string", 75.0)
|
|
|
|
|
|
|
|
with test_support.transient_internet():
|
|
|
|
f = urllib.urlopen('https://sf.net')
|
|
|
|
buf = f.read()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def testTimeout(self):
|
|
|
|
def error_msg(extra_msg):
|
|
|
|
print >> sys.stderr, """\
|
|
|
|
WARNING: an attempt to connect to %r %s, in
|
|
|
|
test_timeout. That may be legitimate, but is not the outcome we
|
|
|
|
hoped for. If this message is seen often, test_timeout should be
|
|
|
|
changed to use a more reliable address.""" % (ADDR, extra_msg)
|
|
|
|
|
|
|
|
# A service which issues a welcome banner (without need to write
|
|
|
|
# anything).
|
|
|
|
# XXX ("gmail.org", 995) has been unreliable so far, from time to
|
|
|
|
# XXX time non-responsive for hours on end (& across all buildbot
|
|
|
|
# XXX slaves, so that's not just a local thing).
|
|
|
|
ADDR = "gmail.org", 995
|
|
|
|
|
|
|
|
s = socket.socket()
|
|
|
|
s.settimeout(30.0)
|
|
|
|
try:
|
|
|
|
s.connect(ADDR)
|
|
|
|
except socket.timeout:
|
|
|
|
error_msg('timed out')
|
|
|
|
return
|
|
|
|
except socket.error, exc: # In case connection is refused.
|
|
|
|
if exc.args[0] == errno.ECONNREFUSED:
|
|
|
|
error_msg('was refused')
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
|
|
|
|
ss = socket.ssl(s)
|
|
|
|
# Read part of return welcome banner twice.
|
|
|
|
ss.read(1)
|
|
|
|
ss.read(1)
|
|
|
|
s.close()
|
|
|
|
|
|
|
|
class BasicTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def testRudeShutdown(self):
|
|
|
|
# Some random port to connect to.
|
|
|
|
PORT = [9934]
|
|
|
|
|
|
|
|
listener_ready = threading.Event()
|
|
|
|
listener_gone = threading.Event()
|
|
|
|
|
|
|
|
# `listener` runs in a thread. It opens a socket listening on
|
|
|
|
# PORT, and sits in an accept() until the main thread connects.
|
|
|
|
# Then it rudely closes the socket, and sets Event `listener_gone`
|
|
|
|
# to let the main thread know the socket is gone.
|
|
|
|
def listener():
|
|
|
|
s = socket.socket()
|
|
|
|
PORT[0] = test_support.bind_port(s, '', PORT[0])
|
|
|
|
s.listen(5)
|
|
|
|
listener_ready.set()
|
|
|
|
s.accept()
|
|
|
|
s = None # reclaim the socket object, which also closes it
|
|
|
|
listener_gone.set()
|
|
|
|
|
|
|
|
def connector():
|
|
|
|
listener_ready.wait()
|
|
|
|
s = socket.socket()
|
|
|
|
s.connect(('localhost', PORT[0]))
|
|
|
|
listener_gone.wait()
|
|
|
|
try:
|
|
|
|
ssl_sock = socket.ssl(s)
|
|
|
|
except socket.sslerror:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
raise test_support.TestFailed(
|
2006-01-24 18:44:54 -04:00
|
|
|
'connecting to closed SSL socket should have failed')
|
2007-04-03 11:05:08 -03:00
|
|
|
|
|
|
|
t = threading.Thread(target=listener)
|
|
|
|
t.start()
|
|
|
|
connector()
|
|
|
|
t.join()
|
2003-06-30 00:25:20 -03:00
|
|
|
|
2007-04-03 14:29:48 -03:00
|
|
|
class OpenSSLTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def testBasic(self):
|
|
|
|
time.sleep(.2)
|
|
|
|
s = socket.socket()
|
|
|
|
s.connect(("localhost", 4433))
|
|
|
|
ss = socket.ssl(s)
|
|
|
|
ss.write("Foo\n")
|
|
|
|
i = ss.read(4)
|
|
|
|
self.assertEqual(i, "Foo\n")
|
|
|
|
|
|
|
|
|
|
|
|
def haveOpenSSL():
|
|
|
|
try:
|
|
|
|
s = subprocess.Popen("openssl rand 1".split(), stdout=subprocess.PIPE)
|
|
|
|
s.stdout.read(1)
|
|
|
|
except OSError, err:
|
|
|
|
if err.errno == 2:
|
|
|
|
return False
|
|
|
|
raise
|
|
|
|
return True
|
|
|
|
|
|
|
|
class OpenSSLServer(threading.Thread):
|
|
|
|
def __init__(self):
|
|
|
|
self.s = None
|
|
|
|
self.keepServing = True
|
|
|
|
threading.Thread.__init__(self)
|
2003-06-30 00:25:20 -03:00
|
|
|
|
2007-04-03 14:29:48 -03:00
|
|
|
def run(self):
|
|
|
|
if os.access("ssl_cert.pem", os.F_OK):
|
|
|
|
cert_file = "ssl_cert.pem"
|
|
|
|
elif os.access("./Lib/test/ssl_cert.pem", os.F_OK):
|
|
|
|
cert_file = "./Lib/test/ssl_cert.pem"
|
|
|
|
else:
|
|
|
|
raise ValueError("No cert file found!")
|
|
|
|
if os.access("ssl_key.pem", os.F_OK):
|
|
|
|
key_file = "ssl_key.pem"
|
|
|
|
elif os.access("./Lib/test/ssl_key.pem", os.F_OK):
|
|
|
|
key_file = "./Lib/test/ssl_key.pem"
|
|
|
|
else:
|
|
|
|
raise ValueError("No cert file found!")
|
|
|
|
|
|
|
|
cmd = "openssl s_server -cert %s -key %s -quiet" % (cert_file, key_file)
|
|
|
|
self.s = subprocess.Popen(cmd.split(), stdin=subprocess.PIPE,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT)
|
|
|
|
while self.keepServing:
|
|
|
|
time.sleep(.5)
|
|
|
|
l = self.s.stdout.readline()
|
|
|
|
self.s.stdin.write(l)
|
|
|
|
|
|
|
|
def shutdown(self):
|
|
|
|
self.keepServing = False
|
|
|
|
if not self.s:
|
|
|
|
return
|
|
|
|
if sys.platform == "win32":
|
|
|
|
handle = ctypes.windll.kernel32.OpenProcess(1, False, self.s.pid)
|
|
|
|
ctypes.windll.kernel32.TerminateProcess(handle, -1)
|
|
|
|
ctypes.windll.kernel32.CloseHandle(handle)
|
|
|
|
else:
|
|
|
|
os.kill(self.s.pid, 15)
|
|
|
|
|
2003-06-30 00:25:20 -03:00
|
|
|
def test_main():
|
2003-07-01 10:44:28 -03:00
|
|
|
if not hasattr(socket, "ssl"):
|
|
|
|
raise test_support.TestSkipped("socket module has no ssl support")
|
2007-04-03 11:05:08 -03:00
|
|
|
|
|
|
|
tests = [BasicTests]
|
|
|
|
|
|
|
|
if test_support.is_resource_enabled('network'):
|
|
|
|
tests.append(ConnectedTests)
|
|
|
|
|
2007-04-03 14:29:48 -03:00
|
|
|
# in these platforms we can kill the openssl process
|
|
|
|
if sys.platform in ("sunos5", "darwin", "linux1",
|
|
|
|
"linux2", "win32", "hp-ux11"):
|
|
|
|
if haveOpenSSL():
|
|
|
|
haveServer = True
|
|
|
|
tests.append(OpenSSLTests)
|
|
|
|
else:
|
|
|
|
haveServer = False
|
|
|
|
|
|
|
|
if haveServer:
|
|
|
|
server = OpenSSLServer()
|
|
|
|
server.start()
|
|
|
|
|
2007-04-03 11:05:08 -03:00
|
|
|
thread_info = test_support.threading_setup()
|
|
|
|
test_support.run_unittest(*tests)
|
|
|
|
test_support.threading_cleanup(*thread_info)
|
2003-06-30 00:25:20 -03:00
|
|
|
|
2007-04-03 14:29:48 -03:00
|
|
|
if haveServer:
|
|
|
|
server.shutdown()
|
|
|
|
|
2002-12-03 23:26:57 -04:00
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|