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:
38 texifier
= PandocTexifier('pandoc')
48 ContentOnlyLayout(texifier
),
52 paperdoorknob
.process(spec
)
53 assert re
.match(br
'''\\documentclass{article}
54 (\\usepackage{[a-z]+}\n)+\\usepackage\[margin=20mm\]{geometry}
57 This is \\href{https://glowfic.com}{glowfic}
66 def testDirectTexifier(self
) -> None:
67 texifier
= VerifyingTexifier(
68 PandocTexifier('pandoc'), DirectTexifier())
79 ContentOnlyLayout(texifier
),
83 paperdoorknob
.process(spec
)
85 def testPDF(self
) -> None:
86 texifier
= PandocTexifier('pandoc')
87 with open("test.tex", 'wb') as out
:
97 BesideIconLayout(texifier
),
101 paperdoorknob
.process(spec
)
102 subprocess
.run(['pdflatex', 'test.tex'],
103 stdin
=subprocess
.DEVNULL
, check
=True)
106 class TestProcessFromWebserver(BaseTestProcess
, unittest
.TestCase
):
108 def setUp(self
) -> None:
109 self
._fetcher
= self
.enterContext(DirectFetcher(TIMEOUT
))
110 self
._server
= self
.enterContext(FakeGlowficServer())
111 self
._port
= self
._server
.port()
113 def url(self
) -> str:
114 return f
"http://localhost:{self._port}"
116 def fetcher(self
) -> Fetcher
:
120 class TestProcessFromFakeFetcher(BaseTestProcess
, unittest
.TestCase
):
122 def url(self
) -> str:
125 def fetcher(self
) -> Fetcher
:
126 with open('testdata/this-is-glowfic.html', 'rb') as f
:
127 return FakeFetcher({'fic?view=flat': f.read(9999)}
)
130 if __name__
== '__main__':