Known subclasses: twisted.test.proto_helpers.MemoryReactorClock

Implements interfaces: twisted.internet.interfaces.IReactorCore, twisted.internet.interfaces.IReactorFDSet, twisted.internet.interfaces.IReactorSocket, twisted.internet.interfaces.IReactorSSL, twisted.internet.interfaces.IReactorTCP, twisted.internet.interfaces.IReactorUNIX

A fake reactor to be used in tests. This reactor doesn't actually do much that's useful yet. It accepts TCP connection setup attempts, but they will never succeed.

Instance Variable hasInstalled Keeps track of whether this reactor has been installed. (type: bool)
Instance Variable running Keeps track of whether this reactor is running. (type: bool)
Instance Variable hasStopped Keeps track of whether this reactor has been stopped. (type: bool)
Instance Variable hasCrashed Keeps track of whether this reactor has crashed. (type: bool)
Instance Variable whenRunningHooks Keeps track of hooks registered with callWhenRunning. (type: list)
Instance Variable triggers Keeps track of hooks registered with addSystemEventTrigger. (type: dict)
Instance Variable tcpClients Keeps track of connection attempts (ie, calls to connectTCP). (type: list)
Instance Variable tcpServers Keeps track of server listen attempts (ie, calls to listenTCP). (type: list)
Instance Variable sslClients Keeps track of connection attempts (ie, calls to connectSSL). (type: list)
Instance Variable sslServers Keeps track of server listen attempts (ie, calls to listenSSL). (type: list)
Instance Variable unixClients Keeps track of connection attempts (ie, calls to connectUNIX). (type: list)
Instance Variable unixServers Keeps track of server listen attempts (ie, calls to listenUNIX). (type: list)
Instance Variable adoptedPorts Keeps track of server listen attempts (ie, calls to adoptStreamPort).
Instance Variable adoptedStreamConnections Keeps track of stream-oriented connections added using adoptStreamConnection.
Method __init__ Initialize the tracking lists.
Method install Fake install callable to emulate reactor module installation.
Method resolve Not implemented; raises NotImplementedError.
Method run No summary
Method stop Fake IReactorCore.run. Sets self.running to False. Sets self.hasStopped to True.
Method crash Fake IReactorCore.crash. Sets self.running to None, because that feels crashy. Sets self.hasCrashed to True.
Method iterate Not implemented; raises NotImplementedError.
Method fireSystemEvent Not implemented; raises NotImplementedError.
Method addSystemEventTrigger Fake IReactorCore.run. Keep track of trigger by appending it to self.triggers[phase][eventType].
Method removeSystemEventTrigger Not implemented; raises NotImplementedError.
Method callWhenRunning Fake IReactorCore.callWhenRunning. Keeps a list of invocations to make in self.whenRunningHooks.
Method adoptStreamPort Fake IReactorSocket.adoptStreamPort, that logs the call and returns an IListeningPort.
Method adoptStreamConnection Record the given stream connection in adoptedStreamConnections.
Method adoptDatagramPort Fake IReactorSocket.adoptDatagramPort, that logs the call and returns a fake IListeningPort.
Method listenTCP Fake IReactorTCP.listenTCP, that logs the call and returns an IListeningPort.
Method connectTCP Fake IReactorTCP.connectTCP, that logs the call and returns an IConnector.
Method listenSSL Fake IReactorSSL.listenSSL, that logs the call and returns an IListeningPort.
Method connectSSL Fake IReactorSSL.connectSSL, that logs the call and returns an IConnector.
Method listenUNIX Fake IReactorUNIX.listenUNIX, that logs the call and returns an IListeningPort.
Method connectUNIX Fake IReactorUNIX.connectUNIX, that logs the call and returns an IConnector.
Method addReader Fake IReactorFDSet.addReader which adds the reader to a local set.
Method removeReader Fake IReactorFDSet.removeReader which removes the reader from a local set.
Method addWriter Fake IReactorFDSet.addWriter which adds the writer to a local set.
Method removeWriter Fake IReactorFDSet.removeWriter which removes the writer from a local set.
Method getReaders Fake IReactorFDSet.getReaders which returns a list of readers from the local set.
Method getWriters Fake IReactorFDSet.getWriters which returns a list of writers from the local set.
Method removeAll Fake IReactorFDSet.removeAll which removed all readers and writers from the local sets.
hasInstalled =
Keeps track of whether this reactor has been installed. (type: bool)
running =
Keeps track of whether this reactor is running. (type: bool)
hasStopped =
Keeps track of whether this reactor has been stopped. (type: bool)
hasCrashed =
Keeps track of whether this reactor has crashed. (type: bool)
whenRunningHooks =
Keeps track of hooks registered with callWhenRunning. (type: list)
triggers =
Keeps track of hooks registered with addSystemEventTrigger. (type: dict)
tcpClients =
Keeps track of connection attempts (ie, calls to connectTCP). (type: list)
tcpServers =
Keeps track of server listen attempts (ie, calls to listenTCP). (type: list)
sslClients =
Keeps track of connection attempts (ie, calls to connectSSL). (type: list)
sslServers =
Keeps track of server listen attempts (ie, calls to listenSSL). (type: list)
unixClients =
Keeps track of connection attempts (ie, calls to connectUNIX). (type: list)
unixServers =
Keeps track of server listen attempts (ie, calls to listenUNIX). (type: list)
adoptedPorts =
Keeps track of server listen attempts (ie, calls to adoptStreamPort).
adoptedStreamConnections =
Keeps track of stream-oriented connections added using adoptStreamConnection.
def __init__(self): (source)

