twisted.internet.test.test_endpoints.ClientEndpointTestCaseMixin(object) class documentationtwisted.internet.test.test_endpoints
(View In Hierarchy)
Known subclasses: twisted.internet.test.test_endpoints._HostnameEndpointMemoryReactorMixin, twisted.internet.test.test_endpoints.EndpointTestCaseMixin, twisted.internet.test.test_endpoints.HostnameEndpointsOneIPv4Tests, twisted.internet.test.test_endpoints.HostnameEndpointsOneIPv6Tests, twisted.internet.test.test_endpoints.TCP6EndpointNameResolutionTests
Generic test methods to be mixed into all client endpoint test classes.
| Method | test_interface | The endpoint provides interfaces.IStreamClientEndpoint | 
| Method | retrieveConnectedFactory | Retrieve a single factory that has connected using the given reactor. (This behavior is valid for TCP and SSL but needs to be overridden for UNIX.) | 
| Method | test_endpointConnectSuccess | A client endpoint can connect and returns a deferred who gets called back with a protocol instance. | 
| Method | test_endpointConnectFailure | If an endpoint tries to connect to a non-listening port it gets a ConnectErrorfailure. | 
| Method | test_endpointConnectingCancelled | Calling Deferred.cancelon theDeferredreturned fromIStreamClientEndpoint.connectis errbacked with an expectedConnectingCancelledErrorexception. | 
| Method | test_endpointConnectNonDefaultArgs | The endpoint should pass it's connectArgs parameter to the reactor's listen methods. | 
Retrieve a single factory that has connected using the given reactor. (This behavior is valid for TCP and SSL but needs to be overridden for UNIX.)
| Parameters | reactor | a MemoryReactor | 
A client endpoint can connect and returns a deferred who gets called back with a protocol instance.
If an endpoint tries to connect to a non-listening port it gets a 
ConnectError failure.
Calling Deferred.cancel
on the Deferred 
returned from IStreamClientEndpoint.connect
is errbacked with an expected ConnectingCancelledError
exception.