Add simple function tests

This commit is contained in:
sqozz 2018-04-07 21:31:29 +02:00
parent 264c6216eb
commit 867e177c90
1 changed files with 46 additions and 0 deletions

46
schort_functional_tests.py Executable file
View File

@ -0,0 +1,46 @@
#!/usr/bin/env python3
import os
import unittest
import requests
BASE_URL="http://localhost:5000"
class SchortFunctionalTestCase(unittest.TestCase):
def setUp(self):
# maybe later
pass
def tearDown(self):
# maybe later
pass
def assertPostReq(self, url, data = {}):
req = requests.post(url, data=data)
self.assertEqual(req.status_code, 200)
return req
def assertGetReq(self, url, params = {}):
req = requests.get(url, params=params)
self.assertEqual(req.status_code, 200)
return req
def test_entry_page(self):
req = self.assertGetReq(BASE_URL + "/")
def test_custom_creation(self):
req = self.assertPostReq(BASE_URL + "/", data={"url" : "https://github.com/sqozz/schort", "wishId" : "custom_user_supplied_url"})
def test_easy_api(self):
'''
Test if the api is intuitive/easy to implement
While creating the custom_creation test, out of pure laziness, I left out the whishId parameter.
For intuitive use of the API from a script, this shouldn't be neccessary.
'''
req = self.assertPostReq("http://localhost:5000/", data={"url" : "https://github.com/sqozz/schort"})
if __name__ == '__main__':
unittest.main()
# vim: noexpandtab:ts=2:sw=2:sts=2