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 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
import functools
from unittest.mock import Mock, patch
from urllib.parse import urlparse
from azure.core.exceptions import ClientAuthenticationError, ServiceRequestError
from azure.identity._constants import EnvironmentVariables
from azure.identity._internal import AadClientCertificate
from azure.identity.aio._internal.aad_client import AadClient
from msal import TokenCache
import pytest
from helpers import build_aad_response, mock_response
from helpers_async import get_completed_future
from test_certificate_credential import PEM_CERT_PATH
pytestmark = pytest.mark.asyncio
async def test_error_reporting():
error_name = "everything's sideways"
error_description = "something went wrong"
error_response = {"error": error_name, "error_description": error_description}
response = mock_response(status_code=403, json_payload=error_response)
async def send(*_, **__):
return response
transport = Mock(send=Mock(wraps=send))
client = AadClient("tenant id", "client id", transport=transport)
fns = [
functools.partial(client.obtain_token_by_authorization_code, ("scope",), "code", "uri"),
functools.partial(client.obtain_token_by_refresh_token, ("scope",), "refresh token"),
]
# exceptions raised for Microsoft Entra errors should contain Microsoft Entra's error description
for fn in fns:
with pytest.raises(ClientAuthenticationError) as ex:
await fn()
message = str(ex.value)
assert error_name in message and error_description in message
assert transport.send.call_count == 1
transport.send.reset_mock()
@pytest.mark.skip(reason="Adding body to HttpResponseError str. Not an issue bc we don't automatically log errors")
async def test_exceptions_do_not_expose_secrets():
secret = "secret"
body = {"error": "bad thing", "access_token": secret, "refresh_token": secret}
response = mock_response(status_code=403, json_payload=body)
async def send(*_, **__):
return response
transport = Mock(send=Mock(wraps=send))
client = AadClient("tenant id", "client id", transport=transport)
fns = [
functools.partial(client.obtain_token_by_authorization_code, "code", "uri", ("scope",)),
functools.partial(client.obtain_token_by_refresh_token, "refresh token", ("scope",)),
]
async def assert_secrets_not_exposed():
for fn in fns:
with pytest.raises(ClientAuthenticationError) as ex:
await fn()
assert secret not in str(ex.value)
assert secret not in repr(ex.value)
assert transport.send.call_count == 1
transport.send.reset_mock()
# Microsoft Entra errors shouldn't provoke exceptions exposing secrets
await assert_secrets_not_exposed()
# neither should unexpected Microsoft Entra responses
del body["error"]
await assert_secrets_not_exposed()
@pytest.mark.parametrize("secret", (None, "client secret"))
async def test_authorization_code(secret):
tenant_id = "tenant-id"
client_id = "client-id"
auth_code = "code"
scope = "scope"
redirect_uri = "https://localhost"
access_token = "***"
async def send(request, **_):
assert request.data["client_id"] == client_id
assert request.data["code"] == auth_code
assert request.data["grant_type"] == "authorization_code"
assert request.data["redirect_uri"] == redirect_uri
assert request.data["scope"] == scope
assert request.data.get("client_secret") == secret
return mock_response(json_payload={"access_token": access_token, "expires_in": 42})
transport = Mock(send=Mock(wraps=send))
client = AadClient(tenant_id, client_id, transport=transport)
token = await client.obtain_token_by_authorization_code(
scopes=(scope,), code=auth_code, redirect_uri=redirect_uri, client_secret=secret
)
assert token.token == access_token
assert transport.send.call_count == 1
async def test_client_secret():
tenant_id = "tenant-id"
client_id = "client-id"
scope = "scope"
secret = "refresh-token"
access_token = "***"
async def send(request, **_):
assert request.data["client_id"] == client_id
assert request.data["client_secret"] == secret
assert request.data["grant_type"] == "client_credentials"
assert request.data["scope"] == scope
return mock_response(json_payload={"access_token": access_token, "expires_in": 42})
transport = Mock(send=Mock(wraps=send))
client = AadClient(tenant_id, client_id, transport=transport)
token = await client.obtain_token_by_client_secret(scopes=(scope,), secret=secret)
assert token.token == access_token
assert transport.send.call_count == 1
async def test_refresh_token():
tenant_id = "tenant-id"
client_id = "client-id"
scope = "scope"
refresh_token = "refresh-token"
access_token = "***"
async def send(request, **_):
assert request.data["client_id"] == client_id
assert request.data["grant_type"] == "refresh_token"
assert request.data["refresh_token"] == refresh_token
assert request.data["scope"] == scope
return mock_response(json_payload={"access_token": access_token, "expires_in": 42})
transport = Mock(send=Mock(wraps=send))
client = AadClient(tenant_id, client_id, transport=transport)
token = await client.obtain_token_by_refresh_token(scopes=(scope,), refresh_token=refresh_token)
assert token.token == access_token
assert transport.send.call_count == 1
@pytest.mark.parametrize("authority", ("localhost", "https://localhost"))
async def test_request_url(authority):
tenant_id = "expected-tenant"
parsed_authority = urlparse(authority)
expected_netloc = parsed_authority.netloc or authority # "localhost" parses to netloc "", path "localhost"
async def send(request, **_):
actual = urlparse(request.url)
assert actual.scheme == "https"
assert actual.netloc == expected_netloc
assert actual.path.startswith("/" + tenant_id)
return mock_response(json_payload={"token_type": "Bearer", "expires_in": 42, "access_token": "***"})
client = AadClient(tenant_id, "client id", transport=Mock(send=send), authority=authority)
await client.obtain_token_by_authorization_code("scope", "code", "uri")
await client.obtain_token_by_refresh_token("scope", "refresh token")
# obtain_token_by_refresh_token is client_secret safe
await client.obtain_token_by_refresh_token("scope", "refresh token", client_secret="secret")
# authority can be configured via environment variable
with patch.dict("os.environ", {EnvironmentVariables.AZURE_AUTHORITY_HOST: authority}, clear=True):
client = AadClient(tenant_id=tenant_id, client_id="client id", transport=Mock(send=send))
await client.obtain_token_by_authorization_code("scope", "code", "uri")
await client.obtain_token_by_refresh_token("scope", "refresh token")
async def test_evicts_invalid_refresh_token():
"""when Microsoft Entra ID rejects a refresh token, the client should evict that token from its cache"""
tenant_id = "tenant-id"
client_id = "client-id"
invalid_token = "invalid-refresh-token"
cache = TokenCache()
cache.add({"response": build_aad_response(uid="id1", utid="tid1", access_token="*", refresh_token=invalid_token)})
cache.add({"response": build_aad_response(uid="id2", utid="tid2", access_token="*", refresh_token="...")})
assert len(list(cache.search(TokenCache.CredentialType.REFRESH_TOKEN))) == 2
assert len(list(cache.search(TokenCache.CredentialType.REFRESH_TOKEN, query={"secret": invalid_token}))) == 1
async def send(request, **_):
assert request.data["refresh_token"] == invalid_token
return mock_response(json_payload={"error": "invalid_grant"}, status_code=400)
transport = Mock(send=Mock(wraps=send))
client = AadClient(tenant_id, client_id, transport=transport, cache=cache)
with pytest.raises(ClientAuthenticationError):
await client.obtain_token_by_refresh_token(scopes=("scope",), refresh_token=invalid_token)
assert transport.send.call_count == 1
assert len(list(cache.search(TokenCache.CredentialType.REFRESH_TOKEN))) == 1
assert len(list(cache.search(TokenCache.CredentialType.REFRESH_TOKEN, query={"secret": invalid_token}))) == 0
async def test_retries_token_requests():
"""The client should retry token requests"""
message = "can't connect"
transport = Mock(send=Mock(side_effect=ServiceRequestError(message)), sleep=get_completed_future)
client = AadClient("tenant-id", "client-id", transport=transport)
with pytest.raises(ServiceRequestError, match=message):
await client.obtain_token_by_authorization_code("", "", "")
assert transport.send.call_count > 1
transport.send.reset_mock()
with pytest.raises(ServiceRequestError, match=message):
await client.obtain_token_by_client_certificate("", AadClientCertificate(open(PEM_CERT_PATH, "rb").read()))
assert transport.send.call_count > 1
transport.send.reset_mock()
with pytest.raises(ServiceRequestError, match=message):
await client.obtain_token_by_client_secret("", "")
assert transport.send.call_count > 1
transport.send.reset_mock()
with pytest.raises(ServiceRequestError, match=message):
await client.obtain_token_by_jwt_assertion("", "")
assert transport.send.call_count > 1
transport.send.reset_mock()
with pytest.raises(ServiceRequestError, match=message):
await client.obtain_token_by_refresh_token("", "")
assert transport.send.call_count > 1
async def test_shared_cache():
"""The client should return only tokens associated with its own client_id"""
client_id_a = "client-id-a"
client_id_b = "client-id-b"
scope = "scope"
expected_token = "***"
tenant_id = "tenant"
authority = "https://localhost/" + tenant_id
cache = TokenCache()
cache.add(
{
"response": build_aad_response(access_token=expected_token),
"client_id": client_id_a,
"scope": [scope],
"token_endpoint": "/".join((authority, tenant_id, "oauth2/v2.0/token")),
}
)
common_args = dict(authority=authority, cache=cache, tenant_id=tenant_id)
client_a = AadClient(client_id=client_id_a, **common_args)
client_b = AadClient(client_id=client_id_b, **common_args)
# A has a cached token
token = client_a.get_cached_access_token([scope])
assert token.token == expected_token
# which B shouldn't return
assert client_b.get_cached_access_token([scope]) is None
async def test_multitenant_cache():
client_id = "client-id"
scope = "scope"
expected_token = "***"
tenant_a = "tenant-a"
tenant_b = "tenant-b"
tenant_c = "tenant-c"
tenant_d = "tenant-d"
authority = "https://localhost/" + tenant_a
message = "additionally_allowed_tenants"
cache = TokenCache()
cache.add(
{
"response": build_aad_response(access_token=expected_token),
"client_id": client_id,
"scope": [scope],
"token_endpoint": "/".join((authority, tenant_a, "oauth2/v2.0/token")),
}
)
common_args = dict(authority=authority, cache=cache, client_id=client_id)
client_a = AadClient(tenant_id=tenant_a, **common_args)
client_b = AadClient(tenant_id=tenant_b, **common_args)
# A has a cached token
token = client_a.get_cached_access_token([scope])
assert token.token == expected_token
# which B shouldn't return
assert client_b.get_cached_access_token([scope]) is None
# but C allows multitenant auth and should therefore return the token from tenant_a when appropriate
client_c = AadClient(tenant_id=tenant_c, additionally_allowed_tenants=["*"], **common_args)
assert client_c.get_cached_access_token([scope]) is None
token = client_c.get_cached_access_token([scope], tenant_id=tenant_a)
assert token.token == expected_token
# but d does not add target tenant into allowed list therefore fail
client_d = AadClient(tenant_id=tenant_d, **common_args)
assert client_d.get_cached_access_token([scope]) is None
with pytest.raises(ClientAuthenticationError, match=message):
client_d.get_cached_access_token([scope], tenant_id=tenant_a)
|