File: test_create_scan_config.py

package info (click to toggle)
python-gvm 26.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,132 kB
  • sloc: python: 44,662; makefile: 18
file content (45 lines) | stat: -rw-r--r-- 1,477 bytes parent folder | download
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
# SPDX-FileCopyrightText: 2018-2024 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#

from gvm.errors import RequiredArgument


class GmpCreateScanConfigTestMixin:
    def test_create_scan_config(self):
        self.gmp.create_scan_config("a1", "foo")

        self.connection.send.has_been_called_with(
            b"<create_config>"
            b"<copy>a1</copy>"
            b"<name>foo</name>"
            b"<usage_type>scan</usage_type>"
            b"</create_config>"
        )

    def test_create_scan_config_with_comment(self):
        self.gmp.create_scan_config("a1", "foo", comment="comment")

        self.connection.send.has_been_called_with(
            b"<create_config>"
            b"<comment>comment</comment>"
            b"<copy>a1</copy>"
            b"<name>foo</name>"
            b"<usage_type>scan</usage_type>"
            b"</create_config>"
        )

    def test_create_scan_config_missing_scan_config_id(self):
        with self.assertRaises(RequiredArgument):
            self.gmp.create_scan_config(config_id="", name="foo")

        with self.assertRaises(RequiredArgument):
            self.gmp.create_scan_config(config_id=None, name="foo")

    def test_create_scan_config_missing_name(self):
        with self.assertRaises(RequiredArgument):
            self.gmp.create_scan_config(config_id="c1", name=None)

        with self.assertRaises(RequiredArgument):
            self.gmp.create_scan_config(config_id="c1", name="")