X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/b25a2f90428a1e7fda03c77fcee8ed0fa3b22555..ae7b6283ed5ead577d1a8f263d37d01717e2bb33:/paperdoorknob_test.py diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index c19e4db..4711fcd 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -5,37 +5,114 @@ # Free Software Foundation, version 3. +from abc import ABC, abstractmethod import unittest -import threading -from http.server import BaseHTTPRequestHandler, HTTPServer +import io +import subprocess + import paperdoorknob -TEST_PORT = 8080 +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 + TIMEOUT = 8 -class FakeGlowficHTTPRequestHandler(BaseHTTPRequestHandler): +class BaseTestProcess(ABC): + + @abstractmethod + def url(self) -> str: + raise NotImplementedError() + + @abstractmethod + def fetcher(self) -> Fetcher: + raise NotImplementedError() + + def testProcess(self) -> None: + buf = io.BytesIO() + spec = Spec( + self.url(), + self.fetcher(), + FakeImageStore(), + lambda x: x, + lambda x: ApplyDOMFilters('NoEdit,NoFooter', x), + 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. - def do_GET(self) -> None: - body = b'This is glowfic' - self.send_response(200) - self.send_header("Content-type", "text/html") - self.send_header("Content-Length", str(len(body))) - self.end_headers() - self.wfile.write(body) +\\end{document} +''' + def testDirectTexifier(self) -> None: + texifier = VerifyingTexifier( + PandocTexifier('pandoc'), DirectTexifier()) + buf = io.BytesIO() + spec = Spec( + self.url(), + self.fetcher(), + FakeImageStore(), + lambda x: x, + lambda x: ApplyDOMFilters('NoEdit,NoFooter', x), + ContentOnlyLayout(texifier), + None, + buf) + paperdoorknob.process(spec) + + def testPDF(self) -> None: + with open("test.tex", 'wb') as out: + spec = Spec( + self.url(), + self.fetcher(), + FakeImageStore(), + lambda x: x, + lambda x: ApplyDOMFilters('NoEdit,NoFooter', x), + BelowIconLayout(PandocTexifier('pandoc'), 20), + None, + out) + paperdoorknob.process(spec) + subprocess.run(['pdflatex', 'test.tex'], + stdin=subprocess.DEVNULL, check=True) + + +class TestProcessFromWebserver(BaseTestProcess, unittest.TestCase): -class TestFetch(unittest.TestCase): def setUp(self) -> None: - web_server = HTTPServer(('', TEST_PORT), FakeGlowficHTTPRequestHandler) - threading.Thread(target=web_server.serve_forever).start() - self._stop_server = web_server.shutdown + 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 tearDown(self) -> None: - self._stop_server() + def url(self) -> str: + return 'fic' - def testFetch(self) -> None: - paperdoorknob.fetch(f"http://localhost:{TEST_PORT}", TIMEOUT) + def fetcher(self) -> Fetcher: + with open('testdata/this-is-glowfic.html', 'rb') as f: + return FakeFetcher({'fic': f.read(9999)}) if __name__ == '__main__':