Skip to content

Commit ff6e588

Browse files
barreirolampajr
authored andcommitted
Add API Key authentication
1 parent 4455c32 commit ff6e588

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

src/horreum/configs.py

+2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@
1010
class HorreumCredentials:
1111
username: str = None
1212
password: str = None
13+
apikey: str = None
1314

1415
class AuthMethod(Enum):
1516
BEARER = 1
1617
BASIC = 2
18+
API_KEY = 3
1719

1820
@dataclass
1921
class ClientConfiguration:

src/horreum/horreum_client.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,12 @@ async def setup(self):
6262
"""
6363

6464
if self.__credentials:
65-
if self.__credentials.username is not None:
65+
if self.__credentials.apikey is not None and (self.__client_config is None or self.__client_config.auth_method == AuthMethod.API_KEY):
66+
# API key authentication
67+
self.auth_provider = ApiKeyAuthenticationProvider(KeyLocation.Header, self.__credentials.apikey, "X-Horreum-API-Key")
68+
logger.info('Using API Key authentication')
69+
70+
elif self.__credentials.username is not None:
6671
if self.__client_config is None or self.__client_config.auth_method == AuthMethod.BEARER:
6772
# Bearer token authentication
6873
access_provider = await setup_auth_provider(self.__base_url, self.__credentials.username, self.__credentials.password)

test/horreum_client_it.py

+24
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
from horreum import HorreumCredentials, ClientConfiguration, AuthMethod
1111
from horreum.horreum_client import new_horreum_client, HorreumClient
1212
from horreum.raw_client.api.test.test_request_builder import TestRequestBuilder
13+
from horreum.raw_client.api.user.apikey.apikey_post_request_body import ApikeyPostRequestBody
14+
from horreum.raw_client.models.key_type import KeyType
1315
from horreum.raw_client.models.protected_type_access import ProtectedType_access
1416
from horreum.raw_client.models.test import Test
1517

@@ -108,6 +110,28 @@ async def test_check_no_tests(authenticated_client: HorreumClient):
108110
assert (await authenticated_client.raw_client.api.test.get(config)).count == 0
109111

110112

113+
@pytest.mark.asyncio
114+
async def test_api_key(custom_authenticated_client: HorreumClient):
115+
key_request = ApikeyPostRequestBody(name="python test key", type=KeyType.USER)
116+
key = await custom_authenticated_client.raw_client.api.user.apikey.post(key_request)
117+
assert key is not None
118+
119+
key_client = await new_horreum_client(base_url="http://localhost:8080",
120+
credentials=HorreumCredentials(apikey=key),
121+
client_config=ClientConfiguration(auth_method=AuthMethod.API_KEY))
122+
123+
# use key to retrieve list of keys
124+
assert len(await key_client.raw_client.api.user.apikey.get()) >= 1
125+
126+
wrong_key_client = await new_horreum_client(base_url="http://localhost:8080",
127+
credentials=HorreumCredentials(apikey=key.swapcase()),
128+
client_config=ClientConfiguration(auth_method=AuthMethod.API_KEY))
129+
130+
# wrong key does not authenticate
131+
with pytest.raises(APIError) as ex: (await wrong_key_client.raw_client.api.user.apikey.get())
132+
assert ex.value.response_status_code == 401
133+
134+
111135
@pytest.mark.asyncio
112136
async def test_check_create_test(custom_authenticated_client: HorreumClient):
113137
# Create new test

0 commit comments

Comments
 (0)