X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/de7251fc8787f9634643d6d4e05cb3233682c34c..47cfa3cdb4b4a7c6191e4a63b2a3080b52f076b0:/paperdoorknob_test.py
diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py
index cb70ac5..35756cb 100644
--- a/paperdoorknob_test.py
+++ b/paperdoorknob_test.py
@@ -28,7 +28,25 @@ class FakeGlowficHTTPRequestHandler(BaseHTTPRequestHandler):
return 200
def do_GET(self) -> None:
- body = b'
This is glowfic'
+ body = b'''
+
+
+
We don't want edit boxes
+ This is glowfic
+
+
+
+
+
We don't want edit boxes
+ You sure?
+
+
+
+ Pretty sure.
+
+
+
+'''
self.send_response(self._response_code())
self.send_header("Content-type", "text/html")
self.send_header("Content-Length", str(len(body)))
@@ -81,6 +99,13 @@ class TestFetch(unittest.TestCase):
paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
self.assertEqual(self._request_counter, 1)
+ def testProcess(self) -> None:
+ with requests.session() as s:
+ replies = paperdoorknob.process(
+ f"http://localhost:{self._port()}", s, TIMEOUT)
+ self.assertEqual([r.text.strip() for r in replies],
+ ["This is glowfic", "You sure?", "Pretty sure."])
+
def testFetchErrors(self) -> None:
with requests.session() as s:
with self.assertRaises(requests.HTTPError):