1
0
mirror of https://github.com/laurivosandi/certidude synced 2026-01-12 17:06:59 +00:00

tests: Attempt to set up nchan as part of unittests

This commit is contained in:
2017-05-06 21:07:41 +00:00
parent de1d182320
commit b19e163a82
11 changed files with 92 additions and 61 deletions

View File

@@ -137,7 +137,7 @@ class StaticResource(object):
def __call__(self, req, resp):
path = os.path.realpath(os.path.join(self.root, req.path[1:]))
if not path.startswith(self.root):
raise falcon.HTTPForbidden
raise falcon.HTTPBadRequest()
if os.path.isdir(path):
path = os.path.join(path, "index.html")

View File

@@ -172,7 +172,7 @@ class RequestDetailResource(object):
try:
_, buf, _ = authority.get_request(cn)
except EnvironmentError:
except errors.RequestDoesNotExist:
logger.warning(u"Failed to serve non-existant request %s to %s",
cn, req.context.get("remote_addr"))
raise falcon.HTTPNotFound()
@@ -227,8 +227,8 @@ class RequestDetailResource(object):
try:
authority.delete_request(cn)
# Logging implemented in the function above
except EnvironmentError as e:
resp.body = "No certificate CN=%s found" % cn
except errors.RequestDoesNotExist as e:
resp.body = "No certificate signing request for %s found" % cn
logger.warning(u"User %s failed to delete signing request %s from %s, reason: %s",
req.context["user"], cn, req.context.get("remote_addr"), e)
raise falcon.HTTPNotFound()