|
10 | 10 | from horreum import HorreumCredentials, ClientConfiguration, AuthMethod
|
11 | 11 | from horreum.horreum_client import new_horreum_client, HorreumClient
|
12 | 12 | 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 |
13 | 15 | from horreum.raw_client.models.protected_type_access import ProtectedType_access
|
14 | 16 | from horreum.raw_client.models.test import Test
|
15 | 17 |
|
@@ -108,6 +110,28 @@ async def test_check_no_tests(authenticated_client: HorreumClient):
|
108 | 110 | assert (await authenticated_client.raw_client.api.test.get(config)).count == 0
|
109 | 111 |
|
110 | 112 |
|
| 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 | + |
111 | 135 | @pytest.mark.asyncio
|
112 | 136 | async def test_check_create_test(custom_authenticated_client: HorreumClient):
|
113 | 137 | # Create new test
|
|
0 commit comments