Skip to content

Commit 0e8e2fd

Browse files
authored
fix: crash for additional keys in credentials.json (#115)
1 parent c216cf6 commit 0e8e2fd

File tree

2 files changed

+41
-13
lines changed

2 files changed

+41
-13
lines changed

core/src/stackit/core/authorization.py

+19-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import json
22
from dataclasses import dataclass
33
from pathlib import Path
4-
from typing import Any, Optional
4+
from typing import Optional
55

66
from requests.auth import AuthBase
77

@@ -22,17 +22,14 @@ def __init__(
2222
STACKIT_SERVICE_ACCOUNT_TOKEN: str = None,
2323
STACKIT_SERVICE_ACCOUNT_KEY_PATH: str = None,
2424
STACKIT_PRIVATE_KEY_PATH: str = None,
25+
**kwargs,
2526
):
2627
self.service_account_mail = STACKIT_SERVICE_ACCOUNT_EMAIL
2728
self.service_account_token = STACKIT_SERVICE_ACCOUNT_TOKEN
2829
self.service_account_key_path = STACKIT_SERVICE_ACCOUNT_KEY_PATH
2930
self.private_key_path = STACKIT_PRIVATE_KEY_PATH
3031

3132

32-
def either_this_or_that(this: Any, that: Any) -> Optional[Any]:
33-
return this if this else that
34-
35-
3633
class Authorization:
3734
DEFAULT_CREDENTIALS_FILE_PATH = ".stackit/credentials.json"
3835
service_account_mail: Optional[str] = None
@@ -45,16 +42,26 @@ class Authorization:
4542

4643
def __init__(self, configuration: Configuration):
4744
credentials = self.__read_credentials_file(configuration.credentials_file_path)
48-
self.service_account_mail = either_this_or_that(
49-
configuration.service_account_mail, credentials.service_account_mail
45+
self.service_account_mail = (
46+
configuration.service_account_mail
47+
if configuration.service_account_mail is not None
48+
else credentials.service_account_mail
49+
)
50+
self.service_account_token = (
51+
configuration.service_account_token
52+
if configuration.service_account_token is not None
53+
else credentials.service_account_token
5054
)
51-
self.service_account_token = either_this_or_that(
52-
configuration.service_account_token, credentials.service_account_token
55+
self.service_account_key_path = (
56+
configuration.service_account_key_path
57+
if configuration.service_account_key_path is not None
58+
else credentials.service_account_key_path
5359
)
54-
self.service_account_key_path = either_this_or_that(
55-
configuration.service_account_key_path, credentials.service_account_key_path
60+
self.private_key_path = (
61+
configuration.private_key_path
62+
if configuration.private_key_path is not None
63+
else credentials.private_key_path
5664
)
57-
self.private_key_path = either_this_or_that(configuration.private_key_path, credentials.private_key_path)
5865
self.auth_method = configuration.custom_auth
5966
self.token_endpoint = configuration.token_endpoint
6067
self.__read_keys()

core/tests/core/test_auth.py

+22-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,17 @@ def credentials_file_json():
3434
}"""
3535

3636

37+
@pytest.fixture
38+
def credentials_file_json_with_unused_arguments():
39+
return """{
40+
"STACKIT_SERVICE_ACCOUNT_EMAIL": "email",
41+
"STACKIT_PRIVATE_KEY_PATH": "/path/to/private.key",
42+
"STACKIT_SERVICE_ACCOUNT_TOKEN": "token",
43+
"STACKIT_SERVICE_ACCOUNT_KEY_PATH": "/path/to/account.key",
44+
"STACKIT_SERVICE_ACCOUNT_TOKEN_UNUSED": "unused"
45+
}"""
46+
47+
3748
@pytest.fixture
3849
def service_account_key_file_json():
3950
"""
@@ -160,6 +171,7 @@ def mock_open_function(
160171

161172

162173
class TestAuth:
174+
163175
def test_token_auth_is_selected_when_token_is_given(self, empty_credentials_file_json):
164176
with patch("builtins.open", mock_open(read_data=empty_credentials_file_json)):
165177
config = Configuration(service_account_token="token")
@@ -186,9 +198,18 @@ def mockreturn():
186198
auth = Authorization(config)
187199
assert auth.auth_method is None
188200

201+
@pytest.mark.parametrize(
202+
"credentials_file_json_fixture",
203+
[
204+
("credentials_file_json_with_unused_arguments"),
205+
("credentials_file_json"),
206+
],
207+
)
189208
def test_valid_credentials_file_is_parsed(
190-
self, credentials_file_json, service_account_key_file_json, private_key_file
209+
self, request, credentials_file_json_fixture, service_account_key_file_json, private_key_file
191210
):
211+
credentials_file_json = request.getfixturevalue(credentials_file_json_fixture)
212+
192213
with patch(
193214
"builtins.open",
194215
lambda filepath, *args, **kwargs: mock_open_function(

0 commit comments

Comments
 (0)