2014-08-30 23:28:51 +00:00
|
|
|
import logging
|
2012-06-06 23:23:23 +00:00
|
|
|
import requests
|
2014-08-30 23:28:51 +00:00
|
|
|
from libpathod import test
|
2012-06-09 03:08:51 +00:00
|
|
|
import tutils
|
2012-06-07 05:02:17 +00:00
|
|
|
logging.disable(logging.CRITICAL)
|
2012-06-06 23:23:23 +00:00
|
|
|
|
2014-10-24 01:01:34 +00:00
|
|
|
|
2012-06-09 03:08:51 +00:00
|
|
|
class TestDaemonManual:
|
2012-06-21 03:39:40 +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
|
|
|
)
|
2012-06-07 05:02:17 +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)
|
2012-06-07 05:02:17 +00:00
|
|
|
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
|
|
|
)
|
2012-06-07 05:02:17 +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
|
2012-06-07 05:02:17 +00:00
|
|
|
)
|
|
|
|
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)
|
2012-06-07 05:02:17 +00:00
|
|
|
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
|
|
|
)
|