1
|
|
|
# Copyright (C) 2020 Greenbone Networks GmbH |
2
|
|
|
# |
3
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later |
4
|
|
|
# |
5
|
|
|
# This program is free software; you can redistribute it and/or |
6
|
|
|
# modify it under the terms of the GNU General Public License |
7
|
|
|
# as published by the Free Software Foundation; either version 2 |
8
|
|
|
# of the License, or (at your option) any later version. |
9
|
|
|
# |
10
|
|
|
# This program is distributed in the hope that it will be useful, |
11
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
12
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13
|
|
|
# GNU General Public License for more details. |
14
|
|
|
# |
15
|
|
|
# You should have received a copy of the GNU General Public License |
16
|
|
|
# along with this program; if not, write to the Free Software |
17
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
18
|
|
|
|
19
|
|
|
from unittest import TestCase |
20
|
|
|
|
21
|
|
|
from ospd.command.registry import get_commands, register_command, remove_command |
22
|
|
|
|
23
|
|
|
|
24
|
|
|
COMMAND_NAMES = [ |
25
|
|
|
"help", |
26
|
|
|
"get_version", |
27
|
|
|
"get_performance", |
28
|
|
|
"get_scanner_details", |
29
|
|
|
"delete_scan", |
30
|
|
|
"get_vts", |
31
|
|
|
"stop_scan", |
32
|
|
|
"get_scans", |
33
|
|
|
"start_scan", |
34
|
|
|
] |
35
|
|
|
|
36
|
|
|
|
37
|
|
|
class RegistryTestCase(TestCase): |
38
|
|
|
def test_available_commands(self): |
39
|
|
|
commands = get_commands() |
40
|
|
|
|
41
|
|
|
self.assertEqual(len(COMMAND_NAMES), len(commands)) |
42
|
|
|
|
43
|
|
|
c_list = [c.name for c in commands] |
44
|
|
|
|
45
|
|
|
self.assertListEqual(COMMAND_NAMES, c_list) |
46
|
|
|
|
47
|
|
|
def test_register_command(self): |
48
|
|
|
commands = get_commands() |
49
|
|
|
before = len(commands) |
50
|
|
|
|
51
|
|
|
class Foo: |
52
|
|
|
name = 'foo' |
53
|
|
|
|
54
|
|
|
register_command(Foo) |
55
|
|
|
|
56
|
|
|
commands = get_commands() |
57
|
|
|
after = len(commands) |
58
|
|
|
|
59
|
|
|
try: |
60
|
|
|
self.assertEqual(before + 1, after) |
61
|
|
|
|
62
|
|
|
c_dict = {c.name: c for c in commands} |
63
|
|
|
|
64
|
|
|
self.assertIn('foo', c_dict) |
65
|
|
|
self.assertIs(c_dict['foo'], Foo) |
66
|
|
|
finally: |
67
|
|
|
remove_command(Foo) |
68
|
|
|
|
69
|
|
|
commands = get_commands() |
70
|
|
|
after2 = len(commands) |
71
|
|
|
|
72
|
|
|
self.assertEqual(before, after2) |
73
|
|
|
|
74
|
|
|
c_dict = {c.name: c for c in commands} |
75
|
|
|
self.assertNotIn('foo', c_dict) |
76
|
|
|
|