X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/b34a368f048581720738d2ea0b99504a98b3c64d..a0d30541ee9349b8c62200c9aa6d4dbb2873fccb:/paperdoorknob_test.py
diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py
index e966a6b..7c48607 100644
--- a/paperdoorknob_test.py
+++ b/paperdoorknob_test.py
@@ -28,7 +28,21 @@ class FakeGlowficHTTPRequestHandler(BaseHTTPRequestHandler):
return 200
def do_GET(self) -> None:
- body = b'
This is glowfic'
+ body = b'''
+
+
+ This is glowfic
+
+
+
+ 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)))
@@ -73,6 +87,22 @@ class TestFetch(unittest.TestCase):
paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
self.assertEqual(self._request_counter, 1)
+ def testFetchPersistentCaching(self) -> None:
+ with requests_cache.CachedSession() as s:
+ paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
+ self.assertEqual(self._request_counter, 1)
+ with requests_cache.CachedSession() as s:
+ paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
+ self.assertEqual(self._request_counter, 1)
+
+ def testFetchConents(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")
+ self.assertEqual([r.text.strip() for r in post.replies()],
+ ["You sure?", "Pretty sure."])
+
def testFetchErrors(self) -> None:
with requests.session() as s:
with self.assertRaises(requests.HTTPError):