/usr/lib/python3/dist-packages/twisted/internet/test
NameSizeModeActions
fake_CAs/-0755rm
__pycache__/-0755rm
connectionmixins.py201840644editdlrm
fakeendpoint.py16630644editdlrm
modulehelpers.py16720644editdlrm
process_cli.py5470644editdlrm
process_connectionlost.py1260644editdlrm
process_gireactornocompat.py8160644editdlrm
process_helper.py12820644editdlrm
reactormixins.py146090644editdlrm
test_abstract.py19760644editdlrm
test_address.py82660644editdlrm
test_asyncioreactor.py93270644editdlrm
test_base.py136840644editdlrm
test_baseprocess.py25880644editdlrm
test_core.py111250644editdlrm
test_default.py34190644editdlrm
test_defer_await.py65140644editdlrm
test_defer_yieldfrom.py48480644editdlrm
test_endpoints.py1487200644editdlrm
test_epollreactor.py73220644editdlrm
test_error.py10900644editdlrm
test_fdset.py134970644editdlrm
test_filedescriptor.py27610644editdlrm
test_gireactor.py65160644editdlrm
test_glibbase.py22170644editdlrm
test_inlinecb.py114820644editdlrm
test_inotify.py185620644editdlrm
test_iocp.py77000644editdlrm
test_kqueuereactor.py18530644editdlrm
test_main.py13310644editdlrm
test_newtls.py65320644editdlrm
test_pollingfile.py12970644editdlrm
test_posixbase.py97180644editdlrm
test_posixprocess.py112030644editdlrm
test_process.py367320644editdlrm
test_protocol.py185200644editdlrm
test_resolver.py196100644editdlrm
test_serialport.py19880644editdlrm
test_sigchld.py39220644editdlrm
test_socket.py94430644editdlrm
test_stdio.py65970644editdlrm
test_tcp.py1066210644editdlrm
test_testing.py162390644editdlrm
test_threads.py87340644editdlrm
test_time.py37580644editdlrm
test_tls.py133490644editdlrm
test_udp.py168810644editdlrm
test_udp_internals.py48370644editdlrm
test_unix.py348540644editdlrm
test_win32events.py64730644editdlrm
test_win32serialport.py53300644editdlrm
_posixifaces.py43910644editdlrm
_win32ifaces.py39750644editdlrm
__init__.py1120644editdlrm
Edit: /usr/lib/python3/dist-packages/twisted/internet/test/test_newtls.py (6532B)
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Tests for L{twisted.internet._newtls}. """ from twisted.internet import interfaces from twisted.internet.test.connectionmixins import ( ConnectableProtocol, runProtocolsWithReactor, ) from twisted.internet.test.reactormixins import ReactorBuilder from twisted.internet.test.test_tcp import TCPCreator from twisted.internet.test.test_tls import ( ContextGeneratingMixin, SSLCreator, StartTLSClientCreator, TLSMixin, ) from twisted.trial import unittest try: from twisted.internet import _newtls as __newtls from twisted.protocols import tls except ImportError: _newtls = None else: _newtls = __newtls from zope.interface import implementer class BypassTLSTests(unittest.TestCase): """ Tests for the L{_newtls._BypassTLS} class. """ if not _newtls: skip = "Couldn't import _newtls, perhaps pyOpenSSL is old or missing" def test_loseConnectionPassThrough(self): """ C{_BypassTLS.loseConnection} calls C{loseConnection} on the base class, while preserving any default argument in the base class' C{loseConnection} implementation. """ default = object() result = [] class FakeTransport: def loseConnection(self, _connDone=default): result.append(_connDone) bypass = _newtls._BypassTLS(FakeTransport, FakeTransport()) # The default from FakeTransport is used: bypass.loseConnection() self.assertEqual(result, [default]) # And we can pass our own: notDefault = object() bypass.loseConnection(notDefault) self.assertEqual(result, [default, notDefault]) class FakeProducer: """ A producer that does nothing. """ def pauseProducing(self): pass def resumeProducing(self): pass def stopProducing(self): pass @implementer(interfaces.IHandshakeListener) class ProducerProtocol(ConnectableProtocol): """ Register a producer, unregister it, and verify the producer hooks up to innards of C{TLSMemoryBIOProtocol}. """ def __init__(self, producer, result): self.producer = producer self.result = result def handshakeCompleted(self): if not isinstance(self.transport.protocol, tls.TLSMemoryBIOProtocol): # Either the test or the code have a bug... raise RuntimeError("TLSMemoryBIOProtocol not hooked up.") self.transport.registerProducer(self.producer, True) # The producer was registered with the TLSMemoryBIOProtocol: self.result.append(self.transport.protocol._producer._producer) self.transport.unregisterProducer() # The producer was unregistered from the TLSMemoryBIOProtocol: self.result.append(self.transport.protocol._producer) self.transport.loseConnection() class ProducerTestsMixin(ReactorBuilder, TLSMixin, ContextGeneratingMixin): """ Test the new TLS code integrates C{TLSMemoryBIOProtocol} correctly. """ if not _newtls: skip = "Could not import twisted.internet._newtls" def test_producerSSLFromStart(self): """ C{registerProducer} and C{unregisterProducer} on TLS transports created as SSL from the get go are passed to the C{TLSMemoryBIOProtocol}, not the underlying transport directly. """ result = [] producer = FakeProducer() runProtocolsWithReactor( self, ConnectableProtocol(), ProducerProtocol(producer, result), SSLCreator(), ) self.assertEqual(result, [producer, None]) def test_producerAfterStartTLS(self): """ C{registerProducer} and C{unregisterProducer} on TLS transports created by C{startTLS} are passed to the C{TLSMemoryBIOProtocol}, not the underlying transport directly. """ result = [] producer = FakeProducer() runProtocolsWithReactor( self, ConnectableProtocol(), ProducerProtocol(producer, result), StartTLSClientCreator(), ) self.assertEqual(result, [producer, None]) def startTLSAfterRegisterProducer(self, streaming): """ When a producer is registered, and then startTLS is called, the producer is re-registered with the C{TLSMemoryBIOProtocol}. """ clientContext = self.getClientContext() serverContext = self.getServerContext() result = [] producer = FakeProducer() class RegisterTLSProtocol(ConnectableProtocol): def connectionMade(self): self.transport.registerProducer(producer, streaming) self.transport.startTLS(serverContext) # Store TLSMemoryBIOProtocol and underlying transport producer # status: if streaming: # _ProducerMembrane -> producer: result.append(self.transport.protocol._producer._producer) result.append(self.transport.producer._producer) else: # _ProducerMembrane -> _PullToPush -> producer: result.append(self.transport.protocol._producer._producer._producer) result.append(self.transport.producer._producer._producer) self.transport.unregisterProducer() self.transport.loseConnection() class StartTLSProtocol(ConnectableProtocol): def connectionMade(self): self.transport.startTLS(clientContext) runProtocolsWithReactor( self, RegisterTLSProtocol(), StartTLSProtocol(), TCPCreator() ) self.assertEqual(result, [producer, producer]) def test_startTLSAfterRegisterProducerStreaming(self): """ When a streaming producer is registered, and then startTLS is called, the producer is re-registered with the C{TLSMemoryBIOProtocol}. """ self.startTLSAfterRegisterProducer(True) def test_startTLSAfterRegisterProducerNonStreaming(self): """ When a non-streaming producer is registered, and then startTLS is called, the producer is re-registered with the C{TLSMemoryBIOProtocol}. """ self.startTLSAfterRegisterProducer(False) globals().update(ProducerTestsMixin.makeTestCaseClasses())