class documentation

class AdoptDatagramPortErrorsTestsBuilder(ReactorBuilder): (source)

View In Hierarchy

Builder for testing IReactorSocket.adoptDatagramPort implementations.

Method test_invalidAddressFamily An implementation of IReactorSocket.adoptDatagramPort raises UnsupportedAddressFamily if passed an address family it does not support.
Method test_invalidDescriptor An implementation of IReactorSocket.adoptDatagramPort raises socket.error if passed an integer which is not associated with a socket.
Method test_stopOnlyCloses When the IListeningPort returned by IReactorSocket.adoptDatagramPort is stopped using stopListening, the underlying socket is closed but not shutdown. This allows another process which still has a reference to it to continue reading and writing to it.
Class Variable requiredInterfaces Undocumented

Inherited from ReactorBuilder:

Class Method makeTestCaseClasses Create a SynchronousTestCase subclass which mixes in cls for each known reactor and return a dict mapping their names to them.
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.
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.
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.
Instance Variable originalHandler The SIGCHLD handler which was installed when setUp ran and which will be re-installed when tearDown runs.
Instance Variable reactorFactory A no-argument callable which returns the reactor to use for testing.
Instance Variable _reactors A list of FQPN strings giving the reactors for which SynchronousTestCases will be created.
def test_invalidAddressFamily(self): (source)

An implementation of IReactorSocket.adoptDatagramPort raises UnsupportedAddressFamily if passed an address family it does not support.

def test_invalidDescriptor(self): (source)

An implementation of IReactorSocket.adoptDatagramPort raises socket.error if passed an integer which is not associated with a socket.

def test_stopOnlyCloses(self): (source)

When the IListeningPort returned by IReactorSocket.adoptDatagramPort is stopped using stopListening, the underlying socket is closed but not shutdown. This allows another process which still has a reference to it to continue reading and writing to it.