mitmproxy/test/test_test.py

55 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:
2015-06-18 16:12:11 +00:00
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(
2015-06-18 16:12:11 +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
)