mirror of https://github.com/MISP/misp-dashboard
fix: return flag_error value
parent
139bd993a2
commit
f5757362db
|
@ -33,7 +33,7 @@ def test():
|
||||||
supposed_ip = '8.8.8.8'
|
supposed_ip = '8.8.8.8'
|
||||||
geo_helper.getCoordFromIpAndPublish(supposed_ip, categ)
|
geo_helper.getCoordFromIpAndPublish(supposed_ip, categ)
|
||||||
rep = geo_helper.getTopCoord(today)
|
rep = geo_helper.getTopCoord(today)
|
||||||
excpected_result = [['{"lat": 37.751, "lon": -97.822}', 1.0]]
|
excpected_result = [['{"lat": 37.751, "lon": -97.822, "categ": "Network Activity", "value": "8.8.8.8"}', 1.0]]
|
||||||
if rep != excpected_result:
|
if rep != excpected_result:
|
||||||
print('ip to coord result not matching')
|
print('ip to coord result not matching')
|
||||||
flag_error = True
|
flag_error = True
|
||||||
|
@ -70,6 +70,8 @@ def test():
|
||||||
print('Phone to coord result not matching')
|
print('Phone to coord result not matching')
|
||||||
flag_error = True
|
flag_error = True
|
||||||
|
|
||||||
|
return flag_error
|
||||||
|
|
||||||
wipeRedis()
|
wipeRedis()
|
||||||
if test():
|
if test():
|
||||||
wipeRedis()
|
wipeRedis()
|
||||||
|
|
Loading…
Reference in New Issue