X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/17bd16e89158461d82af7cab2a99a36063ff46b1..36ae1d5f39e74dc6c6cc1cd253d029f86003c83f:/paperdoorknob_test.py
diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py
index 400570f..7cb73b7 100644
--- a/paperdoorknob_test.py
+++ b/paperdoorknob_test.py
@@ -6,9 +6,11 @@
import unittest
+import io
import threading
from http.server import BaseHTTPRequestHandler, HTTPServer
import requests
+import requests_cache
import paperdoorknob
TIMEOUT = 8
@@ -27,7 +29,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)))
@@ -59,18 +79,58 @@ class TestFetch(unittest.TestCase):
self._web_server.server_close()
def testFetch(self) -> None:
- paperdoorknob.fetch(f"http://localhost:{self._port()}", TIMEOUT)
- self.assertEqual(self._request_counter, 1)
- paperdoorknob.fetch(f"http://localhost:{self._port()}", TIMEOUT)
- self.assertEqual(self._request_counter, 2)
+ with requests.session() as s:
+ paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
+ self.assertEqual(self._request_counter, 1)
+ paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
+ self.assertEqual(self._request_counter, 2)
+
+ def testFetchCaching(self) -> None:
+ with requests_cache.CachedSession() as s:
+ paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
+ self.assertEqual(self._request_counter, 1)
+ 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 testReplies(self) -> None:
+ with requests.session() as s:
+ 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."])
def testFetchErrors(self) -> None:
- with self.assertRaises(requests.HTTPError):
- paperdoorknob.fetch(
- f"http://localhost:{self._port()}/not_found", TIMEOUT)
- with self.assertRaises(requests.HTTPError):
- paperdoorknob.fetch(
- f"http://localhost:{self._port()}/server_error", TIMEOUT)
+ with requests.session() as s:
+ with self.assertRaises(requests.HTTPError):
+ paperdoorknob.fetch(
+ f"http://localhost:{self._port()}/not_found", s, TIMEOUT)
+ with self.assertRaises(requests.HTTPError):
+ 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 sure?\nPretty sure.\n')
if __name__ == '__main__':