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
|
# SPDX-FileCopyrightText: 2018-2024 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
from gvm.errors import RequiredArgument
class GmpCreateGroupTestMixin:
def test_create_group(self):
self.gmp.create_group(name="foo")
self.connection.send.has_been_called_with(
b"<create_group><name>foo</name></create_group>"
)
def test_missing_name(self):
with self.assertRaises(RequiredArgument):
self.gmp.create_group(None)
with self.assertRaises(RequiredArgument):
self.gmp.create_group("")
def test_create_group_with_comment(self):
self.gmp.create_group(name="foo", comment="bar")
self.connection.send.has_been_called_with(
b"<create_group>"
b"<name>foo</name>"
b"<comment>bar</comment>"
b"</create_group>"
)
def test_create_special_group(self):
self.gmp.create_group(name="foo", special=True)
self.connection.send.has_been_called_with(
b"<create_group>"
b"<name>foo</name>"
b"<specials>"
b"<full/>"
b"</specials>"
b"</create_group>"
)
def test_create_group_with_users(self):
self.gmp.create_group(name="foo", users=[])
self.connection.send.has_been_called_with(
b"<create_group><name>foo</name></create_group>"
)
self.gmp.create_group(name="foo", users=["u1", "u2"])
self.connection.send.has_been_called_with(
b"<create_group>"
b"<name>foo</name>"
b"<users>u1,u2</users>"
b"</create_group>"
)
|