예제 #1
0
 def test_prematureEndOfHeaders(self):
     """
     If the process communicating with L{CGIProcessProtocol} ends before
     finishing writing out headers, the response has I{INTERNAL SERVER
     ERROR} as its status code.
     """
     request = DummyRequest([''])
     protocol = twcgi.CGIProcessProtocol(request)
     protocol.processEnded(failure.Failure(error.ProcessTerminated()))
     self.assertEqual(request.responseCode, INTERNAL_SERVER_ERROR)
예제 #2
0
 def test_connectionLost(self):
     """
     Ensure that the CGI process ends cleanly when the request connection
     is lost.
     """
     d = DummyChannel()
     request = http.Request(d, True)
     protocol = twcgi.CGIProcessProtocol(request)
     request.connectionLost(failure.Failure(ConnectionLost("Connection done")))
     protocol.processEnded(failure.Failure(error.ProcessTerminated()))