twisted.internet.test.test_tcp.TCPConnectorTestsBuilder(ReactorBuilder)
class documentationtwisted.internet.test.test_tcp
(View In Hierarchy)
Known subclasses: twisted.internet.test.test_tcp.TCP4ConnectorTestsBuilder, twisted.internet.test.test_tcp.TCP6ConnectorTestsBuilder
Tests for the IConnector
provider returned by IReactorTCP.connectTCP
.
Method | test_connectorIdentity | No summary |
Method | test_userFail | Calling IConnector.stopConnecting
in Factory.startedConnecting results in
Factory.clientConnectionFailed being called with error.UserError
as the reason. |
Method | test_reconnect | Calling IConnector.connect
in Factory.clientConnectionLost causes a new connection
attempt to be made. |
Inherited from ReactorBuilder:
Class Variable | skippedReactors | A dict mapping FQPN strings of reactors for which the tests defined by this class will be skipped to strings giving the skip message. |
Class Variable | requiredInterfaces | A list of interfaces which the reactor must provide or these
tests will be skipped. The default, None ,
means that no interfaces are required. |
Instance Variable | reactorFactory | A no-argument callable which returns the reactor to use for testing. |
Instance Variable | originalHandler | The SIGCHLD handler which was installed when setUp ran and which will be re-installed when tearDown runs. |
Method | setUp | Clear the SIGCHLD handler, if there is one, to ensure an environment
like the one which exists prior to a call to reactor.run . |
Method | tearDown | Restore the original SIGCHLD handler and reap processes as long as there seem to be any remaining. |
Method | unbuildReactor | Clean up any resources which may have been allocated for the given reactor by its creation or by a test which used it. |
Method | buildReactor | Create and return a reactor using self.reactorFactory . |
Method | getTimeout | Determine how long to run the test before considering it failed. |
Method | runReactor | Run the reactor for at most the given amount of time. |
Class Method | makeTestCaseClasses | Create a SynchronousTestCase
subclass which mixes in cls for each known reactor and return
a dict mapping their names to them. |
Instance Variable | _reactors | A list of FQPN strings giving the reactors for which SynchronousTestCase s
will be created. |
IReactorTCP.connectTCP
returns an object which provides IConnector
.
The destination of the connector is the address which was passed to
connectTCP
. The same connector object is passed to the
factory's startedConnecting
method as to the factory's
clientConnectionLost
method.
Calling IConnector.stopConnecting
in Factory.startedConnecting
results in
Factory.clientConnectionFailed
being called with error.UserError
as the reason.
Calling IConnector.connect
in Factory.clientConnectionLost
causes a new connection
attempt to be made.