-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest_auth.py
More file actions
296 lines (252 loc) · 13.1 KB
/
Copy pathtest_auth.py
File metadata and controls
296 lines (252 loc) · 13.1 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
from pathlib import Path, PurePath
import pytest
import json
import jwt
import requests
from unittest.mock import patch, mock_open, Mock
from requests.auth import HTTPBasicAuth
from stackit.core.auth_methods.key_auth import KeyAuth, ServiceAccountKey
from stackit.core.auth_methods.token_auth import TokenAuth
from stackit.core.authorization import Authorization
from stackit.core.configuration import Configuration
DEFAULT_EMAIL = "email"
DEFAULT_PRIVATE_KEY_PATH = "/path/to/private.key"
DEFAULT_SERVICE_ACCOUNT_TOKEN = "token"
DEFAULT_SERVICE_ACCOUNT_KEY_PATH = "/path/to/account.key"
@pytest.fixture
def empty_credentials_file_json():
return """{
}"""
@pytest.fixture
def credentials_file_json():
return """{
"STACKIT_SERVICE_ACCOUNT_EMAIL": "email",
"STACKIT_PRIVATE_KEY_PATH": "/path/to/private.key",
"STACKIT_SERVICE_ACCOUNT_TOKEN": "token",
"STACKIT_SERVICE_ACCOUNT_KEY_PATH": "/path/to/account.key"
}"""
@pytest.fixture
def credentials_file_json_with_unused_arguments():
return """{
"STACKIT_SERVICE_ACCOUNT_EMAIL": "email",
"STACKIT_PRIVATE_KEY_PATH": "/path/to/private.key",
"STACKIT_SERVICE_ACCOUNT_TOKEN": "token",
"STACKIT_SERVICE_ACCOUNT_KEY_PATH": "/path/to/account.key",
"STACKIT_SERVICE_ACCOUNT_TOKEN_UNUSED": "unused"
}"""
@pytest.fixture
def service_account_key_file_json():
"""
This test key is for testing purposes only.
It does not hold any real private key that can be exploited.
:return: A JSON representation of the service account key
"""
return """{
"id": "37d5807c-f878-478a-97f6-231bd9d8bb65",
"publicKey": "-----BEGIN PUBLIC KEY-----\\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/9VaXHGxFjX1qrb3m4v\\naKkWRDNuqDgWmiE9PArcK34cr98eE3e6q0x6bJ1zwDQBhG1UHITbJ1QOSAnIWCDc\\nzh/lqZ9tMg/EruQQzQloVweRAiz1LpKiExc/7UyX2hI1Tw3VvCczqB5jZifBLQre\\nTEktpImA26fkOVP3/3HaXPuQiUcPx9BulgVkmfcTY8RXSlQja//R1iqbIULCaXXs\\nIzNJrGqg0Mf37Wout+lfjjrOul/8wuA1urD5Hv511yQxlnAooLktrw+hDtb6BLhA\\nb+XTklFKGKmSuPig4nQKUsZrYSmMWb2rRi3EOdOzIwy3/mqVZgtYtSsfHix10GSP\\nMQIDAQAB\\n-----END PUBLIC KEY-----",
"createdAt": "2024-01-01T00:00:00.000+00:00",
"validUntil": "2099-12-31T23:59:59.999+00:00",
"keyType": "USER_MANAGED",
"keyOrigin": "GENERATED",
"keyAlgorithm": "RSA_2048",
"active": true,
"credentials": {
"kid": "35b250fb-3186-47ca-8dc2-1b4632272785",
"iss": "pytest-test-3wv29m1@sa.stackit.cloud",
"sub": "cafba1a4-7c00-4206-bb2d-b566968bb026",
"aud": "https://stackit-service-account-prod.apps.01.cf.eu01.stackit.cloud"
}
}""" # noqa: E501 long publicKey
@pytest.fixture
def private_key_file():
"""
This private key was generated from scratch and cannot be used as part of a
service account key
:return: A base64 encoded text representation of the private key
"""
return """
-----BEGIN PRIVATE KEY-----
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCv/1VpccbEWNfW
qtvebi9oqRZEM26oOBaaIT08Ctwrfhyv3x4Td7qrTHpsnXPANAGEbVQchNsnVA5I
CchYINzOH+Wpn20yD8Su5BDNCWhXB5ECLPUukqITFz/tTJfaEjVPDdW8JzOoHmNm
J8EtCt5MSS2kiYDbp+Q5U/f/cdpc+5CJRw/H0G6WBWSZ9xNjxFdKVCNr/9HWKpsh
QsJpdewjM0msaqDQx/ftai636V+OOs66X/zC4DW6sPke/nXXJDGWcCiguS2vD6EO
1voEuEBv5dOSUUoYqZK4+KDidApSxmthKYxZvatGLcQ507MjDLf+apVmC1i1Kx8e
LHXQZI8xAgMBAAECggEAGiZUgP3MPDk9HKK3V3XEqobRDaIcs3bd+NmueQDeFMJA
rer3U4orHK+Y0xGT9L9laFE8OZ6N12qYUqDNeTasyB2aKJlNBq6sGRY+3tAihifU
JmAar+hOl4qRT4ddWqPw8sWJ99JVTQny1+dZPwGJ5QjMdNGPaVOpR9FPnE9E1CK3
j/Vxl2ERwz36H6zcgHx8NaHTwPvj7lJBjb3iYvsRESLt4FCgP+/T9M0ZSsvT0A09
bXCvBWBtoZP8zr8w2lNTNG2tQeevc0Z06dbNPvjT2HOHE1s7BVXvk+jtbfOy47dC
go42slozS1/SBV1Yh/WyMJvLuh/QOzjoTj/t5JAWKQKBgQDY9YwChD5BVWr/QcIj
oRHYryVUuXuv0RoVARKF4NfZFI1r/j0kZgGLm6+r4/MEAzZ44tKIHn4v+tLuEfhe
E49zhdVBb+aiGDiOGP7XdhGGvWXb4/uTTQBBlnlWyDSu9HJzLOx1vjyJVPtyDE4X
42v8YDOyQI90WCSWDwDB+x7TNQKBgQDPqtbrAzjCpqD1cyeQOexanKd0q/qwvkYD
s1X4+LufjzTo/epg9/NyoB/N7a8fJQlD6EvjnHHSlrhfWA5K7/DgFzu6XSmHqO4g
IxV7EaBvBqhqBQ7QFbwklxf/9FVx3KXo7zHlLidE5JZiSe6PL74fDWiopywKJC7C
Lv0c1gWvjQKBgQDUNI9mIrzVoFuQIVxnBvLyspTb4rQUynwtUSgx5DKa9BxDJZ/e
Cxu11mgjw0h9gzrzUD/FvbWE7lsDWnZIZe9oed2VLIMzxmcCrXYNfkE0Pen0AnCd
qbH3dNtnw1isSxHqj2UU4SZK2OE7ssdrXBjR97J4xebKUDAwyanfEeUbhQKBgQCW
yGOuVjODWftq3IbweK49iJsp4qluZWluzGrzEJ8ilpeDSMJCUCaKpusQ2bCau4iD
rwpTJMeccWVDjSsrjBZoj1YF1hkOcEEeQnsZVc4Yb0wfVrbPrchjBPYfGWhk+SHa
BLtEvYMzyYnLqgS2IKM55sGEG4Wlg2oUAowzwM52DQKBgHtJ78HmvKTAYxjmvHnI
4oUjXnJNjdbgO4SDVvetWxS1pDUfOP4VW6+WUexpTNG7f8FICWuZ1csg0m7FprsW
A0JfCMXgAMnUeYaEO600z2aDlT09koxI8OgOA/zwkwbgfg86xC6ejV+b+rCkUyr+
VT4CLlEvtB5DvFNuoRn2nvcQ
-----END PRIVATE KEY-----
"""
@pytest.fixture
def access_token_post_request():
with patch("requests.post") as mock_post:
mock_response_success = Mock()
mock_response_success.status_code = 200
mock_response_success.json.return_value = {
"access_token": "eyJhbGciOiJSUzUxMiIsImtpZCI6IjM1YjI1MGZiLTMxODYtNDdjYS04ZGMyLTFiNDYzMjI3Mjc4NSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJweXRlc3QtdGVzdC0zd3YyOW0xQHNhLnN0YWNraXQuY2xvdWQiLCJzdWIiOiJjYWZiYTFhNC03YzAwLTQyMDYtYmIyZC1iNTY2OTY4YmIwMjYiLCJhdWQiOiJodHRwczovL3N0YWNraXQtc2VydmljZS1hY2NvdW50LXByb2QuYXBwcy4wMS5jZi5ldTAxLnN0YWNraXQuY2xvdWQiLCJqdGkiOiJhZWMzZDQ5NC1lYzgyLTQzNmQtOGE0OS0zZDMxNGI0YzhkMjkiLCJpYXQiOjE3MjY1NzgwNjIsImV4cCI6MTcyNjU3ODY2Mn0.SSnbSkhWXmURYhktv3g5g5fnsn4UgqAhLKdbL75bg67d-3b2R3ZPfX__lPP1VlrCuzEXtNkcL1nXsd-QR4qTHJp17dtr9B7vRgtZVKtwky2bd3gNYT_4lfYV3WMJWxfsqT_khbFEfPtr70fmwiaWA__2YOwd78rl78bFetPVhHEmMzlEoCWS4cK4Im2xzKTD5J1f0HnTs1rR-EtCHeKXRrst8OF8IVz6mrvVVq0LBJh2HI1rLSvLpJBR-B3C9dlDMJk7KC5fztOd_zunYqVOs_JmsimVbJyZYXqwCVmFnagvZWMjftaajFIJnXYfLhiy2blwXr7aHiDWwg8EspvTMw", # noqa: E501 long token
"refresh_token": "eyJhbGciOiJSUzUxMiIsImtpZCI6IjM1YjI1MGZiLTMxODYtNDdjYS04ZGMyLTFiNDYzMjI3Mjc4NSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJweXRlc3QtdGVzdC0zd3YyOW0xQHNhLnN0YWNraXQuY2xvdWQiLCJzdWIiOiJjYWZiYTFhNC03YzAwLTQyMDYtYmIyZC1iNTY2OTY4YmIwMjYiLCJhdWQiOiJodHRwczovL3N0YWNraXQtc2VydmljZS1hY2NvdW50LXByb2QuYXBwcy4wMS5jZi5ldTAxLnN0YWNraXQuY2xvdWQiLCJqdGkiOiJhZWMzZDQ5NC1lYzgyLTQzNmQtOGE0OS0zZDMxNGI0YzhkMjkiLCJpYXQiOjE3MjY1NzgwNjIsImV4cCI6MTcyNjU3ODY2Mn0.SSnbSkhWXmURYhktv3g5g5fnsn4UgqAhLKdbL75bg67d-3b2R3ZPfX__lPP1VlrCuzEXtNkcL1nXsd-QR4qTHJp17dtr9B7vRgtZVKtwky2bd3gNYT_4lfYV3WMJWxfsqT_khbFEfPtr70fmwiaWA__2YOwd78rl78bFetPVhHEmMzlEoCWS4cK4Im2xzKTD5J1f0HnTs1rR-EtCHeKXRrst8OF8IVz6mrvVVq0LBJh2HI1rLSvLpJBR-B3C9dlDMJk7KC5fztOd_zunYqVOs_JmsimVbJyZYXqwCVmFnagvZWMjftaajFIJnXYfLhiy2blwXr7aHiDWwg8EspvTMw", # noqa: E501 long token
"scope": "",
"token_type": "Bearer",
"expires_in": 3600,
}
mock_response_error = Mock()
mock_response_error.status_code = 400
mock_response_error.json.return_value = {
"status": "error",
"message": "Bad Request",
}
# Customize mock behavior based on the URL or request data
def post_side_effect(url, data, *args, **kwargs):
if (
url == "https://service-account.api.stackit.cloud/token"
and data["grant_type"] == "urn:ietf:params:oauth:grant-type:jwt-bearer"
and data["assertion"].startswith("ey")
):
return mock_response_success
else:
return mock_response_error
# Assign the side effect to the mock
mock_post.side_effect = post_side_effect
# Yield the mock to be used in tests
yield mock_post
real_open = open # We need this to allow a non-mocked open() to work correctly
def mock_open_function(
filepath: PurePath,
credentials_file_json,
service_account_key_file_json,
private_key_file,
*args,
**kwargs,
):
path = str(filepath)
if path.endswith(Authorization.DEFAULT_CREDENTIALS_FILE_PATH):
f_open = mock_open(read_data=credentials_file_json)
elif path == DEFAULT_SERVICE_ACCOUNT_KEY_PATH:
f_open = mock_open(read_data=service_account_key_file_json)
elif path == DEFAULT_PRIVATE_KEY_PATH:
f_open = mock_open(read_data=private_key_file)
else:
f_open = real_open
return f_open(filepath, *args, **kwargs)
class TestAuth:
def test_token_auth_is_selected_when_token_is_given(self, empty_credentials_file_json):
with patch("builtins.open", mock_open(read_data=empty_credentials_file_json)):
config = Configuration(service_account_token="token")
auth = Authorization(config)
assert type(auth.auth_method) is TokenAuth
def test_no_auth_is_selected_when_no_configuration_is_given(self, empty_credentials_file_json):
with patch("builtins.open", mock_open(read_data=empty_credentials_file_json)):
config = Configuration()
auth = Authorization(config)
assert auth.auth_method is None
def test_given_nonexistent_credentials_file_raises_filenotfound_exception(self):
config = Configuration(credentials_file_path="/non/existent/path/to/file")
with pytest.raises(FileNotFoundError):
Authorization(config)
def test_nonexistent_default_credentials_file_raises_no_exception(self, monkeypatch):
def mockreturn():
return Path("/this/path/does/not/exist/")
monkeypatch.setattr(Path, "home", mockreturn)
config = Configuration()
auth = Authorization(config)
assert auth.auth_method is None
@pytest.mark.parametrize(
"credentials_file_json_fixture",
[
("credentials_file_json_with_unused_arguments"),
("credentials_file_json"),
],
)
def test_valid_credentials_file_is_parsed(
self, request, credentials_file_json_fixture, service_account_key_file_json, private_key_file
):
credentials_file_json = request.getfixturevalue(credentials_file_json_fixture)
with patch(
"builtins.open",
lambda filepath, *args, **kwargs: mock_open_function(
filepath,
credentials_file_json,
service_account_key_file_json,
private_key_file,
),
):
config = Configuration(custom_auth=HTTPBasicAuth("test", "test"))
auth = Authorization(configuration=config)
assert auth.service_account_mail == DEFAULT_EMAIL
assert auth.service_account_token == DEFAULT_SERVICE_ACCOUNT_TOKEN
assert auth.service_account_key_path == DEFAULT_SERVICE_ACCOUNT_KEY_PATH
assert auth.private_key_path == DEFAULT_PRIVATE_KEY_PATH
def test_valid_token_is_generated_from_service_account_key(
self,
credentials_file_json,
service_account_key_file_json,
private_key_file,
access_token_post_request,
):
with patch(
"builtins.open",
lambda filepath, *args, **kwargs: mock_open_function(
filepath,
credentials_file_json,
service_account_key_file_json,
private_key_file,
),
):
config = Configuration()
auth = Authorization(config)
assert type(auth.auth_method) is KeyAuth
def test_invalid_credentials_file_is_rejected(self, credentials_file_json):
malformed_json = credentials_file_json.replace(":", "=")
with patch("builtins.open", mock_open(read_data=malformed_json)):
config = Configuration()
with pytest.raises(json.JSONDecodeError):
Authorization(config)
def test_private_keyfile_not_found_raises_exception(self):
config = Configuration(private_key_path="/non/existent/path/to/file")
with pytest.raises(FileNotFoundError):
Authorization(config)
def test_service_account_keyfile_not_found_raises_exception(self):
config = Configuration(service_account_key_path="/non/existent/path/to/file")
with pytest.raises(FileNotFoundError):
Authorization(config)
def test_token_refresh_fails_after_retries(self, service_account_key_file_json):
service_account_key = ServiceAccountKey.model_validate_json(service_account_key_file_json)
service_account_key.credentials.private_key = "test-private-key"
def set_initial_token(auth):
auth.initial_token = "test-initial-token"
with (
patch.object(KeyAuth, "_KeyAuth__create_initial_token", new=set_initial_token),
patch.object(KeyAuth, "_KeyAuth__start_token_refresh_task", return_value=None),
patch("requests.post") as mock_post,
):
init_response = Mock()
init_response.raise_for_status.return_value = None
init_response.json.return_value = {
"access_token": jwt.encode({"exp": 4102444800}, "secret", algorithm="HS256"),
"refresh_token": jwt.encode({"exp": 4102444800}, "secret", algorithm="HS256"),
}
mock_post.return_value = init_response
auth = KeyAuth(service_account_key)
auth.refresh_token = jwt.encode({"exp": 4102444800}, "secret", algorithm="HS256")
mock_post.reset_mock()
mock_post.side_effect = requests.RequestException("refresh failed")
with pytest.raises(requests.RequestException):
auth._KeyAuth__refresh_token()
assert mock_post.call_count == KeyAuth.MAX_REFRESH_RETRIES