-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.py
268 lines (238 loc) · 11.3 KB
/
test.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
from app import app, ipv4_capable, ipv6_capable
import json
import unittest
class UnitTests(unittest.TestCase):
# Unit Tests for REST APIs
def test_status(self):
# Test pyPatrol node status json response
# Expected result: status = online
request, response = app.test_client.get('/status')
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
def test_ping(self):
if (ipv4_capable): # only run tests if IPv4 capable
# Test real IPv4 address (Google DNS)
# Expected result: status = online
params = {'ip': '8.8.8.8'}
request, response = app.test_client.post('/ping', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
# Test a bad IPv4 address (no existant local network)
# Expected result: status = offline
params = {'ip': '192.168.10.1'}
request, response = app.test_client.post('/ping', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'offline')
# Test real IPv4 hostname (Google)
# Expected result: status = online
params = {'ip': 'google.com'}
request, response = app.test_client.post('/ping', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
# Test an IPv6 address
# Expected result: status = error
params = {'ip': 'ipv6.google.com'}
request, response = app.test_client.post('/ping', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'error')
else:
print('This node is not IPv4 capable, skipping IPv4 ping tests...')
def test_ping6(self):
if (ipv6_capable): # only run tests if IPv6 capable
# Test real IPv6 address (Google DNS)
# Expected result: status = online
params = {'ip': '2001:4860:4860::8888'}
request, response = app.test_client.post('/ping6', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
# Test a bad IPv6 address (blackhole)
# Expected result: status = offline
params = {'ip': '100::'}
request, response = app.test_client.post('/ping6', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'offline')
# Test real IPv6 hostname (Google)
# Expected result: status = online
params = {'ip': 'ipv6.google.com'}
request, response = app.test_client.post('/ping6', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
# Test an IPv4 address
# Expected result: status = error
params = {'ip': '8.8.8.8'}
request, response = app.test_client.post('/ping6', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'error')
else:
print('This node is not IPv6 capable, skipping IPv6 ping tests...')
def test_cert(self):
if (ipv4_capable): # only run tests if IPv4 capable
# Test a (hopefully) valid cert
# Expected result: status = valid, reason = valid
params = {'hostname': 'sha256.badssl.com', 'buffer': '14'}
request, response = app.test_client.post('/cert', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'valid')
self.assertEqual(data['reason'], 'valid')
# Test a (hopefully) valid cert that expires within threshold
# Expected result: status = valid, reason = expires soon
params = {'hostname': 'sha256.badssl.com', 'buffer': '10000'}
request, response = app.test_client.post('/cert', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'valid')
self.assertEqual(data['reason'], 'expires soon')
# Test an expired cert
# Expected result: status = invalid, reason = expired
params = {'hostname': 'expired.badssl.com', 'buffer': '14'}
request, response = app.test_client.post('/cert', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'invalid')
self.assertEqual(data['reason'], 'expired')
# Test an invalid domain
# Expected result: valid = error, reason = error
params = {'hostname': 'thisserverdoesnotexist.com', 'buffer': '14'}
request, response = app.test_client.post('/cert', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'error')
self.assertEqual(data['reason'], 'error')
else:
print('This node is not IPv4 capable, skipping certificate tests...')
def test_http_response(self):
if (ipv4_capable):
# Test a valid website (200)
# Expected result: status = online, code = 200
params = {'hostname': 'https://httpstat.us/200', 'redirects': 'true', 'check_string': 'false', 'keywords': ''}
request, response = app.test_client.post('/http_response', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
self.assertEqual(data['code'], '200')
# Test a valid redirected website (301) and follow redirect (200)
# Expected result: status = online, code = 200
params = {'hostname': 'https://httpstat.us/301', 'redirects': 'true', 'check_string': 'false', 'keywords': ''}
request, response = app.test_client.post('/http_response', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
self.assertEqual(data['code'], '200')
# Test a valid redirected website (301) and don't follow redirect (200)
# Expected result: status = offline, code = 301
params = {'hostname': 'https://httpstat.us/301', 'redirects': 'false', 'check_string': 'false', 'keywords': ''}
request, response = app.test_client.post('/http_response', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'offline')
self.assertEqual(data['code'], '301')
# Test a non-existent domain
# Expected result: status = offline, code = 404
params = {'hostname': 'http://thisserverdoesnotexist.com', 'redirects': 'true', 'check_string': 'false', 'keywords': ''}
request, response = app.test_client.post('/http_response', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'offline')
self.assertEqual(data['code'], '404')
# Test an invalid webpage (404)
# Expected result: status = offline, code = 404
params = {'hostname': 'https://httpstat.us/404', 'redirects': 'true', 'check_string': 'false', 'keywords': ''}
request, response = app.test_client.post('/http_response', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'offline')
self.assertEqual(data['code'], '404')
# Test a valid website (200) and match text that's present
# Expected result: status = online, code = 200
params = {'hostname': 'https://httpstat.us/200', 'redirects': 'true', 'check_string': 'true', 'keywords': '200 OK'}
request, response = app.test_client.post('/http_response', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
self.assertEqual(data['code'], '200')
# Test a valid website (200) and match text that doesn't exist
# Expected result: status = offline, code = 200
params = {'hostname': 'https://httpstat.us/200', 'redirects': 'true', 'check_string': 'true', 'keywords': 'Dinosaur'}
request, response = app.test_client.post('/http_response', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'offline')
self.assertEqual(data['code'], '200')
else:
print('This node is not IPv4 capable, skipping HTTP response tests...')
def test_tcp_socket(self):
if (ipv4_capable):
# Test a valid TCP socket (Google DNS)
# Expected result: status = online
params = {'ip': '8.8.8.8', 'port': '53'}
request, response = app.test_client.post('/tcp_socket', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
# Test an invalid TCP socket (hopefully a random port with nothing listening)
# Expected result: status = offline
params = {'ip': '8.8.8.8', 'port': '65500'}
request, response = app.test_client.post('/tcp_socket', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'offline')
# Test a bad port number
# Expected result: status = error
params = {'ip': '8.8.8.8', 'port': '70000'}
request, response = app.test_client.post('/tcp_socket', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'error')
# Test a bad hostname/ip
# Expected result: status = error
params = {'ip': 'thisserverdoesnotexist.com', 'port': '8080'}
request, response = app.test_client.post('/tcp_socket', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'error')
else:
print('This node is not IPv4 capable, skipping TCP port tests...')
def test_steam_server(self):
if (ipv4_capable):
# Test a (hopefully) valid Steam server (pulled one from gametracker.com -- may go offline)
# Expected result: status = online
params = {'ip': '74.91.113.28', 'port': '27003'}
request, response = app.test_client.post('/steam_server', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'online')
# Test an invalid Steam server (random ip and port)
# Expected result: status = offline
params = {'ip': '123.122.121.120', 'port': '8787'}
request, response = app.test_client.post('/steam_server', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'offline')
# Test a bad port number
# Expected result: status = error
params = {'ip': '8.8.8.8', 'port': '70000'}
request, response = app.test_client.post('/steam_server', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'error')
# Test a bad hostname/ip
# Expected result: status = error
params = {'ip': 'thisserverdoesnotexist.com', 'port': '8080'}
request, response = app.test_client.post('/steam_server', data=json.dumps(params))
self.assertEqual(response.status, 200)
data = json.loads(response.text)
self.assertEqual(data['status'], 'error')
else:
print('This node is not IPv4 capable, skipping Steam server tests...')
if __name__ == '__main__':
unittest.main()