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
|
# SPDX-FileCopyrightText: 2020-2024 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
from decimal import Decimal
from gvm.errors import InvalidArgument, RequiredArgument
class GmpCreateNoteTestMixin:
def test_create_note(self):
self.gmp.create_note("foo", nvt_oid="oid1")
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"</create_note>"
)
def test_create_note_missing_text(self):
with self.assertRaises(RequiredArgument):
self.gmp.create_note(None, "od1")
with self.assertRaises(RequiredArgument):
self.gmp.create_note("", "oid1")
def test_create_note_missing_nvt_oid(self):
with self.assertRaises(RequiredArgument):
self.gmp.create_note("foo", None)
with self.assertRaises(RequiredArgument):
self.gmp.create_note("foo", "")
def test_create_note_with_hosts(self):
self.gmp.create_note("foo", nvt_oid="oid1", hosts=[])
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"</create_note>"
)
self.gmp.create_note("foo", nvt_oid="oid1", hosts=["h1", "h2"])
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"<hosts>h1,h2</hosts>"
b"</create_note>"
)
def test_create_note_with_port(self):
self.gmp.create_note("foo", nvt_oid="oid1", port="666/tcp")
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"<port>666/tcp</port>"
b"</create_note>"
)
def test_create_note_with_result_id(self):
self.gmp.create_note("foo", nvt_oid="oid1", result_id="r1")
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b'<result id="r1"/>'
b"</create_note>"
)
def test_create_note_with_task_id(self):
self.gmp.create_note("foo", nvt_oid="oid1", task_id="t1")
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b'<task id="t1"/>'
b"</create_note>"
)
def test_create_note_with_severity(self):
self.gmp.create_note("foo", nvt_oid="oid1", severity="5.5")
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"<severity>5.5</severity>"
b"</create_note>"
)
self.gmp.create_note("foo", nvt_oid="oid1", severity=5.5)
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"<severity>5.5</severity>"
b"</create_note>"
)
self.gmp.create_note("foo", nvt_oid="oid1", severity=Decimal(5.5))
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"<severity>5.5</severity>"
b"</create_note>"
)
def test_create_note_with_days_active(self):
self.gmp.create_note("foo", nvt_oid="oid1", days_active=0)
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"<active>0</active>"
b"</create_note>"
)
self.gmp.create_note("foo", nvt_oid="oid1", days_active=-1)
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"<active>-1</active>"
b"</create_note>"
)
self.gmp.create_note("foo", nvt_oid="oid1", days_active=3600)
self.connection.send.has_been_called_with(
b"<create_note>"
b"<text>foo</text>"
b'<nvt oid="oid1"/>'
b"<active>3600</active>"
b"</create_note>"
)
def test_create_note_with_invalid_port(self):
with self.assertRaises(InvalidArgument):
self.gmp.create_note(text="foo", nvt_oid="oid1", port="123")
with self.assertRaises(InvalidArgument):
self.gmp.create_note(text="foo", nvt_oid="oid1", port="tcp/123")
|