X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/47cfa3cdb4b4a7c6191e4a63b2a3080b52f076b0..afd3c3a13956819ceb32c28875f56cff7df8fe3f:/paperdoorknob_test.py diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index 35756cb..ee4de04 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -6,6 +6,7 @@ import unittest +import io import threading from http.server import BaseHTTPRequestHandler, HTTPServer import requests @@ -38,7 +39,7 @@ class FakeGlowficHTTPRequestHandler(BaseHTTPRequestHandler):
We don't want edit boxes
- You sure? + You sure?
@@ -99,10 +100,14 @@ class TestFetch(unittest.TestCase): paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT) self.assertEqual(self._request_counter, 1) - def testProcess(self) -> None: + def testReplies(self) -> None: with requests.session() as s: - replies = paperdoorknob.process( - f"http://localhost:{self._port()}", s, TIMEOUT) + replies = paperdoorknob.replies( + paperdoorknob.clean( + paperdoorknob.fetch( + f"http://localhost:{self._port()}", + s, + TIMEOUT))) self.assertEqual([r.text.strip() for r in replies], ["This is glowfic", "You sure?", "Pretty sure."]) @@ -115,6 +120,19 @@ class TestFetch(unittest.TestCase): paperdoorknob.fetch( f"http://localhost:{self._port()}/server_error", s, TIMEOUT) + def testProcess(self) -> None: + with requests.session() as s: + buf = io.BytesIO() + paperdoorknob.process( + f"http://localhost:{self._port()}", + s, + TIMEOUT, + buf, + 'pandoc') + self.assertEqual( + buf.getvalue(), + b'This is glowfic\nYou \\emph{sure}?\nPretty sure.\n') + if __name__ == '__main__': unittest.main()