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
15 from testing
.fakeserver
import FakeGlowficServer
16 from domfilter
import ApplyDOMFilters
17 from fetch
import DirectFetcher
, FakeFetcher
, Fetcher
18 from glowfic
import ContentOnlyLayout
, BelowIconLayout
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:
43 lambda x
: ApplyDOMFilters('NoEdit,NoFooter', x
),
44 ContentOnlyLayout(PandocTexifier('pandoc')),
47 paperdoorknob
.process(spec
)
48 assert buf
.getvalue() == b
'''\\documentclass{article}
49 \\usepackage{graphicx}
50 \\usepackage{varwidth}
51 \\usepackage{wrapstuff}
52 \\usepackage[margin=20mm]{geometry}
63 def testDirectTexifier(self
) -> None:
64 texifier
= VerifyingTexifier(
65 PandocTexifier('pandoc'), DirectTexifier())
72 lambda x
: ApplyDOMFilters('NoEdit,NoFooter', x
),
73 ContentOnlyLayout(texifier
),
76 paperdoorknob
.process(spec
)
78 def testPDF(self
) -> None:
79 with open("test.tex", 'wb') as out
:
85 lambda x
: ApplyDOMFilters('NoEdit,NoFooter', x
),
86 BelowIconLayout(PandocTexifier('pandoc'), 20),
89 paperdoorknob
.process(spec
)
90 subprocess
.run(['pdflatex', 'test.tex'],
91 stdin
=subprocess
.DEVNULL
, check
=True)
94 class TestProcessFromWebserver(BaseTestProcess
, unittest
.TestCase
):
96 def setUp(self
) -> None:
97 self
._fetcher
= self
.enterContext(DirectFetcher(TIMEOUT
))
98 self
._server
= self
.enterContext(FakeGlowficServer())
99 self
._port
= self
._server
.port()
101 def url(self
) -> str:
102 return f
"http://localhost:{self._port}"
104 def fetcher(self
) -> Fetcher
:
108 class TestProcessFromFakeFetcher(BaseTestProcess
, unittest
.TestCase
):
110 def url(self
) -> str:
113 def fetcher(self
) -> Fetcher
:
114 with open('testdata/this-is-glowfic.html', 'rb') as f
:
115 return FakeFetcher({'fic?view=flat': f.read(9999)}
)
118 if __name__
== '__main__':