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
|
# SPDX-FileCopyrightText: 2018-2024 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
class GmpGetScanConfigNvtsTestMixin:
def test_get_scan_config_nvts_simple(self):
self.gmp.get_scan_config_nvts()
self.connection.send.has_been_called_with(b"<get_nvts/>")
def test_get_scan_config_nvts_with_details(self):
self.gmp.get_scan_config_nvts(details=True)
self.connection.send.has_been_called_with(b'<get_nvts details="1"/>')
self.gmp.get_scan_config_nvts(details=False)
self.connection.send.has_been_called_with(b'<get_nvts details="0"/>')
def test_get_scan_config_nvts_with_preferences(self):
self.gmp.get_scan_config_nvts(preferences=True)
self.connection.send.has_been_called_with(
b'<get_nvts preferences="1"/>'
)
self.gmp.get_scan_config_nvts(preferences=False)
self.connection.send.has_been_called_with(
b'<get_nvts preferences="0"/>'
)
def test_get_scan_config_nvts_with_preference_count(self):
self.gmp.get_scan_config_nvts(preference_count=True)
self.connection.send.has_been_called_with(
b'<get_nvts preference_count="1"/>'
)
def test_get_scan_config_nvts_with_timeout(self):
self.gmp.get_scan_config_nvts(timeout=True)
self.connection.send.has_been_called_with(b'<get_nvts timeout="1"/>')
self.gmp.get_scan_config_nvts(timeout=False)
self.connection.send.has_been_called_with(b'<get_nvts timeout="0"/>')
def test_get_scan_config_nvts_with_config_id(self):
self.gmp.get_scan_config_nvts(config_id="config_id")
self.connection.send.has_been_called_with(
b'<get_nvts config_id="config_id"/>'
)
def test_get_scan_config_nvts_with_preferences_config_id(self):
self.gmp.get_scan_config_nvts(
preferences_config_id="preferences_config_id"
)
self.connection.send.has_been_called_with(
b'<get_nvts preferences_config_id="preferences_config_id"/>'
)
def test_get_scan_config_nvts_with_family(self):
self.gmp.get_scan_config_nvts(family="family")
self.connection.send.has_been_called_with(
b'<get_nvts family="family"/>'
)
def test_get_scan_config_nvts_with_sort_order(self):
self.gmp.get_scan_config_nvts(sort_order="sort_order")
self.connection.send.has_been_called_with(
b'<get_nvts sort_order="sort_order"/>'
)
def test_get_scan_config_nvts_with_sort_field(self):
self.gmp.get_scan_config_nvts(sort_field="sort_field")
self.connection.send.has_been_called_with(
b'<get_nvts sort_field="sort_field"/>'
)
|