mitmproxy/test/test_test.py

54 lines
1.5 KiB
Python
Raw Normal View History

import logging
import requests
from libpathod import test
2012-06-09 03:08:51 +00:00
import tutils
logging.disable(logging.CRITICAL)
2014-10-24 01:01:34 +00:00
2012-06-09 03:08:51 +00:00
class TestDaemonManual:
def test_simple(self):
2012-07-30 08:58:59 +00:00
with test.Daemon() as d:
2015-05-30 00:03:13 +00:00
rsp = requests.get("http://localhost:%s/p/202:da" % d.port)
2012-07-30 08:58:59 +00:00
assert rsp.ok
assert rsp.status_code == 202
2014-10-24 01:01:34 +00:00
tutils.raises(
"Connection aborted",
requests.get,
2015-05-30 00:03:13 +00:00
"http://localhost:%s/p/202:da" % d.port
2014-10-24 01:01:34 +00:00
)
def test_startstop_ssl(self):
d = test.Daemon(ssl=True)
2015-05-30 00:03:13 +00:00
rsp = requests.get(
"https://localhost:%s/p/202:da" %
d.port,
verify=False)
assert rsp.ok
assert rsp.status_code == 202
d.shutdown()
2014-10-24 01:01:34 +00:00
tutils.raises(
"Connection aborted",
requests.get,
2015-05-30 00:03:13 +00:00
"http://localhost:%s/p/202:da" % d.port
2014-10-24 01:01:34 +00:00
)
def test_startstop_ssl_explicit(self):
ssloptions = dict(
2014-03-02 02:13:56 +00:00
certfile = tutils.test_data.path("data/testkey.pem"),
cacert = tutils.test_data.path("data/testkey.pem"),
ssl_after_connect = False
)
d = test.Daemon(ssl=ssloptions)
2015-05-30 00:03:13 +00:00
rsp = requests.get(
"https://localhost:%s/p/202:da" %
d.port,
verify=False)
assert rsp.ok
assert rsp.status_code == 202
d.shutdown()
2014-10-24 01:01:34 +00:00
tutils.raises(
"Connection aborted",
requests.get,
2015-05-30 00:03:13 +00:00
"http://localhost:%s/p/202:da" % d.port
2014-10-24 01:01:34 +00:00
)