Test request and response kill functionality.

This commit is contained in:
Aldo Cortesi 2013-02-23 21:59:25 +13:00
parent 269780c577
commit 05e4d4468e
5 changed files with 40 additions and 11 deletions

View File

@ -1,3 +1,6 @@
[rum]
branch = True
[report]
omit = *contrib*, *tnetstring*, *platform*
include = *libmproxy*

View File

@ -41,10 +41,13 @@ class Reply:
self.q = Queue.Queue()
self.acked = False
def __call__(self, msg=False):
def __call__(self, msg=None):
if not self.acked:
self.acked = True
self.q.put(msg or self.obj)
if msg is None:
self.q.put(self.obj)
else:
self.q.put(msg)
class Channel:
@ -62,7 +65,7 @@ class Channel:
try:
# The timeout is here so we can handle a should_exit event.
g = m.reply.q.get(timeout=0.5)
except Queue.Empty:
except Queue.Empty: # pragma: nocover
continue
return g

1
test/.gitignore vendored
View File

@ -1 +0,0 @@
.coverage

View File

@ -1,6 +0,0 @@
base = ..
coverage = ../libmproxy
exclude = .
../libmproxy/contrib
../libmproxy/tnetstring.py

View File

@ -2,7 +2,7 @@ import socket, time
from netlib import tcp
from libpathod import pathoc
import tutils, tservers
from libmproxy import flow
from libmproxy import flow, proxy
"""
Note that the choice of response code in these tests matters more than you
@ -147,6 +147,7 @@ class TestProxy(tservers.HTTPProxTest):
assert request.timestamp_end - request.timestamp_start <= 0.1
class MasterFakeResponse(tservers.TestMaster):
def handle_request(self, m):
resp = tutils.tresp()
@ -160,3 +161,32 @@ class TestFakeResponse(tservers.HTTPProxTest):
f = self.pathod("200")
assert "header_response" in f.headers.keys()
class MasterKillRequest(tservers.TestMaster):
def handle_request(self, m):
m.reply(proxy.KILL)
class TestKillRequest(tservers.HTTPProxTest):
masterclass = MasterKillRequest
def test_kill(self):
p = self.pathoc()
tutils.raises("empty reply", self.pathod, "200")
# Nothing should have hit the server
assert not self.last_log()
class MasterKillResponse(tservers.TestMaster):
def handle_response(self, m):
m.reply(proxy.KILL)
class TestKillResponse(tservers.HTTPProxTest):
masterclass = MasterKillResponse
def test_kill(self):
p = self.pathoc()
tutils.raises("empty reply", self.pathod, "200")
# The server should have seen a request
assert self.last_log()