X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/6409066b6abbe205fa64f844a01516f3f3de2553..47cfa3cdb4b4a7c6191e4a63b2a3080b52f076b0:/paperdoorknob_test.py?ds=inline diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index 83cf76a..35756cb 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -31,7 +31,19 @@ class FakeGlowficHTTPRequestHandler(BaseHTTPRequestHandler): body = b'''
+
We don't want edit boxes
This is glowfic +
We don't want footers
+
+
+
+
We don't want edit boxes
+ You sure? + +
+
+ Pretty sure. +
''' @@ -87,11 +99,12 @@ class TestFetch(unittest.TestCase): paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT) self.assertEqual(self._request_counter, 1) - def testFetchConents(self) -> None: + def testProcess(self) -> None: with requests.session() as s: - post = paperdoorknob.Post(paperdoorknob.fetch( - f"http://localhost:{self._port()}", s, TIMEOUT)) - self.assertEqual(post.text().text.strip(), "This is glowfic") + 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: