1
|
|
|
# -*- coding: utf-8 -*- |
2
|
|
|
# Copyright (C) 2018 Greenbone Networks GmbH |
3
|
|
|
# |
4
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later |
5
|
|
|
# |
6
|
|
|
# This program is free software: you can redistribute it and/or modify |
7
|
|
|
# it under the terms of the GNU General Public License as published by |
8
|
|
|
# the Free Software Foundation, either version 3 of the License, or |
9
|
|
|
# (at your option) any later version. |
10
|
|
|
# |
11
|
|
|
# This program is distributed in the hope that it will be useful, |
12
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
13
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14
|
|
|
# GNU General Public License for more details. |
15
|
|
|
# |
16
|
|
|
# You should have received a copy of the GNU General Public License |
17
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
18
|
|
|
|
19
|
|
|
import unittest |
20
|
|
|
|
21
|
|
|
from gvm.errors import RequiredArgument, InvalidArgument |
22
|
|
|
from gvm.protocols.gmpv7 import Gmp |
23
|
|
|
|
24
|
|
|
from .. import MockConnection |
25
|
|
|
|
26
|
|
|
|
27
|
|
|
class GmpImportConfigTestCase(unittest.TestCase): |
28
|
|
|
|
29
|
|
|
CONFIG_XML_STRING = '<get_configs_response status="200" status_text="OK">' \ |
30
|
|
|
'<config id="c4aa21e4-23e6-4064-ae49-c0d425738a98">' \ |
31
|
|
|
'<name>Foobar</name>' \ |
32
|
|
|
'<comment>Foobar config</comment>' \ |
33
|
|
|
'<creation_time>2018-11-09T10:48:03Z</creation_time>' \ |
34
|
|
|
'<modification_time>2018-11-09T10:48:03Z</modification_time>' \ |
35
|
|
|
'</config>' \ |
36
|
|
|
'</get_configs_response>' |
37
|
|
|
|
38
|
|
|
def setUp(self): |
39
|
|
|
self.connection = MockConnection() |
40
|
|
|
self.gmp = Gmp(self.connection) |
41
|
|
|
|
42
|
|
|
def test_import_config(self): |
43
|
|
|
self.gmp.import_config( |
44
|
|
|
self.CONFIG_XML_STRING |
45
|
|
|
) |
46
|
|
|
|
47
|
|
|
self.connection.send.has_been_called_with( |
48
|
|
|
'<create_config>' |
49
|
|
|
'{config}' |
50
|
|
|
'</create_config>'.format( |
51
|
|
|
config=self.CONFIG_XML_STRING) |
52
|
|
|
) |
53
|
|
|
|
54
|
|
|
def test_import_missing_config_xml(self): |
55
|
|
|
with self.assertRaises(RequiredArgument): |
56
|
|
|
self.gmp.import_config(None) |
57
|
|
|
|
58
|
|
|
with self.assertRaises(RequiredArgument): |
59
|
|
|
self.gmp.import_config('') |
60
|
|
|
|
61
|
|
|
def test_import_invalid_xml(self): |
62
|
|
|
with self.assertRaises(InvalidArgument): |
63
|
|
|
self.gmp.import_config( |
64
|
|
|
'abcdef' |
65
|
|
|
) |
66
|
|
|
|
67
|
|
|
|
68
|
|
|
if __name__ == '__main__': |
69
|
|
|
unittest.main() |
70
|
|
|
|