aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_app.py
blob: 52cd1ba6226bb0d05fe3a3c5d441bdb32f9cc8c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import mock, socket, os, time
from libmproxy import dump
from netlib import certutils, tcp
from libpathod.pathoc import Pathoc
import tutils, tservers

class TestApp(tservers.HTTPProxTest):
    def test_basic(self):
        assert self.app("/").status_code == 200

    def test_cert(self):
        with tutils.tmpdir() as d:
            for ext in ["pem", "p12"]:
                resp = self.app("/cert/%s" % ext)
                assert resp.status_code == 200
                assert resp.content