|
1
|
|
|
# -*- coding: utf-8 -*- |
|
2
|
|
|
# Copyright (C) 2019-2021 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 InvalidArgument |
|
22
|
|
|
from gvm.protocols.gmpv208 import ( |
|
23
|
|
|
SnmpAuthAlgorithm, |
|
24
|
|
|
SnmpPrivacyAlgorithm, |
|
25
|
|
|
get_snmp_auth_algorithm_from_string, |
|
26
|
|
|
get_snmp_privacy_algorithm_from_string, |
|
27
|
|
|
) |
|
28
|
|
|
|
|
29
|
|
|
|
|
30
|
|
View Code Duplication |
class GetSnmpAuthAlgorithmFromStringTestCase(unittest.TestCase): |
|
|
|
|
|
|
31
|
|
|
def test_invalid_status(self): |
|
32
|
|
|
with self.assertRaises(InvalidArgument): |
|
33
|
|
|
get_snmp_auth_algorithm_from_string('foo') |
|
34
|
|
|
|
|
35
|
|
|
def test_none_or_empty_type(self): |
|
36
|
|
|
ts = get_snmp_auth_algorithm_from_string(None) |
|
37
|
|
|
self.assertIsNone(ts) |
|
38
|
|
|
ts = get_snmp_auth_algorithm_from_string('') |
|
39
|
|
|
self.assertIsNone(ts) |
|
40
|
|
|
|
|
41
|
|
|
def test_sha1(self): |
|
42
|
|
|
ts = get_snmp_auth_algorithm_from_string('sha1') |
|
43
|
|
|
self.assertEqual(ts, SnmpAuthAlgorithm.SHA1) |
|
44
|
|
|
|
|
45
|
|
|
def test_md5(self): |
|
46
|
|
|
ts = get_snmp_auth_algorithm_from_string('md5') |
|
47
|
|
|
self.assertEqual(ts, SnmpAuthAlgorithm.MD5) |
|
48
|
|
|
|
|
49
|
|
|
|
|
50
|
|
View Code Duplication |
class GetSnmpPrivacyAlgorithmFromStringTestCase(unittest.TestCase): |
|
|
|
|
|
|
51
|
|
|
def test_invalid_status(self): |
|
52
|
|
|
with self.assertRaises(InvalidArgument): |
|
53
|
|
|
get_snmp_privacy_algorithm_from_string('foo') |
|
54
|
|
|
|
|
55
|
|
|
def test_none_or_empty_type(self): |
|
56
|
|
|
ts = get_snmp_privacy_algorithm_from_string(None) |
|
57
|
|
|
self.assertIsNone(ts) |
|
58
|
|
|
ts = get_snmp_privacy_algorithm_from_string('') |
|
59
|
|
|
self.assertIsNone(ts) |
|
60
|
|
|
|
|
61
|
|
|
def test_aes(self): |
|
62
|
|
|
ts = get_snmp_privacy_algorithm_from_string('aes') |
|
63
|
|
|
self.assertEqual(ts, SnmpPrivacyAlgorithm.AES) |
|
64
|
|
|
|
|
65
|
|
|
def test_des(self): |
|
66
|
|
|
ts = get_snmp_privacy_algorithm_from_string('des') |
|
67
|
|
|
self.assertEqual(ts, SnmpPrivacyAlgorithm.DES) |
|
68
|
|
|
|