import unittest
+import io
+import subprocess
import threading
from http.server import BaseHTTPRequestHandler, HTTPServer
import requests
<div class="flat-post-replies">
<div class="post-container post-reply">
<div class="post-edit-box">We don't want edit boxes</div>
- You sure?
+ You <em>sure</em>?
<div class="post-footer">We don't want footers</div>
</div>
<div class="post-container post-reply">
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()