aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_dump.py
blob: da9de2b4715e77624449a9090f4b9a95eddb747a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from cStringIO import StringIO
import libpry
from libmproxy import dump
import utils



class uDumpMaster(libpry.AutoTree):
    def _dummy_cycle(self, m):
        req = utils.treq()
        cc = req.client_conn
        resp = utils.tresp(req)
        m.handle_clientconnection(cc)
        m.handle_request(req)
        m.handle_response(resp)

    def test_basic_verbosities(self):
        for i in (1, 2, 3):
            cs = StringIO()
            m = dump.DumpMaster(None, i, cs)
            self._dummy_cycle(m)
            assert "GET" in cs.getvalue()



tests = [
    uDumpMaster()
]