5
0
mirror of https://github.com/cwinfo/hyperboria-peers.git synced 2024-09-19 14:59:36 +00:00

Add basic tests, fixes #18 and fixes #7

This commit is contained in:
Finn 2015-11-25 13:00:33 -08:00
parent eb3bd83994
commit e2ff78e603
2 changed files with 44 additions and 0 deletions

1
.travis.yml Normal file
View File

@ -0,0 +1 @@
script: ./tests.py

43
tests.py Executable file
View File

@ -0,0 +1,43 @@
#!/usr/bin/env python3
import json
import os
import sys
REQUIRED_FIELDS = ['publicKey', 'password', 'contact']
RED = '\033[91m'
GREEN = '\033[92m'
YELLOW = '\033[93m'
LIGHT_PURPLE = '\033[94m'
PURPLE = '\033[95m'
END = '\033[0m'
def validate(path):
print("Validating %s" % path)
try:
creds = open(path).read()
peers = json.loads("{%s}" % creds)
hosts = peers.keys()
for host in hosts:
for field in REQUIRED_FIELDS:
if not field in peers[host]:
print(" %sHost %s is missing the %s field!%s" % (RED, host, field, END))
return False
print(" %sSuccess!%s" % (GREEN, END))
return True
except ValueError:
print(" %sInvalid JSON!%s" % (RED, END))
return False
success = True
for directory, subdirs, files in os.walk('.'):
if len(files) > 0:
for f in files:
if f.endswith('.k'):
result = validate("%s/%s" % (directory, f))
if not result:
success = False
if not success:
sys.exit(1)