+ def testReplies(self) -> None:
+ replies = list(paperdoorknob.replies(
+ paperdoorknob.parse(self.fetcher().fetch(self.url()))))
+ for r in replies:
+ ApplyDOMFilters('NoEdit,NoFooter', r)
+ assert [r.text.strip() for r in replies] == [
+ "This is glowfic",
+ "You sure?",
+ "Pretty sure."]
+
+ def testProcess(self) -> None:
+ buf = io.BytesIO()
+ spec = Spec(
+ self.url(),
+ self.fetcher(),
+ lambda x: x,
+ lambda x: ApplyDOMFilters('NoEdit,NoFooter', x),
+ PandocTexifier('pandoc'),
+ 'margin=20mm',
+ buf)
+ paperdoorknob.process(spec)
+ assert buf.getvalue() == b'''\\documentclass{article}
+\\usepackage[margin=20mm]{geometry}
+\\begin{document}
+This is glowfic
+You \\emph{sure}?
+Pretty sure.
+\\end{document}
+'''
+
+ def testDirectTexifier(self) -> None:
+ texifier = VerifyingTexifier(
+ PandocTexifier('pandoc'), DirectTexifier())
+ buf = io.BytesIO()
+ spec = Spec(
+ self.url(),
+ self.fetcher(),
+ lambda x: x,
+ lambda x: ApplyDOMFilters('NoEdit,NoFooter', x),
+ texifier,
+ None,
+ buf)
+ paperdoorknob.process(spec)
+
+ def testPDF(self) -> None:
+ with open("test.tex", 'wb') as out:
+ spec = Spec(
+ self.url(),
+ self.fetcher(),
+ lambda x: x,
+ lambda x: ApplyDOMFilters('NoEdit,NoFooter', x),
+ PandocTexifier('pandoc'),
+ None,
+ out)
+ paperdoorknob.process(spec)
+ subprocess.run(['pdflatex', 'test.tex'],
+ stdin=subprocess.DEVNULL, check=True)
+
+
+class TestProcessFromWebserver(BaseTestProcess, unittest.TestCase):