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
|
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2014-2023 Greenbone AG
#
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=unused-argument
# pylint: disable=disallowed-name
import time
from unittest.mock import Mock
from xml.etree import ElementTree as et
from ospd.ospd import OSPDaemon
def assert_called_once(mock: Mock):
if hasattr(mock, 'assert_called_once'):
return mock.assert_called_once()
if not mock.call_count == 1:
# pylint: disable=protected-access
msg = (
f"Expected '{mock._mock_name or 'mock'}' to have "
f"been called once. Called {mock.call_count} "
f"times.{mock._calls_repr()}"
)
raise AssertionError(msg)
def assert_called(mock: Mock):
"""assert that the mock was called at least once"""
if mock.call_count == 0:
# pylint: disable=protected-access
msg = f"Expected '{mock._mock_name or 'mock'}' to have been called."
raise AssertionError(msg)
class FakePsutil:
def __init__(self, available=None):
self.available = available
class FakeStream:
def __init__(self, return_value=True):
self.response = b''
self.return_value = return_value
def write(self, data):
self.response = self.response + data
return self.return_value
def get_response(self):
return et.fromstring(self.response)
class FakeDataManager:
def __init__(self):
pass
def dict(self):
return dict()
def __enter__(self):
pass
def __exit__(self, foo=None, bar=None, bar1=None, foo1=None):
pass
class DummyXML:
@staticmethod
def get_custom_vt_as_xml_str(vt_id, custom):
return '<custom><mytest>static test</mytest></custom>'
@staticmethod
def get_params_vt_as_xml_str(vt_id, vt_params):
return (
'<params><param id="abc" type="string">'
'<name>ABC</name><description>Test ABC</description>'
'<default>yes</default></param>'
'<param id="def" type="string">'
'<name>DEF</name><description>Test DEF</description>'
'<default>no</default></param></params>'
)
@staticmethod
def get_refs_vt_as_xml_str(vt_id, vt_refs):
response = (
'<refs><ref type="cve" id="CVE-2010-4480"/>'
'<ref type="url" id="http://example.com"/></refs>'
)
return response
@staticmethod
def get_dependencies_vt_as_xml_str(vt_id, vt_dependencies):
response = (
'<dependencies>'
'<dependency vt_id="1.3.6.1.4.1.25623.1.0.50282" />'
'<dependency vt_id="1.3.6.1.4.1.25623.1.0.50283" />'
'</dependencies>'
)
return response
@staticmethod
def get_severities_vt_as_xml_str(vt_id, severities):
response = (
'<severities><severity cvss_base="5.0" cvss_'
'type="cvss_base_v2">AV:N/AC:L/Au:N/C:N/I:N/'
'A:P</severity></severities>'
)
return response
@staticmethod
def get_detection_vt_as_xml_str(
vt_id, detection=None, qod_type=None, qod=None
):
response = '<detection qod_type="package">some detection</detection>'
return response
@staticmethod
def get_summary_vt_as_xml_str(vt_id, summary):
response = '<summary>Some summary</summary>'
return response
@staticmethod
def get_affected_vt_as_xml_str(vt_id, affected):
response = '<affected>Some affected</affected>'
return response
@staticmethod
def get_impact_vt_as_xml_str(vt_id, impact):
response = '<impact>Some impact</impact>'
return response
@staticmethod
def get_insight_vt_as_xml_str(vt_id, insight):
response = '<insight>Some insight</insight>'
return response
@staticmethod
def get_solution_vt_as_xml_str(
vt_id, solution, solution_type=None, solution_method=None
):
response = '<solution>Some solution</solution>'
return response
@staticmethod
def get_creation_time_vt_as_xml_str(
vt_id, vt_creation_time
): # pylint: disable=arguments-differ
response = f'<creation_time>{vt_creation_time}</creation_time>'
return response
@staticmethod
def get_modification_time_vt_as_xml_str(
vt_id, vt_modification_time
): # pylint: disable=arguments-differ
response = (
f'<modification_time>{vt_modification_time}</modification_time>'
)
return response
class DummyWrapper(OSPDaemon):
def __init__(self, results, checkresult=True):
super().__init__()
self.checkresult = checkresult
self.results = results
self.initialized = True
self.scan_collection.data_manager = FakeDataManager()
self.scan_collection.file_storage_dir = '/tmp'
self.scan_collection.scan_collection_lock = FakeDataManager()
def check(self):
return self.checkresult
def exec_scan(self, scan_id):
time.sleep(0.01)
for res in self.results:
if res.result_type == 'log':
self.add_scan_log(
scan_id,
res.host,
res.hostname,
res.name,
res.value,
res.port,
)
if res.result_type == 'error':
self.add_scan_error(
scan_id,
res.host,
res.hostname,
res.name,
res.value,
res.port,
)
elif res.result_type == 'host-detail':
self.add_scan_host_detail(
scan_id,
res.host,
res.hostname,
res.name,
res.value,
)
elif res.result_type == 'alarm':
self.add_scan_alarm(
scan_id,
res.host,
res.hostname,
res.name,
res.value,
res.port,
res.test_id,
res.severity,
res.qod,
)
else:
raise ValueError(res.result_type)
|