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
|
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2020-2024 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import unittest
from argparse import Namespace
from pathlib import Path
from unittest.mock import patch
from lxml import etree
from . import GmpMockFactory, load_script
CWD = Path(__file__).absolute().parent
class SendTargetTestCase(unittest.TestCase):
def setUp(self):
self.send_targets = load_script(
(CWD.parent.parent / "scripts"), "send-targets"
)
@patch("gvm.protocols.latest.Gmp", new_callable=GmpMockFactory)
def test_sent_target(self, mock_gmp: GmpMockFactory):
target_xml_path = CWD / "example_target.xml"
target_xml_str = target_xml_path.read_text(encoding="utf-8")
mock_gmp.mock_response(
"get_credentials",
'<get_credentials_response status="200" status_text="OK">'
'<credential id="6da5b7de-92ad-4dd2-8610-d5711b9c5937">'
"</credential>"
'<credential id="7802648d-1a31-4f69-bb30-00766a1ae1e6">'
"</credential>"
'<credential id="70a63257-4923-4bf4-a9bb-dd8b710b2d80">'
"</credential>"
'<credential id="2bac0c76-795e-4742-b17a-808a0ec8e409">'
"</credential>"
"</get_credentials_response>",
)
mock_gmp.mock_response(
"create_target",
'<create_target_response status="201" status_text="OK,'
'resource created" id="6c9f73f5-f14c-42bf-ab44-edb8d2493dbc"/>',
)
target = etree.XML(target_xml_str)
self.send_targets.parse_send_xml_tree(mock_gmp.gmp_protocol, target)
@patch("builtins.input", lambda *args: "n")
@patch("gvm.protocols.latest.Gmp", new_callable=GmpMockFactory)
def test_sent_target_no_credential(self, mock_gmp: GmpMockFactory):
target_xml_path = CWD / "example_target.xml"
target_xml_str = target_xml_path.read_text(encoding="utf-8")
mock_gmp.mock_response(
"get_credentials",
'<get_credentials_response status="200" status_text="OK">'
'<credential id="70a63257-4923-4bf4-a9bb-dd8b710b2d80">'
"</credential>"
'<credential id="2bac0c76-795e-4742-b17a-808a0ec8e409">'
"</credential>"
"</get_credentials_response>",
)
mock_gmp.mock_response(
"create_target",
'<create_target_response status="201" status_text="OK, '
'resource created" id="6c9f73f5-f14c-42bf-ab44-edb8d2493dbc"/>',
)
target = etree.XML(target_xml_str)
with self.assertRaises(SystemExit):
self.send_targets.parse_send_xml_tree(mock_gmp.gmp_protocol, target)
def test_args(self):
args = Namespace(script=["foo"])
with self.assertRaises(SystemExit):
self.send_targets.check_args(args)
args2 = Namespace(script=["foo", "bar", "baz"])
with self.assertRaises(SystemExit):
self.send_targets.check_args(args2)
|