-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintegrationtest.py
59 lines (53 loc) · 2.38 KB
/
integrationtest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import unittest
import requests
class TestRest(unittest.TestCase):
'''
Sample Integration Test Cases for https://github.com/Azure-Samples/helm-charts/tree/master/chart-source/azure-vote
'''
azure_vote_endpoint = "http://localhost:8080"
def test_1_title_check(self):
"""
[Test Case 1]: Basic Integration Test Title Check - GET - http://azure-vote-front/
"""
print("\n[Test Case 1]: Basic Integration Test Title Check - GET - http://azure-vote-front/")
url = self.azure_vote_endpoint + '/'
response = requests.get(url=url)
status_code = response.status_code
self.assertEqual(status_code, 200)
request_body = response.text
self.assertIn("Kind Integration Test Framework Demo", request_body)
def test_2_button_check_1(self):
"""
[Test Case 2]: Basic Integration Test Button Check 1 - GET - http://azure-vote-front/
"""
print("\n[Test Case 1]: Basic Integration Test Button Check 1 - GET - http://azure-vote-front/")
url = self.azure_vote_endpoint + '/'
response = requests.get(url=url)
status_code = response.status_code
self.assertEqual(status_code, 200)
request_body = response.text
self.assertIn("Kubernetes", request_body)
def test_3_button_check_2(self):
"""
[Test Case 3]: Basic Integration Test Button Check 2 - GET - http://azure-vote-front/
"""
print("\n[Test Case 1]: Basic Integration Test Button Check 2 - GET - http://azure-vote-front/")
url = self.azure_vote_endpoint + '/'
response = requests.get(url=url)
status_code = response.status_code
self.assertEqual(status_code, 200)
request_body = response.text
self.assertIn("DockerSwarm", request_body)
def test_4_default_vote_check(self):
"""
[Test Case 3]: Basic Integration Test Default Votes - GET - http://azure-vote-front/
"""
print("\n[Test Case 1]: Basic Integration Test Default Votes - GET - http://azure-vote-front/")
url = self.azure_vote_endpoint + '/'
response = requests.get(url=url)
status_code = response.status_code
self.assertEqual(status_code, 200)
request_body = response.text
self.assertIn("Kubernetes - 0 | DockerSwarm - 0", request_body)
if __name__ == '__main__':
unittest.main()