X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/f1dec72014657ab33bffa8f68064d85cc862ea65..cfd0b634e21851a0d9e8b4c8c258307baefcd931:/paperdoorknob_test.py diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index 4cead97..65fc2a9 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -5,61 +5,117 @@ # Free Software Foundation, version 3. +from abc import ABC, abstractmethod import unittest import io import subprocess + import paperdoorknob + from testing.fakeserver import FakeGlowficServer -from fetch import DirectFetcher +from domfilter import ApplyDOMFilters +from fetch import DirectFetcher, FakeFetcher, Fetcher +from images import ImageStore +from spec import Spec from texify import DirectTexifier, PandocTexifier, VerifyingTexifier TIMEOUT = 8 -class TestPaperDoorknob(unittest.TestCase): - def setUp(self) -> None: - self._server = self.enterContext(FakeGlowficServer()) - self._port = self._server.port() +class BaseTestProcess(ABC): + + @abstractmethod + def url(self) -> str: + raise NotImplementedError() + + @abstractmethod + def fetcher(self) -> Fetcher: + raise NotImplementedError() def testReplies(self) -> None: - with DirectFetcher(TIMEOUT) as f: - replies = paperdoorknob.replies( - paperdoorknob.clean( - paperdoorknob.parse( - f.fetch(f"http://localhost:{self._port}")))) - self.assertEqual([r.text.strip() for r in replies], - ["This is glowfic", "You sure?", "Pretty sure."]) + 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: - texifier = PandocTexifier('pandoc') - with DirectFetcher(TIMEOUT) as f: - buf = io.BytesIO() - paperdoorknob.process( - f"http://localhost:{self._port}", f, texifier, buf) - self.assertEqual(buf.getvalue(), b'''\\documentclass{article} + buf = io.BytesIO() + spec = Spec( + self.url(), + self.fetcher(), + ImageStore('is', self.fetcher()), + lambda x: x, + lambda x: ApplyDOMFilters('NoEdit,NoFooter', x), + PandocTexifier('pandoc'), + 'margin=20mm', + buf) + paperdoorknob.process(spec) + assert buf.getvalue() == b'''\\documentclass{article} +\\usepackage[margin=20mm]{geometry} \\begin{document} This is glowfic You \\emph{sure}? Pretty sure. \\end{document} -''') +''' def testDirectTexifier(self) -> None: texifier = VerifyingTexifier( PandocTexifier('pandoc'), DirectTexifier()) - with DirectFetcher(TIMEOUT) as f: - buf = io.BytesIO() - paperdoorknob.process( - f"http://localhost:{self._port}", f, texifier, buf) + buf = io.BytesIO() + spec = Spec( + self.url(), + self.fetcher(), + ImageStore('is', self.fetcher()), + lambda x: x, + lambda x: ApplyDOMFilters('NoEdit,NoFooter', x), + texifier, + None, + buf) + paperdoorknob.process(spec) def testPDF(self) -> None: - texifier = PandocTexifier('pandoc') - with DirectFetcher(TIMEOUT) as f: - with open("test.tex", 'wb') as out: - paperdoorknob.process( - f"http://localhost:{self._port}", f, texifier, out) - subprocess.run(['pdflatex', 'test.tex'], - stdin=subprocess.DEVNULL, check=True) + with open("test.tex", 'wb') as out: + spec = Spec( + self.url(), + self.fetcher(), + ImageStore('is', self.fetcher()), + lambda x: x, + lambda x: ApplyDOMFilters('NoEdit,NoFooter', x), + PandocTexifier('pandoc'), + None, + out) + paperdoorknob.process(spec) + subprocess.run(['pdflatex', 'test.tex'], + stdin=subprocess.DEVNULL, check=True) + + +class TestProcessFromWebserver(BaseTestProcess, unittest.TestCase): + + def setUp(self) -> None: + self._fetcher = self.enterContext(DirectFetcher(TIMEOUT)) + self._server = self.enterContext(FakeGlowficServer()) + self._port = self._server.port() + + def url(self) -> str: + return f"http://localhost:{self._port}" + + def fetcher(self) -> Fetcher: + return self._fetcher + + +class TestProcessFromFakeFetcher(BaseTestProcess, unittest.TestCase): + + def url(self) -> str: + return 'fic' + + def fetcher(self) -> Fetcher: + with open('testdata/this-is-glowfic.html', 'rb') as f: + return FakeFetcher({'fic': f.read(9999)}) if __name__ == '__main__':