X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/8be20b9d36c49271ed392038750dfba981c283b6..a8a47f7846509d22b123f4ab9cfdd7e65ac0d32e:/paperdoorknob_test.py diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index aa50340..2787287 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -15,6 +15,8 @@ import paperdoorknob from testing.fakeserver import FakeGlowficServer from domfilter import ApplyDOMFilters from fetch import DirectFetcher, FakeFetcher, Fetcher +from glowfic import ContentOnlyLayout, BelowIconLayout +from images import FakeImageStore from spec import Spec from texify import DirectTexifier, PandocTexifier, VerifyingTexifier @@ -31,31 +33,30 @@ class BaseTestProcess(ABC): def fetcher(self) -> Fetcher: raise NotImplementedError() - 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(), + FakeImageStore(), lambda x: x, lambda x: ApplyDOMFilters('NoEdit,NoFooter', x), - PandocTexifier('pandoc'), + ContentOnlyLayout(PandocTexifier('pandoc')), + 'margin=20mm', buf) paperdoorknob.process(spec) assert buf.getvalue() == b'''\\documentclass{article} +\\usepackage{graphicx} +\\usepackage{varwidth} +\\usepackage{wrapstuff} +\\usepackage[margin=20mm]{geometry} \\begin{document} This is glowfic + You \\emph{sure}? + Pretty sure. + \\end{document} ''' @@ -66,9 +67,11 @@ Pretty sure. spec = Spec( self.url(), self.fetcher(), + FakeImageStore(), lambda x: x, lambda x: ApplyDOMFilters('NoEdit,NoFooter', x), - texifier, + ContentOnlyLayout(texifier), + None, buf) paperdoorknob.process(spec) @@ -77,9 +80,11 @@ Pretty sure. spec = Spec( self.url(), self.fetcher(), + FakeImageStore(), lambda x: x, lambda x: ApplyDOMFilters('NoEdit,NoFooter', x), - PandocTexifier('pandoc'), + BelowIconLayout(PandocTexifier('pandoc'), 20), + None, out) paperdoorknob.process(spec) subprocess.run(['pdflatex', 'test.tex'], @@ -107,7 +112,7 @@ class TestProcessFromFakeFetcher(BaseTestProcess, unittest.TestCase): def fetcher(self) -> Fetcher: with open('testdata/this-is-glowfic.html', 'rb') as f: - return FakeFetcher({'fic': f.read(9999)}) + return FakeFetcher({'fic?view=flat': f.read(9999)}) if __name__ == '__main__':