forked from openmsa/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_lookup.py
More file actions
431 lines (316 loc) · 11.6 KB
/
test_lookup.py
File metadata and controls
431 lines (316 loc) · 11.6 KB
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
"""Module Test lookup."""
import json
from unittest.mock import MagicMock
from unittest.mock import patch
import pytest
from msa_sdk.lookup import Lookup
from util import _is_valid_json
@pytest.fixture
def lookup_fixture():
"""
Lookup fixture
"""
with patch('requests.post') as mock_post:
mock_post.return_value.json.return_value = {'token': '12345qwert'}
with patch('msa_sdk.msa_api.host_port') as mock_host_port:
mock_host_port.return_value = ('api_hostname', '8080')
lookup = Lookup()
return lookup
@patch('requests.post')
def test_device_ids(mock_post, lookup_fixture):
"""Test a list of devices"""
mock_post.return_value.json.return_value = {'token': '12345qwert'}
first_dev = {
'id': 71655,
'prefix': 'hto',
'ubiId': 'hto71655',
'externalReference': 'hto71655'
}
second_dev = {
'id': 73055,
'prefix': 'CKB',
'ubiId': 'CKB73055',
'externalReference': 'CKB73055'
}
devices = [first_dev, second_dev]
with patch('requests.get') as mock_call_get:
mock_call_get.return_value.text = json.dumps(devices)
lookup = lookup_fixture
lookup.look_list_device_ids()
assert lookup.path == '/lookup/devices'
assert _is_valid_json(lookup.content)
assert json.loads(lookup.content)[0] == first_dev
assert json.loads(lookup.content)[1] == second_dev
@patch('requests.post')
def test_device_ids_fail(mock_post, lookup_fixture):
"""Test fail device ids"""
mock_post.return_value.json.return_value = {'token': '12345qwert'}
fail_return = {
"errorCode": 500,
"message": "Not found"
}
fail_response = {
'wo_status': 'FAIL',
'wo_comment': "Get device ids",
'wo_newparams': "Not found"
}
with patch('requests.get') as mock_call_get:
mock_call_get.return_value = MagicMock(ok=False)
mock_call_get.return_value.json.return_value = fail_return
lookup = lookup_fixture
lookup.look_list_device_ids()
assert lookup.path == '/lookup/devices'
assert lookup.content == json.dumps(fail_response)
@patch('requests.post')
def test_customer_ids(mock_post, lookup_fixture):
"""Test a list of customers"""
mock_post.return_value.json.return_value = {'token': '12345qwert'}
first_costu = {
'id': 7117,
'prefix': 'MSK',
'ubiId': 'MSKA7117',
'name': 'Training',
'externalReference': 'MSKA7117',
'operatorId': 3,
'displayName': 'Training - MSKA7117',
'displayNameForJsps': 'Training - MSKA7117',
'type': 'A'
}
second_costu = {
'id': 3158,
'prefix': 'MSA',
'ubiId': 'MSAA3158',
'name': 'UBIqube demo',
'externalReference': 'MSAA3158',
'operatorId': 10,
'displayName': 'UBIqube demo - MSAA3158',
'displayNameForJsps': 'UBIqube demo - MSAA3158',
'type': 'A'
}
customers = [first_costu, second_costu]
with patch('requests.get') as mock_call_get:
mock_call_get.return_value.text = json.dumps(customers)
lookup = lookup_fixture
lookup.look_list_customer_ids()
assert lookup.path == '/lookup/customers'
assert _is_valid_json(lookup.content)
assert json.loads(lookup.content)[0] == first_costu
assert json.loads(lookup.content)[1] == second_costu
@patch('requests.post')
def test_manager_ids(mock_post, lookup_fixture):
"""Test a list of managers"""
mock_post.return_value.json.return_value = {'token': '12345qwert'}
first_manager = {
'id': 39311,
'prefix': 'DGT',
'ubiId': 'DGTG39311',
'name': 'mnDelegation_Test',
'externalReference': 'MDGT',
'operatorId': 418,
'displayName': 'mnDelegation_Test - MDGT',
'displayNameForJsps': 'mnDelegation_Test - MDGT',
'type': 'G'
}
second_manager = {
'id': 39331,
'prefix': 'RMG',
'ubiId': 'RMGG39331',
'name': 'mnDlg_TestRMG',
'externalReference': 'MRMG',
'operatorId': 420,
'displayName': 'mnDlg_TestRMG - MRMG',
'displayNameForJsps': 'mnDlg_TestRMG - MRMG',
'type': 'G'
}
managers = [first_manager, second_manager]
with patch('requests.get') as mock_call_get:
mock_call_get.return_value.text = json.dumps(managers)
lookup = lookup_fixture
lookup.look_list_manager_ids()
assert lookup.path == '/lookup/managers'
assert _is_valid_json(lookup.content)
assert json.loads(lookup.content) == managers
@patch('requests.post')
def test_manager_ids_fail(mock_post, lookup_fixture):
"""Test fail manager ids """
mock_post.return_value.json.return_value = {'token': '12345qwert'}
fail_return = {
"errorCode": 500,
"message": "Not found"
}
fail_response = {
'wo_status': 'FAIL',
'wo_comment': "Get manager ids",
'wo_newparams': "Not found"
}
with patch('requests.get') as mock_call_get:
mock_call_get.return_value = MagicMock(ok=False)
mock_call_get.return_value.json.return_value = fail_return
lookup = lookup_fixture
lookup.look_list_manager_ids()
assert lookup.path == '/lookup/managers'
assert _is_valid_json(lookup.content)
assert lookup.content == json.dumps(fail_response)
@patch('requests.post')
def test_operator_ids(mock_post, lookup_fixture):
"""Test a list of operator"""
mock_post.return_value.json.return_value = {'token': '12345qwert'}
first_operator = {
'id': 39311,
'prefix': 'DGT',
'ubiId': 'DGTG39311',
'name': 'mnDelegation_Test',
'externalReference': 'MDGT',
'operatorId': 418,
'displayName': 'mnDelegation_Test - MDGT',
'displayNameForJsps': 'mnDelegation_Test - MDGT',
'type': 'G'
}
second_operator = {
'id': 39331,
'prefix': 'RMG',
'ubiId': 'RMGG39331',
'name': 'mnDlg_TestRMG',
'externalReference': 'MRMG',
'operatorId': 420,
'displayName': 'mnDlg_TestRMG - MRMG',
'displayNameForJsps': 'mnDlg_TestRMG - MRMG',
'type': 'G'
}
operators = [first_operator, second_operator]
with patch('requests.get') as mock_call_get:
mock_call_get.return_value.text = json.dumps(operators)
lookup = lookup_fixture
lookup.look_list_operators_id(1234)
assert lookup.path == '/lookup/operators/id/1234'
assert _is_valid_json(lookup.content)
assert json.loads(lookup.content) == operators
@patch('requests.post')
def test_operator_ids_fail(mock_post, lookup_fixture):
"""Test fail operator ids """
mock_post.return_value.json.return_value = {'token': '12345qwert'}
fail_return = {
"errorCode": 500,
"message": "Operator id not found"
}
fail_response = {
'wo_status': 'FAIL',
'wo_comment': "Get operators id",
'wo_newparams': "Operator id not found"
}
with patch('requests.get') as mock_call_get:
mock_call_get.return_value = MagicMock(ok=False)
mock_call_get.return_value.json.return_value = fail_return
lookup = lookup_fixture
lookup.look_list_operators_id(1234)
assert lookup.path == '/lookup/operators/id/1234'
assert _is_valid_json(lookup.content)
assert lookup.content == json.dumps(fail_response)
@patch('requests.post')
def test_sec_nodes(mock_post, lookup_fixture):
"""Test a list of sec nodes"""
mock_post.return_value.json.return_value = {'token': '12345qwert'}
first_sec_node = {
'name': 'DEV-MA2',
'logAddress': '10.30.18.86',
'smsAddress': '127.0.0.1',
'repNodeName': '',
'isAlive': True,
'ipv6Addr': '',
'ipv6Mask': '64',
'ipv6Gw': ''
}
sec_nodes = [first_sec_node]
with patch('requests.get') as mock_call_get:
mock_call_get.return_value.text = json.dumps(sec_nodes)
lookup = lookup_fixture
lookup.look_list_sec_nodes()
assert lookup.path == '/lookup/sec_nodes'
assert _is_valid_json(lookup.content)
assert json.loads(lookup.content)[0] == first_sec_node
@patch('requests.post')
def test_sec_nodes_fail(mock_post, lookup_fixture):
"""Test fail sec nodes """
mock_post.return_value.json.return_value = {'token': '12345qwert'}
fail_return = {
"errorCode": 500,
"message": "Sec nodes not found"
}
fail_response = {
'wo_status': 'FAIL',
'wo_comment': "Get sec nodes",
'wo_newparams': "Sec nodes not found"
}
with patch('requests.get') as mock_call_get:
mock_call_get.return_value = MagicMock(ok=False)
mock_call_get.return_value.json.return_value = fail_return
lookup = lookup_fixture
lookup.look_list_sec_nodes()
assert lookup.path == '/lookup/sec_nodes'
assert _is_valid_json(lookup.content)
assert lookup.content == json.dumps(fail_response)
@patch('requests.post')
def test_device_by_customer(mock_post, lookup_fixture):
"""Test list of device by customer ref"""
mock_post.return_value.json.return_value = {'token': '12345qwert'}
first_dev = {
'id': 71655,
'prefix': 'hto',
'ubiId': 'hto71655',
'externalReference': 'hto71655'
}
second_dev = {
'id': 73055,
'prefix': 'CKB',
'ubiId': 'CKB73055',
'externalReference': 'CKB73055'
}
devices = [first_dev, second_dev]
with patch('requests.get') as mock_call_get:
mock_call_get.return_value.text = json.dumps(devices)
lookup = lookup_fixture
lookup.look_list_device_by_customer_ref('cust_ref')
assert lookup.path == '/lookup/customer/devices/reference/cust_ref'
assert _is_valid_json(lookup.content)
assert json.loads(lookup.content) == devices
@patch('requests.post')
def test_device_by_customer_fail(mock_post, lookup_fixture):
"""Test fail list of device by customer ref"""
mock_post.return_value.json.return_value = {'token': '12345qwert'}
fail_return = {
"errorCode": 500,
"message": "Customer not found"
}
fail_response = {
'wo_status': 'FAIL',
'wo_comment': "Get list device by customer reference",
'wo_newparams': "Customer not found"
}
with patch('requests.get') as mock_call_get:
mock_call_get.return_value = MagicMock(ok=False, reason='Not found')
mock_call_get.return_value.json.return_value = fail_return
lookup = lookup_fixture
lookup.look_list_device_by_customer_ref('cust_ref')
assert lookup.path == '/lookup/customer/devices/reference/cust_ref'
assert lookup.content == json.dumps(fail_response)
@patch('requests.get')
def test_look_list_customer_by_operator_prefix(mock_post, lookup_fixture):
"""Test look_list_customer_by_operator_prefix"""
mock_post.return_value.json.return_value = {'token': 'ope'}
first_dev = {
"actorId" : 91,
"externalReference" : "opeA14",
"firstname" : "",
"id" : 14,
"login" : "test14",
"name" : "test",
"operatorPrefix" : "ope"
}
devices = [first_dev]
with patch('requests.get') as mock_call_get:
mock_call_get.return_value.text = json.dumps(devices)
lookup = lookup_fixture
lookup.look_list_customer_by_operator_prefix('ope')
assert lookup.path == '/lookup/v1/customer-by-operator-prefix/ope'
assert _is_valid_json(lookup.content)
assert json.loads(lookup.content) == devices