X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/386218397a4723129b31e3954bb960da61f72474..refs/heads/main:/paperdoorknob_test.py diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index 425d5e3..571dda6 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -8,12 +8,15 @@ from abc import ABC, abstractmethod import unittest import io +import re import subprocess import paperdoorknob from testing.fakeserver import FakeGlowficServer from fetch import DirectFetcher, FakeFetcher, Fetcher +from glowfic import ContentOnlyLayout, BesideIconLayout +from images import FakeImageStore from spec import Spec from texify import DirectTexifier, PandocTexifier, VerifyingTexifier @@ -30,47 +33,68 @@ class BaseTestProcess(ABC): def fetcher(self) -> Fetcher: raise NotImplementedError() - def testReplies(self) -> None: - replies = paperdoorknob.replies( - paperdoorknob.clean( - paperdoorknob.parse( - self.fetcher().fetch( - self.url())))) - assert [r.text.strip() for r in replies] == [ - "This is glowfic", - "You sure?", - "Pretty sure."] - def testProcess(self) -> None: buf = io.BytesIO() + texifier = PandocTexifier('pandoc') spec = Spec( self.url(), self.fetcher(), - PandocTexifier('pandoc'), - buf) + FakeImageStore(), + lambda x: x, + lambda x: None, + texifier, + lambda x: x, + 20, + ContentOnlyLayout, + 'margin=20mm', + buf, + lambda _: None) paperdoorknob.process(spec) - assert buf.getvalue() == b'''\\documentclass{article} + assert re.match(br'''\\documentclass{article} +(\\usepackage{[a-z]+}\n)+\\usepackage\[margin=20mm\]{geometry} \\begin{document} -This is glowfic -You \\emph{sure}? -Pretty sure. +(.|\n)* +\\glowhead{}{}{}{}This is \\href{https://glowfic.com}{glowfic} +\\glowhead{}{}{}{}You \\emph{sure}\? +\\glowhead{}{}{}{}Pretty sure. \\end{document} -''' +''', buf.getvalue()) def testDirectTexifier(self) -> None: texifier = VerifyingTexifier( PandocTexifier('pandoc'), DirectTexifier()) buf = io.BytesIO() - spec = Spec(self.url(), self.fetcher(), texifier, buf) + spec = Spec( + self.url(), + self.fetcher(), + FakeImageStore(), + lambda x: x, + lambda x: None, + texifier, + lambda x: x, + 20, + ContentOnlyLayout, + None, + buf, + lambda _: None) paperdoorknob.process(spec) def testPDF(self) -> None: + texifier = PandocTexifier('pandoc') with open("test.tex", 'wb') as out: spec = Spec( self.url(), self.fetcher(), - PandocTexifier('pandoc'), - out) + FakeImageStore(), + lambda x: x, + lambda x: None, + texifier, + lambda x: x, + 20, + BesideIconLayout, + None, + out, + lambda _: None) paperdoorknob.process(spec) subprocess.run(['pdflatex', 'test.tex'], stdin=subprocess.DEVNULL, check=True) @@ -97,7 +121,8 @@ 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)}) + html = f.read(9999) + return FakeFetcher({'fic': html, 'fic?view=flat': html}) if __name__ == '__main__':