Initialize the tracking lists.

def install(self): (source)

Fake install callable to emulate reactor module installation.

def resolve(self, name, timeout=10): (source)
def run(self): (source)

Fake IReactorCore.run. Sets self.running to True, runs all of the hooks passed to self.callWhenRunning, then calls self.stop to simulate a request to stop the reactor. Sets self.hasRun to True.

def stop(self): (source)

Fake IReactorCore.run. Sets self.running to False. Sets self.hasStopped to True.

def crash(self): (source)

Fake IReactorCore.crash. Sets self.running to None, because that feels crashy. Sets self.hasCrashed to True.

def iterate(self, delay=0): (source)
def fireSystemEvent(self, eventType): (source)
def addSystemEventTrigger(self, phase, eventType, callable, *args, **kw): (source)

Fake IReactorCore.run. Keep track of trigger by appending it to self.triggers[phase][eventType].

def removeSystemEventTrigger(self, triggerID): (source)
def callWhenRunning(self, callable, *args, **kw): (source)

Fake IReactorCore.callWhenRunning. Keeps a list of invocations to make in self.whenRunningHooks.

def adoptStreamPort(self, fileno, addressFamily, factory): (source)
def adoptStreamConnection(self, fileDescriptor, addressFamily, factory): (source)

Record the given stream connection in adoptedStreamConnections.

See Alsotwisted.internet.interfaces.IReactorSocket.adoptStreamConnection
def adoptDatagramPort(self, fileno, addressFamily, protocol, maxPacketSize=8192): (source)
def listenTCP(self, port, factory, backlog=50, interface=''): (source)

Fake IReactorTCP.listenTCP, that logs the call and returns an IListeningPort.

def connectTCP(self, host, port, factory, timeout=30, bindAddress=None): (source)

Fake IReactorTCP.connectTCP, that logs the call and returns an IConnector.

def listenSSL(self, port, factory, contextFactory, backlog=50, interface=''): (source)

Fake IReactorSSL.listenSSL, that logs the call and returns an IListeningPort.

def connectSSL(self, host, port, factory, contextFactory, timeout=30, bindAddress=None): (source)

Fake IReactorSSL.connectSSL, that logs the call and returns an IConnector.

def listenUNIX(self, address, factory, backlog=50, mode=438, wantPID=0): (source)
def connectUNIX(self, address, factory, timeout=30, checkPID=0): (source)

Fake IReactorUNIX.connectUNIX, that logs the call and returns an IConnector.

def addReader(self, reader): (source)

Fake IReactorFDSet.addReader which adds the reader to a local set.

def removeReader(self, reader): (source)

Fake IReactorFDSet.removeReader which removes the reader from a local set.

def addWriter(self, writer): (source)

Fake IReactorFDSet.addWriter which adds the writer to a local set.

def removeWriter(self, writer): (source)

Fake IReactorFDSet.removeWriter which removes the writer from a local set.

def getReaders(self): (source)

Fake IReactorFDSet.getReaders which returns a list of readers from the local set.

def getWriters(self): (source)

Fake IReactorFDSet.getWriters which returns a list of writers from the local set.

def removeAll(self): (source)

Fake IReactorFDSet.removeAll which removed all readers and writers from the local sets.

API Documentation for Twisted, generated by pydoctor at 2017-06-11 10:59:01.