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 |
22
|
|
|
from gvm.protocols.gmpv7 import Gmp |
23
|
|
|
|
24
|
|
|
from .. import MockConnection |
25
|
|
|
|
26
|
|
|
|
27
|
|
|
class GmpAuthenticateTestCase(unittest.TestCase): |
28
|
|
|
|
29
|
|
|
def setUp(self): |
30
|
|
|
self.connection = MockConnection() |
31
|
|
|
self.gmp = Gmp(self.connection) |
32
|
|
|
|
33
|
|
|
def test_missing_username(self): |
34
|
|
|
with self.assertRaises(RequiredArgument): |
35
|
|
|
self.gmp.authenticate(None, 'foo') |
36
|
|
|
|
37
|
|
|
with self.assertRaises(RequiredArgument): |
38
|
|
|
self.gmp.authenticate('', 'foo') |
39
|
|
|
|
40
|
|
|
def test_missing_password(self): |
41
|
|
|
with self.assertRaises(RequiredArgument): |
42
|
|
|
self.gmp.authenticate('bar', None) |
43
|
|
|
|
44
|
|
|
with self.assertRaises(RequiredArgument): |
45
|
|
|
self.gmp.authenticate('bar', '') |
46
|
|
|
|
47
|
|
|
def test_authentication_success(self): |
48
|
|
|
self.assertFalse(self.gmp.is_authenticated()) |
49
|
|
|
|
50
|
|
|
self.gmp.authenticate('foo', 'bar') |
51
|
|
|
|
52
|
|
|
self.connection.send.has_been_called_with( |
53
|
|
|
'<authenticate>' |
54
|
|
|
'<credentials>' |
55
|
|
|
'<username>foo</username>' |
56
|
|
|
'<password>bar</password>' |
57
|
|
|
'</credentials>' |
58
|
|
|
'</authenticate>' |
59
|
|
|
) |
60
|
|
|
|
61
|
|
|
self.assertTrue(self.gmp.is_authenticated()) |
62
|
|
|
|
63
|
|
|
def test_authentication_failure(self): |
64
|
|
|
self.connection.read.return_value( |
65
|
|
|
'<authentication_response status="400" status_text="Auth failed"/>') |
66
|
|
|
|
67
|
|
|
self.assertFalse(self.gmp.is_authenticated()) |
68
|
|
|
|
69
|
|
|
self.gmp.authenticate('foo', 'bar') |
70
|
|
|
|
71
|
|
|
self.connection.send.has_been_called_with( |
72
|
|
|
'<authenticate>' |
73
|
|
|
'<credentials>' |
74
|
|
|
'<username>foo</username>' |
75
|
|
|
'<password>bar</password>' |
76
|
|
|
'</credentials>' |
77
|
|
|
'</authenticate>' |
78
|
|
|
) |
79
|
|
|
|
80
|
|
|
self.assertFalse(self.gmp.is_authenticated()) |
81
|
|
|
|
82
|
|
|
|
83
|
|
|
if __name__ == '__main__': |
84
|
|
|
unittest.main() |
85
|
|
|
|