1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
|
"""
Tests for the low level socket functions.
Pyro - Python Remote Objects. Copyright by Irmen de Jong (irmen@razorvine.net).
"""
from __future__ import print_function
import socket
import os
import sys
import platform
import threading
import time
import unittest
try:
import ssl
except ImportError:
ssl = None
import Pyro4.socketutil as SU
import Pyro4.util
import Pyro4.constants
from Pyro4.configuration import config
from Pyro4 import errors
from Pyro4.socketserver.multiplexserver import SocketServer_Multiplex
from Pyro4.socketserver.threadpoolserver import SocketServer_Threadpool
from Pyro4.core import Daemon
from testsupport import *
# determine ipv6 capability
has_ipv6 = socket.has_ipv6
if has_ipv6:
s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
try:
s.connect(("::1", 53))
s.close()
socket.getaddrinfo("localhost", 53, socket.AF_INET6)
except socket.error:
has_ipv6 = False
class TestSocketStuff(unittest.TestCase):
def testSockname(self):
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(("", 0))
s.listen(5)
host, port = s.getsockname()
self.assertNotEqual(0, port)
self.assertEqual("0.0.0.0", host) # ipv4 support only at this time
s.close()
@unittest.skip("no network access on buildds")
class TestSocketutil(unittest.TestCase):
def setUp(self):
config.POLLTIMEOUT = 0.1
def testGetIP(self):
config.PREFER_IP_VERSION = 4
myip = SU.getIpAddress("")
self.assertTrue(len(myip) > 4)
myip = SU.getIpAddress("", workaround127=True)
self.assertTrue(len(myip) > 4)
self.assertFalse(myip.startswith("127."))
self.assertEqual("127.0.0.1", SU.getIpAddress("127.0.0.1", workaround127=False))
self.assertNotEqual("127.0.0.1", SU.getIpAddress("127.0.0.1", workaround127=True))
@unittest.skipUnless(has_ipv6, "ipv6 testcase")
def testGetIP6(self):
self.assertIn(":", SU.getIpAddress("::1", ipVersion=6))
# self.assertTrue(":" in SU.getIpAddress("", ipVersion=6))
self.assertIn(":", SU.getIpAddress("localhost", ipVersion=6))
def testGetIpVersion4(self):
version = config.PREFER_IP_VERSION
try:
config.PREFER_IP_VERSION = 4
self.assertEqual(4, SU.getIpVersion("127.0.0.1"))
self.assertEqual(4, SU.getIpVersion("localhost"))
config.PREFER_IP_VERSION = 0
self.assertEqual(4, SU.getIpVersion("127.0.0.1"))
finally:
config.PREFER_IP_VERSION = version
@unittest.skipUnless(has_ipv6, "ipv6 testcase")
def testGetIpVersion6(self):
version = config.PREFER_IP_VERSION
try:
config.PREFER_IP_VERSION = 6
self.assertEqual(6, SU.getIpVersion("::1"))
self.assertEqual(6, SU.getIpVersion("localhost"))
config.PREFER_IP_VERSION = 4
self.assertEqual(4, SU.getIpVersion("127.0.0.1"))
self.assertEqual(6, SU.getIpVersion("::1"))
config.PREFER_IP_VERSION = 0
self.assertEqual(4, SU.getIpVersion("127.0.0.1"))
self.assertEqual(6, SU.getIpVersion("::1"))
finally:
config.PREFER_IP_VERSION = version
def testGetInterfaceAddress(self):
self.assertTrue(SU.getInterfaceAddress("localhost").startswith("127."))
if has_ipv6:
self.assertIn(":", SU.getInterfaceAddress("::1"))
def testUnusedPort(self):
port1 = SU.findProbablyUnusedPort()
port2 = SU.findProbablyUnusedPort()
self.assertTrue(port1 > 0)
self.assertNotEqual(port1, port2)
port1 = SU.findProbablyUnusedPort(socktype=socket.SOCK_DGRAM)
port2 = SU.findProbablyUnusedPort(socktype=socket.SOCK_DGRAM)
self.assertTrue(port1 > 0)
self.assertNotEqual(port1, port2)
@unittest.skipUnless(has_ipv6, "ipv6 testcase")
def testUnusedPort6(self):
port1 = SU.findProbablyUnusedPort(family=socket.AF_INET6)
port2 = SU.findProbablyUnusedPort(family=socket.AF_INET6)
self.assertTrue(port1 > 0)
self.assertNotEqual(port1, port2)
port1 = SU.findProbablyUnusedPort(family=socket.AF_INET6, socktype=socket.SOCK_DGRAM)
port2 = SU.findProbablyUnusedPort(family=socket.AF_INET6, socktype=socket.SOCK_DGRAM)
self.assertTrue(port1 > 0)
self.assertNotEqual(port1, port2)
def testBindUnusedPort(self):
sock1 = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock2 = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
port1 = SU.bindOnUnusedPort(sock1)
port2 = SU.bindOnUnusedPort(sock2)
self.assertTrue(port1 > 0)
self.assertNotEqual(port1, port2)
sockname = sock1.getsockname()
self.assertEqual(("127.0.0.1", port1), sockname)
sock1.close()
sock2.close()
@unittest.skipUnless(has_ipv6, "ipv6 testcase")
def testBindUnusedPort6(self):
sock1 = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
sock2 = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
port1 = SU.bindOnUnusedPort(sock1)
port2 = SU.bindOnUnusedPort(sock2)
self.assertTrue(port1 > 0)
self.assertNotEqual(port1, port2)
host, port, _, _ = sock1.getsockname()
self.assertIn(":", host)
self.assertEqual(port1, port)
sock1.close()
sock2.close()
def testCreateUnboundSockets(self):
s = SU.createSocket()
self.assertEqual(socket.AF_INET, s.family)
bs = SU.createBroadcastSocket()
self.assertEqual(socket.AF_INET, bs.family)
try:
host, port = s.getsockname()
# can either fail with socket.error or return (host,0)
self.assertEqual(0, port)
except socket.error:
pass
try:
host, port = bs.getsockname()
# can either fail with socket.error or return (host,0)
self.assertEqual(0, port)
except socket.error:
pass
s.close()
bs.close()
@unittest.skipUnless(has_ipv6, "ipv6 testcase")
def testCreateUnboundSockets6(self):
s = SU.createSocket(ipv6=True)
self.assertEqual(socket.AF_INET6, s.family)
bs = SU.createBroadcastSocket(ipv6=True)
self.assertEqual(socket.AF_INET6, bs.family)
try:
host, port, _, _ = s.getsockname()
# can either fail with socket.error or return (host,0)
self.assertEqual(0, port)
except socket.error:
pass
try:
host, port, _, _ = bs.getsockname()
# can either fail with socket.error or return (host,0)
self.assertEqual(0, port)
except socket.error:
pass
s.close()
bs.close()
def testCreateBoundSockets(self):
s = SU.createSocket(bind=('127.0.0.1', 0))
self.assertEqual(socket.AF_INET, s.family)
bs = SU.createBroadcastSocket(bind=('127.0.0.1', 0))
self.assertEqual('127.0.0.1', s.getsockname()[0])
self.assertEqual('127.0.0.1', bs.getsockname()[0])
s.close()
bs.close()
self.assertRaises(ValueError, SU.createSocket, bind=('localhost', 12345), connect=('localhost', 1234))
@unittest.skipUnless(has_ipv6, "ipv6 testcase")
def testCreateBoundSockets6(self):
s = SU.createSocket(bind=('::1', 0))
self.assertEqual(socket.AF_INET6, s.family)
bs = SU.createBroadcastSocket(bind=('::1', 0))
self.assertIn(':', s.getsockname()[0])
self.assertIn(':', bs.getsockname()[0])
s.close()
bs.close()
self.assertRaises(ValueError, SU.createSocket, bind=('::1', 12345), connect=('::1', 1234))
@unittest.skipUnless(hasattr(socket, "AF_UNIX"), "unix domain sockets required")
def testCreateBoundUnixSockets(self):
SOCKNAME = "test_unixsocket"
if os.path.exists(SOCKNAME):
os.remove(SOCKNAME)
s = SU.createSocket(bind=SOCKNAME)
self.assertEqual(socket.AF_UNIX, s.family)
self.assertEqual(SOCKNAME, s.getsockname())
s.close()
if os.path.exists(SOCKNAME):
os.remove(SOCKNAME)
# unicode arg
SOCKNAME = unicode(SOCKNAME)
s = SU.createSocket(bind=SOCKNAME)
self.assertEqual(socket.AF_UNIX, s.family)
self.assertEqual(SOCKNAME, s.getsockname())
s.close()
if os.path.exists(SOCKNAME):
os.remove(SOCKNAME)
self.assertRaises(ValueError, SU.createSocket, bind=SOCKNAME, connect=SOCKNAME)
@unittest.skipUnless(hasattr(socket, "AF_UNIX") and sys.platform.startswith("linux"), "linux and unix domain sockets required")
def testAbstractNamespace(self):
SOCKNAME = "\0test_unixsocket_abstract_ns" # mind the \0 at the start
s = SU.createSocket(bind=SOCKNAME)
sn_bytes = tobytes(SOCKNAME)
self.assertEqual(sn_bytes, s.getsockname())
s.close()
def testSend(self):
ss = SU.createSocket(bind=("localhost", 0))
port = ss.getsockname()[1]
cs = SU.createSocket(connect=("localhost", port))
SU.sendData(cs, tobytes("foobar!") * 10)
cs.shutdown(socket.SHUT_WR)
a = ss.accept()
data = SU.receiveData(a[0], 5)
self.assertEqual(tobytes("fooba"), data)
data = SU.receiveData(a[0], 5)
self.assertEqual(tobytes("r!foo"), data)
a[0].close()
ss.close()
cs.close()
@unittest.skipUnless(hasattr(socket, "AF_UNIX"), "unix domain sockets required")
def testSendUnix(self):
SOCKNAME = "test_unixsocket"
ss = SU.createSocket(bind=SOCKNAME)
cs = SU.createSocket(connect=SOCKNAME)
SU.sendData(cs, tobytes("foobar!") * 10)
cs.shutdown(socket.SHUT_WR)
a = ss.accept()
data = SU.receiveData(a[0], 5)
self.assertEqual(tobytes("fooba"), data)
data = SU.receiveData(a[0], 5)
self.assertEqual(tobytes("r!foo"), data)
a[0].close()
ss.close()
cs.close()
if os.path.exists(SOCKNAME):
os.remove(SOCKNAME)
def testBroadcast(self):
ss = SU.createBroadcastSocket((None, 0))
port = ss.getsockname()[1]
cs = SU.createBroadcastSocket()
for bcaddr in config.parseAddressesString(config.BROADCAST_ADDRS):
try:
cs.sendto(tobytes("monkey"), 0, (bcaddr, port))
except socket.error as x:
err = getattr(x, "errno", x.args[0])
# handle some errno that some platforms like to throw
if err not in Pyro4.socketutil.ERRNO_EADDRNOTAVAIL and err not in Pyro4.socketutil.ERRNO_EADDRINUSE:
raise
data, _ = ss.recvfrom(500)
self.assertEqual(tobytes("monkey"), data)
cs.close()
ss.close()
def testMsgWaitallProblems(self):
ss = SU.createSocket(bind=("localhost", 0), timeout=2)
port = ss.getsockname()[1]
cs = SU.createSocket(connect=("localhost", port), timeout=2)
a = ss.accept()
# test some sizes that might be problematic with MSG_WAITALL and check that they work fine
for size in [1000, 10000, 32000, 32768, 32780, 41950, 41952, 42000, 65000, 65535, 65600, 80000]:
SU.sendData(cs, tobytes("x") * size)
data = SU.receiveData(a[0], size)
SU.sendData(a[0], data)
data = SU.receiveData(cs, size)
self.assertEqual(size, len(data))
a[0].close()
ss.close()
cs.close()
def testMsgWaitallProblems2(self):
class ReceiveThread(threading.Thread):
def __init__(self, sock, sizes):
super(ReceiveThread, self).__init__()
self.sock = sock
self.sizes = sizes
def run(self):
cs, _ = self.sock.accept()
for size in self.sizes:
data = SU.receiveData(cs, size)
SU.sendData(cs, data)
cs.close()
ss = SU.createSocket(bind=("localhost", 0))
SIZES = [1000, 10000, 32000, 32768, 32780, 41950, 41952, 42000, 65000, 65535, 65600, 80000, 999999]
serverthread = ReceiveThread(ss, SIZES)
serverthread.setDaemon(True)
serverthread.start()
port = ss.getsockname()[1]
cs = SU.createSocket(connect=("localhost", port), timeout=2)
# test some sizes that might be problematic with MSG_WAITALL and check that they work fine
for size in SIZES:
SU.sendData(cs, tobytes("x") * size)
data = SU.receiveData(cs, size)
self.assertEqual(size, len(data))
serverthread.join()
ss.close()
cs.close()
def testMsgWaitAllConfig(self):
if platform.system() == "Windows":
# default config should be False on these platforms even though socket.MSG_WAITALL might exist
self.assertFalse(config.USE_MSG_WAITALL)
else:
# on all other platforms, default config should be True (as long as socket.MSG_WAITALL exists)
if hasattr(socket, "MSG_WAITALL"):
self.assertTrue(config.USE_MSG_WAITALL)
else:
self.assertFalse(config.USE_MSG_WAITALL)
class ServerCallback(object):
def _handshake(self, connection, denied_reason=None):
raise RuntimeError("this handshake method should never be called")
def handleRequest(self, connection):
if not isinstance(connection, SU.SocketConnection):
raise TypeError("handleRequest expected SocketConnection parameter")
msg = Pyro4.message.Message.recv(connection, [Pyro4.message.MSG_PING])
if msg.type == Pyro4.message.MSG_PING:
msg = Pyro4.message.Message(Pyro4.message.MSG_PING, b"ping", msg.serializer_id, 0, msg.seq)
connection.send(msg.to_bytes())
else:
print("unhandled message type", msg.type)
connection.close()
def _housekeeping(self):
pass
class ServerCallback_BrokenHandshake(ServerCallback):
def _handshake(self, connection, denied_reason=None):
raise ZeroDivisionError("handshake crashed (on purpose)")
class TestDaemon(Daemon):
def __init__(self):
super(TestDaemon, self).__init__()
class TestSocketServer(unittest.TestCase):
def testServer_thread(self):
daemon = ServerCallback()
port = SU.findProbablyUnusedPort()
serv = SocketServer_Threadpool()
serv.init(daemon, "localhost", port)
self.assertEqual("localhost:" + str(port), serv.locationStr)
self.assertIsNotNone(serv.sock)
conn = SU.SocketConnection(serv.sock, "ID12345")
self.assertEqual("ID12345", conn.objectId)
self.assertIsNotNone(conn.sock)
conn.close()
conn.close()
self.assertIsNotNone(conn.sock, "connections keep their socket object even if it's closed")
serv.close()
serv.close()
self.assertIsNone(serv.sock)
def testServer_multiplex(self):
daemon = ServerCallback()
port = SU.findProbablyUnusedPort()
serv = SocketServer_Multiplex()
serv.init(daemon, "localhost", port)
self.assertEqual("localhost:" + str(port), serv.locationStr)
self.assertIsNotNone(serv.sock)
conn = SU.SocketConnection(serv.sock, "ID12345")
self.assertEqual("ID12345", conn.objectId)
self.assertIsNotNone(conn.sock)
conn.close()
conn.close()
self.assertIsNotNone(conn.sock, "connections keep their socket object even if it's closed")
serv.close()
serv.close()
self.assertIsNone(serv.sock)
class TestServerDOS_multiplex(unittest.TestCase):
def setUp(self):
self.orig_poll_timeout = config.POLLTIMEOUT
self.orig_comm_timeout = config.COMMTIMEOUT
config.POLLTIMEOUT = 0.5
config.COMMTIMEOUT = 0.5
self.socket_server = SocketServer_Multiplex
def tearDown(self):
config.POLLTIMEOUT = self.orig_poll_timeout
config.COMMTIMEOUT = self.orig_comm_timeout
class ServerThread(threading.Thread):
def __init__(self, server, daemon):
threading.Thread.__init__(self)
self.serv = server()
self.serv.init(daemon(), "localhost", 0)
self.locationStr = self.serv.locationStr
self.stop_loop = threading.Event()
def run(self):
self.serv.loop(loopCondition=lambda: not self.stop_loop.is_set())
self.serv.close()
def testConnectCrash(self):
serv_thread = TestServerDOS_multiplex.ServerThread(self.socket_server, ServerCallback_BrokenHandshake)
serv_thread.start()
time.sleep(0.2)
self.assertTrue(serv_thread.is_alive(), "server thread failed to start")
threadpool = getattr(serv_thread.serv, "pool", None)
if threadpool:
self.assertEqual(1, len(threadpool.idle))
self.assertEqual(0, len(threadpool.busy))
try:
host, port = serv_thread.locationStr.split(':')
port = int(port)
try:
# first connection attempt (will fail because server daemon _handshake crashes)
csock = SU.createSocket(connect=(host, port))
conn = SU.SocketConnection(csock, "uri")
Pyro4.message.Message.recv(conn, [Pyro4.message.MSG_CONNECTOK])
except errors.ConnectionClosedError:
pass
conn.close()
time.sleep(0.1)
if threadpool:
self.assertEqual(1, len(threadpool.idle))
self.assertEqual(0, len(threadpool.busy))
try:
# second connection attempt, should still work (i.e. server should still be running)
csock = SU.createSocket(connect=(host, port))
conn = SU.SocketConnection(csock, "uri")
Pyro4.message.Message.recv(conn, [Pyro4.message.MSG_CONNECTOK])
except errors.ConnectionClosedError:
pass
finally:
if conn:
conn.close()
serv_thread.stop_loop.set()
serv_thread.join()
def testInvalidMessageCrash(self):
serv_thread = TestServerDOS_multiplex.ServerThread(self.socket_server, TestDaemon)
serv_thread.start()
time.sleep(0.2)
self.assertTrue(serv_thread.is_alive(), "server thread failed to start")
threadpool = getattr(serv_thread.serv, "pool", None)
if threadpool:
self.assertEqual(1, len(threadpool.idle))
self.assertEqual(0, len(threadpool.busy))
def connect(host, port):
# connect to the server
csock = SU.createSocket(connect=(host, port))
conn = SU.SocketConnection(csock, "uri")
# send the handshake/connect data
ser = Pyro4.util.get_serializer_by_id(Pyro4.util.MarshalSerializer.serializer_id)
data, _ = ser.serializeData({"handshake": "hello", "object": Pyro4.constants.DAEMON_NAME}, False)
msg = Pyro4.message.Message(Pyro4.message.MSG_CONNECT, data, Pyro4.util.MarshalSerializer.serializer_id, 0, 0)
conn.send(msg.to_bytes())
# get the handshake/connect response
Pyro4.message.Message.recv(conn, [Pyro4.message.MSG_CONNECTOK])
return conn
conn = None
try:
host, port = serv_thread.locationStr.split(':')
port = int(port)
conn = connect(host, port)
# invoke something, but screw up the message (in this case, mess with the protocol version)
orig_protocol_version = Pyro4.constants.PROTOCOL_VERSION
Pyro4.constants.PROTOCOL_VERSION = 9999
msgbytes = Pyro4.message.Message(Pyro4.message.MSG_PING, b"something", 42, 0, 0).to_bytes()
Pyro4.constants.PROTOCOL_VERSION = orig_protocol_version
conn.send(msgbytes) # this should cause an error in the server because of invalid msg
try:
msg = Pyro4.message.Message.recv(conn, [Pyro4.message.MSG_RESULT])
data = msg.data
if sys.version_info >= (2, 7):
data = msg.data.decode("ascii", errors="ignore") # convert raw message to string to check some stuff
self.assertIn("Traceback", data)
self.assertIn("ProtocolError", data)
self.assertIn("version", data)
except errors.ConnectionClosedError:
# invalid message can cause the connection to be closed, this is fine
pass
# invoke something again, this should still work (server must still be running, but our client connection was terminated)
conn.close()
time.sleep(0.1)
if threadpool:
self.assertEqual(1, len(threadpool.idle))
self.assertEqual(0, len(threadpool.busy))
try:
conn = connect(host, port)
except errors.ProtocolError as px:
# @todo this is strange, it sometimes occurs in Travis.
self.fail("unexpected ProtocolError in testInvalidMessageCrash: \n" + "".join(Pyro4.util.getPyroTraceback()))
msg = Pyro4.message.Message(Pyro4.message.MSG_PING, b"something", 42, 0, 999) # a valid message this time
conn.send(msg.to_bytes())
msg = Pyro4.message.Message.recv(conn, [Pyro4.message.MSG_PING])
self.assertEqual(Pyro4.message.MSG_PING, msg.type)
self.assertEqual(999, msg.seq)
self.assertEqual(b"pong", msg.data)
finally:
if conn:
conn.close()
serv_thread.stop_loop.set()
serv_thread.join()
class TestServerDOS_threading(TestServerDOS_multiplex):
def setUp(self):
super(TestServerDOS_threading, self).setUp()
self.socket_server = SocketServer_Threadpool
self.orig_numthreads = config.THREADPOOL_SIZE
self.orig_numthreads_min = config.THREADPOOL_SIZE_MIN
config.THREADPOOL_SIZE = 1
config.THREADPOOL_SIZE_MIN = 1
def tearDown(self):
config.THREADPOOL_SIZE = self.orig_numthreads
config.THREADPOOL_SIZE_MIN = self.orig_numthreads_min
@unittest.skipIf(not ssl, "ssl tests requires ssl module")
class TestSSL(unittest.TestCase):
def testContextAndSock(self):
cert_dir = "../../certs"
if not os.path.isdir(cert_dir):
cert_dir = "../certs"
if not os.path.isdir(cert_dir):
cert_dir = "./certs"
if not os.path.isdir(cert_dir):
self.fail("cannot locate test certs directory")
try:
config.SSL = True
config.SSL_REQUIRECLIENTCERT = True
server_ctx = SU.getSSLcontext(cert_dir+"/server_cert.pem", cert_dir+"/server_key.pem")
client_ctx = SU.getSSLcontext(clientcert=cert_dir+"/client_cert.pem", clientkey=cert_dir+"/client_key.pem")
self.assertEqual(ssl.CERT_REQUIRED, server_ctx.verify_mode)
self.assertEqual(ssl.CERT_REQUIRED, client_ctx.verify_mode)
self.assertTrue(client_ctx.check_hostname)
sock = SU.createSocket(sslContext=server_ctx)
try:
self.assertTrue(hasattr(sock, "getpeercert"))
finally:
sock.close()
finally:
config.SSL = False
if __name__ == "__main__":
# import sys;sys.argv = ['', 'Test.testName']
unittest.main()
|