Known subclasses: twisted.internet.test.test_process.ProcessTestsBuilder, twisted.internet.test.test_process.PTYProcessTestsBuilder

Base class for IReactorProcess tests which defines some tests which can be applied to PTY or non-PTY uses of spawnProcess.

Subclasses are expected to set the usePTY attribute to True or False.

Method test_processTransportInterface IReactorProcess.spawnProcess connects the protocol passed to it to a transport which provides IProcessTransport.
Method test_write IProcessTransport.write writes the specified bytes to the standard input of the child process.
Method test_writeSequence IProcessTransport.writeSequence writes the specified list of bytes to the standard input of the child process.
Method test_writeToChild IProcessTransport.writeToChild writes the specified bytes to the specified file descriptor of the child process.
Method test_writeToChildBadFileDescriptor IProcessTransport.writeToChild raises KeyError if passed a file descriptor which is was not set up by IReactorProcess.spawnProcess.
Method test_spawnProcessEarlyIsReaped If, before the reactor is started with IReactorCore.run, a process is started with IReactorProcess.spawnProcess and terminates, the process is reaped once the reactor is started.
Method test_processExitedWithSignal The reason argument passed to IProcessProtocol.processExited is a ProcessTerminated instance if the child process exits with a signal.
Method test_systemCallUninterruptedByChildExit If a child process exits while a system call is in progress, the system call should not be interfered with. In particular, it should not fail with EINTR.
Method test_openFileDescriptors Processes spawned with spawnProcess() close all extraneous file descriptors in the parent. They do have a stdin, stdout, and stderr open.
Method test_errorDuringExec When os.execvpe raises an exception, it will format that exception on stderr as UTF-8, regardless of system encoding information.
Method test_timelyProcessExited If a spawned process exits, processExited will be called in a timely manner.
Method test_changeUID If a value is passed for IReactorProcess.spawnProcess's uid, the child process is run with that UID.
Method test_changeGID If a value is passed for IReactorProcess.spawnProcess's gid, the child process is run with that GID.
Method test_processExitedRaises If IProcessProtocol.processExited raises an exception, it is logged.
Method _writeTest No summary
Method _changeIDTest No summary

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 SynchronousTestCases will be created.
def test_processTransportInterface(self):

IReactorProcess.spawnProcess connects the protocol passed to it to a transport which provides IProcessTransport.

def _writeTest(self, write):

Helper for testing IProcessTransport write functionality. This method spawns a child process and gives write a chance to write some bytes to it. It then verifies that the bytes were actually written to it (by relying on the child process to echo them back).

ParameterswriteA two-argument callable. This is invoked with a process transport and some bytes to write to it.
def test_write(self):

IProcessTransport.write writes the specified bytes to the standard input of the child process.

def test_writeSequence(self):

IProcessTransport.writeSequence writes the specified list of bytes to the standard input of the child process.

def test_writeToChild(self):

IProcessTransport.writeToChild writes the specified bytes to the specified file descriptor of the child process.

def test_writeToChildBadFileDescriptor(self):

IProcessTransport.writeToChild raises KeyError if passed a file descriptor which is was not set up by IReactorProcess.spawnProcess.

def test_spawnProcessEarlyIsReaped(self):

If, before the reactor is started with IReactorCore.run, a process is started with IReactorProcess.spawnProcess and terminates, the process is reaped once the reactor is started.

def test_processExitedWithSignal(self):

The reason argument passed to IProcessProtocol.processExited is a ProcessTerminated instance if the child process exits with a signal.

def test_systemCallUninterruptedByChildExit(self):

If a child process exits while a system call is in progress, the system call should not be interfered with. In particular, it should not fail with EINTR.

Older versions of Twisted installed a SIGCHLD handler on POSIX without using the feature exposed by the SA_RESTART flag to sigaction(2). The most noticeable problem this caused was for blocking reads and writes to sometimes fail with EINTR.

@onlyOnPOSIX
def test_openFileDescriptors(self):

Processes spawned with spawnProcess() close all extraneous file descriptors in the parent. They do have a stdin, stdout, and stderr open.

@onlyOnPOSIX
def test_errorDuringExec(self):

When os.execvpe raises an exception, it will format that exception on stderr as UTF-8, regardless of system encoding information.

def test_timelyProcessExited(self):

If a spawned process exits, processExited will be called in a timely manner.

def _changeIDTest(self, which):

Launch a child process, using either the uid or gid argument to IReactorProcess.spawnProcess to change either its UID or GID to a different value. If the child process reports this hasn't happened, raise an exception to fail the test.

ParameterswhichEither b"uid" or b"gid".
def test_changeUID(self):

If a value is passed for IReactorProcess.spawnProcess's uid, the child process is run with that UID.

def test_changeGID(self):

If a value is passed for IReactorProcess.spawnProcess's gid, the child process is run with that GID.

def test_processExitedRaises(self):

If IProcessProtocol.processExited raises an exception, it is logged.

API Documentation for twisted, generated by pydoctor at 2020-03-25 17:34:30.