]> git.scottworley.com Git - paperdoorknob/blobdiff - paperdoorknob_test.py
Begin parsing glowfic html
[paperdoorknob] / paperdoorknob_test.py
index ab13eedf9730acccb9ec2b0f8ec64fc9c02ce016..83cf76ad4c9f17f7ac43150db9dbc3e62d7ea66e 100644 (file)
@@ -28,7 +28,13 @@ class FakeGlowficHTTPRequestHandler(BaseHTTPRequestHandler):
         return 200
 
     def do_GET(self) -> None:
-        body = b'<html><body>This is glowfic</body></html>'
+        body = b'''<html>
+  <body>
+    <div class="post-container post-post">
+      This is glowfic
+    </div>
+  </body>
+</html>'''
         self.send_response(self._response_code())
         self.send_header("Content-type", "text/html")
         self.send_header("Content-Length", str(len(body)))
@@ -83,11 +89,9 @@ class TestFetch(unittest.TestCase):
 
     def testFetchConents(self) -> None:
         with requests.session() as s:
-            doc = paperdoorknob.fetch(
-                f"http://localhost:{self._port()}", s, TIMEOUT)
-            body = doc.body
-            assert body
-            self.assertEqual(body.text, "This is glowfic")
+            post = paperdoorknob.Post(paperdoorknob.fetch(
+                f"http://localhost:{self._port()}", s, TIMEOUT))
+            self.assertEqual(post.text().text.strip(), "This is glowfic")
 
     def testFetchErrors(self) -> None:
         with requests.session() as s: