From 06648d415a48a04d477652b90f83c3f63d144eca Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Fri, 16 Feb 2018 11:07:51 +0200 Subject: [PATCH] Don't be overly strict when validating /api/docs/ response in tests this avoids comparing against files on disk (and the huge diff the test runner produces in case of failure). Instead we look for a 200 HTTP response with large enough size and some well known strings inside the response data. --- tests/pylorax/test_server.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/tests/pylorax/test_server.py b/tests/pylorax/test_server.py index a31d0c98..38ca3d38 100644 --- a/tests/pylorax/test_server.py +++ b/tests/pylorax/test_server.py @@ -503,17 +503,26 @@ class ServerTestCase(unittest.TestCase): self.assertEqual(len(recipes), 1) self.assertEqual(recipes[0], test_recipe) + def assert_documentation(self, response): + """ + Assert response containing documentation from /api/doc/ is + valid *without* comparing to the actual file on disk. + """ + self.assertEqual(200, response.status_code) + self.assertTrue(len(response.data) > 1024) + # look for some well known strings inside the documentation + self.assertRegexpMatches(response.data, "Lorax [\d.]+ documentation") + self.assertRegexpMatches(response.data, "Copyright \d+, Red Hat, Inc.") + def test_api_docs(self): """Test the /api/docs/""" resp = self.server.get("/api/docs/") - doc_str = open(os.path.abspath(joinpaths(os.path.dirname(__file__), "../../docs/html/index.html"))).read() - self.assertEqual(doc_str, resp.data) + self.assert_documentation(resp) def test_api_docs_with_existing_path(self): """Test the /api/docs/modules.html""" resp = self.server.get("/api/docs/modules.html") - doc_str = open(os.path.abspath(joinpaths(os.path.dirname(__file__), "../../docs/html/modules.html"))).read() - self.assertEqual(doc_str, resp.data) + self.assert_documentation(resp) def wait_for_status(self, uuid, wait_status): """Helper function that waits for a status