Extend basic entry page test

This commit is contained in:
sqozz 2018-04-07 22:11:35 +02:00
parent 867e177c90
commit 9d9b591cff
1 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,10 @@ class SchortFunctionalTestCase(unittest.TestCase):
def test_entry_page(self):
req = self.assertGetReq(BASE_URL + "/")
content = req.text
self.assertNotEqual(len(content), 0, msg="Get request content was empty.")
self.assertRegex(content, ".*\<html.*", msg="Didn't find an opening <html tag in the response.")
self.assertRegex(content, ".*\<div.*", msg="Didn't find any opening <div tag in the response.")
def test_custom_creation(self):
req = self.assertPostReq(BASE_URL + "/", data={"url" : "https://github.com/sqozz/schort", "wishId" : "custom_user_supplied_url"})