1 # paperdoorknob: Print glowfic
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.
8 from abc
import ABC
, abstractmethod
16 from testing
.fakeserver
import FakeGlowficServer
17 from fetch
import DirectFetcher
, FakeFetcher
, Fetcher
18 from glowfic
import ContentOnlyLayout
, BesideIconLayout
19 from images
import FakeImageStore
21 from texify
import DirectTexifier
, PandocTexifier
, VerifyingTexifier
26 class BaseTestProcess(ABC
):
30 raise NotImplementedError()
33 def fetcher(self
) -> Fetcher
:
34 raise NotImplementedError()
36 def testProcess(self
) -> None:
45 ContentOnlyLayout(PandocTexifier('pandoc')),
49 paperdoorknob
.process(spec
)
50 assert re
.match(br
'''\\documentclass{article}
51 (\\usepackage{[a-z]+}\n)+\\usepackage\[margin=20mm\]{geometry}
53 \\newcommand{\\href}\[2\]{#2\\footnote{\\detokenize{#1}}}
54 This is \\href{https://glowfic.com}{glowfic}
63 def testDirectTexifier(self
) -> None:
64 texifier
= VerifyingTexifier(
65 PandocTexifier('pandoc'), DirectTexifier())
74 ContentOnlyLayout(texifier
),
78 paperdoorknob
.process(spec
)
80 def testPDF(self
) -> None:
81 with open("test.tex", 'wb') as out
:
89 BesideIconLayout(PandocTexifier('pandoc'), 20),
93 paperdoorknob
.process(spec
)
94 subprocess
.run(['pdflatex', 'test.tex'],
95 stdin
=subprocess
.DEVNULL
, check
=True)
98 class TestProcessFromWebserver(BaseTestProcess
, unittest
.TestCase
):
100 def setUp(self
) -> None:
101 self
._fetcher
= self
.enterContext(DirectFetcher(TIMEOUT
))
102 self
._server
= self
.enterContext(FakeGlowficServer())
103 self
._port
= self
._server
.port()
105 def url(self
) -> str:
106 return f
"http://localhost:{self._port}"
108 def fetcher(self
) -> Fetcher
:
112 class TestProcessFromFakeFetcher(BaseTestProcess
, unittest
.TestCase
):
114 def url(self
) -> str:
117 def fetcher(self
) -> Fetcher
:
118 with open('testdata/this-is-glowfic.html', 'rb') as f
:
119 return FakeFetcher({'fic?view=flat': f.read(9999)}
)
122 if __name__
== '__main__':