]>
Commit | Line | Data |
---|---|---|
b25a2f90 SW |
1 | # paperdoorknob: Print glowfic |
2 | # | |
3 | # This program is free software: you can redistribute it and/or modify it | |
4 | # under the terms of the GNU General Public License as published by the | |
5 | # Free Software Foundation, version 3. | |
6 | ||
7 | ||
8 | import unittest | |
36ae1d5f | 9 | import io |
07f9b178 | 10 | import subprocess |
b25a2f90 | 11 | import paperdoorknob |
41b11505 | 12 | from testing.fakeserver import FakeGlowficServer |
a64403ac | 13 | from fetch import DirectFetcher |
f1dec720 | 14 | from texify import DirectTexifier, PandocTexifier, VerifyingTexifier |
b25a2f90 | 15 | |
b25a2f90 SW |
16 | TIMEOUT = 8 |
17 | ||
18 | ||
a64403ac | 19 | class TestPaperDoorknob(unittest.TestCase): |
b25a2f90 | 20 | def setUp(self) -> None: |
41b11505 SW |
21 | self._server = self.enterContext(FakeGlowficServer()) |
22 | self._port = self._server.port() | |
b25a2f90 | 23 | |
a2d42468 | 24 | def testReplies(self) -> None: |
a64403ac | 25 | with DirectFetcher(TIMEOUT) as f: |
a2d42468 SW |
26 | replies = paperdoorknob.replies( |
27 | paperdoorknob.clean( | |
bf06f467 SW |
28 | paperdoorknob.parse( |
29 | f.fetch(f"http://localhost:{self._port}")))) | |
47cfa3cd | 30 | self.assertEqual([r.text.strip() for r in replies], |
55958ec0 | 31 | ["This is glowfic", "You sure?", "Pretty sure."]) |
136277e3 | 32 | |
36ae1d5f | 33 | def testProcess(self) -> None: |
79631507 | 34 | texifier = PandocTexifier('pandoc') |
a64403ac | 35 | with DirectFetcher(TIMEOUT) as f: |
36ae1d5f SW |
36 | buf = io.BytesIO() |
37 | paperdoorknob.process( | |
79631507 | 38 | f"http://localhost:{self._port}", f, texifier, buf) |
07f9b178 SW |
39 | self.assertEqual(buf.getvalue(), b'''\\documentclass{article} |
40 | \\begin{document} | |
41 | This is glowfic | |
42 | You \\emph{sure}? | |
43 | Pretty sure. | |
44 | \\end{document} | |
45 | ''') | |
46 | ||
f1dec720 SW |
47 | def testDirectTexifier(self) -> None: |
48 | texifier = VerifyingTexifier( | |
49 | PandocTexifier('pandoc'), DirectTexifier()) | |
50 | with DirectFetcher(TIMEOUT) as f: | |
51 | buf = io.BytesIO() | |
52 | paperdoorknob.process( | |
53 | f"http://localhost:{self._port}", f, texifier, buf) | |
54 | ||
07f9b178 | 55 | def testPDF(self) -> None: |
79631507 | 56 | texifier = PandocTexifier('pandoc') |
a64403ac | 57 | with DirectFetcher(TIMEOUT) as f: |
07f9b178 SW |
58 | with open("test.tex", 'wb') as out: |
59 | paperdoorknob.process( | |
79631507 | 60 | f"http://localhost:{self._port}", f, texifier, out) |
07f9b178 SW |
61 | subprocess.run(['pdflatex', 'test.tex'], |
62 | stdin=subprocess.DEVNULL, check=True) | |
36ae1d5f | 63 | |
b25a2f90 SW |
64 | |
65 | if __name__ == '__main__': | |
66 | unittest.main() |