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
100
101
102
103
104
105
|
###############################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) #
# and others #
# #
# All rights reserved. This program and the accompanying materials #
# are made available under the terms of the Apache License, Version 2.0 #
# which accompanies this distribution, and is available at #
# http://www.apache.org/licenses/LICENSE-2.0 #
###############################################################################
import json
from unittest.mock import patch
from test.api.responders_test.test_data import base
from test.api.responders_test.test_data import tokens
from test.api.test_base import TestBase
class TestTokens(TestBase):
def test_create_token_without_auth_obj(self):
self.validate_post_request(tokens.URL,
body=json.dumps(tokens.AUTH_OBJ_WITHOUT_AUTH),
expected_code=base.BAD_REQUEST_CODE)
def test_create_token_without_methods(self):
self.validate_post_request(tokens.URL,
body=json.dumps(tokens.AUTH_OBJ_WITHOUT_METHODS),
expected_code=base.BAD_REQUEST_CODE)
def test_create_token_without_credentials_in_credentials_method(self):
self.validate_post_request(tokens.URL,
body=json.dumps(tokens.AUTH_OBJ_WITHOUT_CREDENTIALS),
expected_code=base.UNAUTHORIZED_CODE)
def test_create_token_without_token_in_token_method(self):
self.validate_post_request(tokens.URL,
body=json.dumps(tokens.AUTH_OBJ_WITHOUT_TOKEN),
expected_code=base.UNAUTHORIZED_CODE)
@patch(tokens.AUTH_VALIDATE_CREDENTIALS)
def test_create_token_with_wrong_credentials(self, validate_credentials):
self.validate_post_request(tokens.URL,
body=json.dumps(tokens.AUTH_OBJ_WITH_WRONG_CREDENTIALS),
mocks={
validate_credentials: False
},
expected_code=base.UNAUTHORIZED_CODE)
@patch(tokens.AUTH_VALIDATE_TOKEN)
def test_create_token_with_wrong_token(self, validate_token):
self.validate_post_request(tokens.URL,
body=json.dumps(tokens.AUTH_OBJ_WITH_WRONG_TOKEN),
mocks={
validate_token: 'token error'
},
expected_code=base.UNAUTHORIZED_CODE)
@patch(tokens.AUTH_WRITE_TOKEN)
@patch(tokens.AUTH_VALIDATE_CREDENTIALS)
def test_create_token_with_correct_credentials(self, validate_credentials, write_token):
self.validate_post_request(tokens.URL,
body=json.dumps(tokens.AUTH_OBJ_WITH_CORRECT_CREDENTIALS),
mocks={
validate_credentials: True,
write_token: None
},
expected_code=base.CREATED_CODE)
@patch(tokens.AUTH_WRITE_TOKEN)
@patch(tokens.AUTH_VALIDATE_TOKEN)
def test_create_token_with_correct_token(self, validate_token, write_token):
self.validate_post_request(tokens.URL,
body=json.dumps(tokens.AUTH_OBJ_WITH_CORRECT_TOKEN),
mocks={
validate_token: None,
write_token: None
},
expected_code=base.CREATED_CODE)
def test_delete_token_without_token(self):
self.validate_delete_request(tokens.URL,
headers=tokens.HEADER_WITHOUT_TOKEN,
expected_code=base.UNAUTHORIZED_CODE
)
@patch(tokens.AUTH_VALIDATE_TOKEN)
def test_delete_token_with_wrong_token(self, validate_token):
self.validate_delete_request(tokens.URL,
headers=tokens.HEADER_WITH_WRONG_TOKEN,
mocks={
validate_token: 'token error'
},
expected_code=base.UNAUTHORIZED_CODE)
@patch(tokens.AUTH_VALIDATE_TOKEN)
@patch(tokens.AUTH_DELETE_TOKEN)
def test_delete_token_with_correct_token(self, delete_token, validate_token):
self.validate_delete_request(tokens.URL,
headers=tokens.HEADER_WITH_CORRECT_TOKEN,
mocks={
validate_token: None,
delete_token: None
},
expected_code=base.SUCCESSFUL_CODE)
|