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
|
"""Functional tests where the QNAP responses are mocked"""
# -*- coding:utf-8 -*-
import base64
import json
import os
import qnapstats
import responses
def get_immediate_subdirectories(a_dir):
return [name for name in os.listdir(a_dir)
if os.path.isdir(os.path.join(a_dir, name))]
response_directory = os.path.join(os.path.dirname(__file__), 'responses')
models = get_immediate_subdirectories(response_directory)
def add_mock_responses(rsps, directory):
rsps.add(responses.POST,
'http://localhost:8080/cgi-bin/authLogin.cgi',
body=file_get_contents(directory, 'login.xml'),
status=200,
content_type='text/xml')
if file_get_contents(directory, "login_with_get.xml"):
pwd = base64.b64encode("correcthorsebatterystaple".encode('utf-8')).decode('ascii')
rsps.add(responses.GET,
'http://localhost:8080/cgi-bin/authLogin.cgi?user=admin&pwd=' + pwd,
body=file_get_contents(directory, 'login_with_get.xml'),
status=200,
content_type='text/xml')
xml = file_get_contents(directory, 'bandwidth.xml')
if xml is not None:
rsps.add(responses.GET,
'http://localhost:8080/cgi-bin/management/chartReq.cgi?chart_func=QSM40bandwidth&sid=12345',
match_querystring=True,
body=xml,
status=200,
content_type='text/xml')
xml = file_get_contents(directory, 'bandwidth2.xml')
if xml is not None:
rsps.add(responses.GET,
'http://localhost:8080/cgi-bin/management/chartReq.cgi?chart_func=bandwidth&sid=12345',
match_querystring=True,
body=xml,
status=200,
content_type='text/xml')
xml = file_get_contents(directory, 'systemhealth.xml')
if xml is not None:
rsps.add(responses.GET,
'http://localhost:8080/cgi-bin/management/manaRequest.cgi?subfunc=sysinfo&sysHealth=1&sid=12345',
match_querystring=True,
body=file_get_contents(directory, 'systemhealth.xml'),
status=200,
content_type='text/xml')
xml = file_get_contents(directory, 'volumes.xml')
if xml is not None:
rsps.add(responses.GET,
'http://localhost:8080/cgi-bin/management/chartReq.cgi?chart_func=disk_usage&disk_select=all&include=all&sid=12345', # noqa: E501
match_querystring=True,
body=file_get_contents(directory, 'volumes.xml'),
status=200,
content_type='text/xml')
xml = file_get_contents(directory, 'smartdiskhealth.xml')
if xml is not None:
rsps.add(responses.GET,
'http://localhost:8080/cgi-bin/disk/qsmart.cgi?func=all_hd_data&sid=12345',
match_querystring=True,
body=file_get_contents(directory, 'smartdiskhealth.xml'),
status=200,
content_type='text/xml')
xml = file_get_contents(directory, 'systemstats.xml')
if xml is not None:
rsps.add(responses.GET,
'http://localhost:8080/cgi-bin/management/manaRequest.cgi?subfunc=sysinfo&hd=no&multicpu=1&sid=12345',
match_querystring=True,
body=file_get_contents(directory, 'systemstats.xml'),
status=200,
content_type='text/xml')
xml = file_get_contents(directory, 'firmwareupdate.xml')
if xml is not None:
rsps.add(responses.GET,
'http://localhost:8080/cgi-bin/sys/sysRequest.cgi?subfunc=firm_update&sid=12345',
match_querystring=True,
body=file_get_contents(directory, 'firmwareupdate.xml'),
status=200,
content_type='text/xml')
def file_get_contents(directory, file):
file = os.path.join(response_directory, directory, file)
if not os.path.exists(file):
return None
with open(file, 'r') as myfile:
return myfile.read()
for model_directory in models:
qnap = qnapstats.QNAPStats("localhost", 8080, "admin", "correcthorsebatterystaple")
with responses.RequestsMock(assert_all_requests_are_fired=False) as rsps:
add_mock_responses(rsps, model_directory)
bandwidth = file_get_contents(model_directory, 'bandwidth.json')
if bandwidth is not None:
assert json.dumps(qnap.get_bandwidth(), sort_keys=True) == bandwidth.rstrip()
smartdiskhealth = file_get_contents(model_directory, 'smartdiskhealth.json')
if smartdiskhealth is not None:
assert json.dumps(qnap.get_smart_disk_health(), sort_keys=True) == smartdiskhealth
systemhealth = file_get_contents(model_directory, 'systemhealth.json')
if systemhealth is not None:
assert json.dumps(qnap.get_system_health(), sort_keys=True) == systemhealth
systemstats = file_get_contents(model_directory, 'systemstats.json')
if systemstats is not None:
assert json.dumps(qnap.get_system_stats(), sort_keys=True) == systemstats
volumes = file_get_contents(model_directory, 'volumes.json')
if volumes is not None:
assert json.dumps(qnap.get_volumes(), sort_keys=True) == volumes
firmwareupdate = file_get_contents(model_directory, 'firmwareupdate.json')
if firmwareupdate is not None:
assert json.dumps(qnap.get_firmware_update(), sort_keys=True) == firmwareupdate
|