X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/136277e30143cd1219c896bb4980027ac3c6dbe1..07f9b178a58e87f90aa7ab1e459c17561345154d:/paperdoorknob_test.py
diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py
index ab13eed..9ea877d 100644
--- a/paperdoorknob_test.py
+++ b/paperdoorknob_test.py
@@ -6,6 +6,8 @@
import unittest
+import io
+import subprocess
import threading
from http.server import BaseHTTPRequestHandler, HTTPServer
import requests
@@ -28,7 +30,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,13 +101,16 @@ class TestFetch(unittest.TestCase):
paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
self.assertEqual(self._request_counter, 1)
- def testFetchConents(self) -> None:
+ def testReplies(self) -> None:
with requests.session() as s:
- doc = paperdoorknob.fetch(
- f"http://localhost:{self._port()}", s, TIMEOUT)
- body = doc.body
- assert body
- self.assertEqual(body.text, "This is glowfic")
+ 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 requests.session() as s:
@@ -98,6 +121,35 @@ 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'''\\documentclass{article}
+\\begin{document}
+This is glowfic
+You \\emph{sure}?
+Pretty sure.
+\\end{document}
+''')
+
+ def testPDF(self) -> None:
+ with requests.session() as s:
+ with open("test.tex", 'wb') as out:
+ paperdoorknob.process(
+ f"http://localhost:{self._port()}",
+ s,
+ TIMEOUT,
+ out,
+ 'pandoc')
+ subprocess.run(['pdflatex', 'test.tex'],
+ stdin=subprocess.DEVNULL, check=True)
+
if __name__ == '__main__':
unittest.main()