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 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
|
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
"""
Tests for the HTTP challenge authentication implementation. These tests aren't parallelizable, because
the challenge cache is global to the process.
"""
import asyncio
from itertools import product
import os
import time
from unittest.mock import Mock, patch
from uuid import uuid4
import pytest
from azure.core.credentials import AccessToken, AccessTokenInfo
from azure.core.exceptions import ServiceRequestError
from azure.core.pipeline import AsyncPipeline
from azure.core.pipeline.policies import SansIOHTTPPolicy
from azure.core.rest import HttpRequest
from azure.keyvault.keys._shared import AsyncChallengeAuthPolicy,HttpChallenge, HttpChallengeCache
from azure.keyvault.keys._shared.client_base import DEFAULT_VERSION
from azure.keyvault.keys.aio import KeyClient
from devtools_testutils.aio import recorded_by_proxy_async
from _async_test_case import AsyncKeysClientPreparer, get_decorator
from _shared.helpers import Request, mock_response
from _shared.helpers_async import async_validating_transport
from _shared.test_case_async import KeyVaultTestCase
from test_challenge_auth import (
empty_challenge_cache,
get_random_url,
add_url_port,
CAE_CHALLENGE_RESPONSE,
CAE_DECODED_CLAIM,
KV_CHALLENGE_RESPONSE,
KV_CHALLENGE_TENANT,
RESOURCE,
TOKEN_TYPES,
)
only_default_version = get_decorator(is_async=True, api_versions=[DEFAULT_VERSION])
class TestChallengeAuth(KeyVaultTestCase):
@pytest.mark.asyncio
@pytest.mark.parametrize("api_version,is_hsm",only_default_version)
@AsyncKeysClientPreparer()
@recorded_by_proxy_async
async def test_multitenant_authentication(self, client, is_hsm, **kwargs):
if not self.is_live:
pytest.skip("This test is incompatible with vcrpy in playback")
# we set up a client for this method so it gets awaited, but we actually want to create a new client
# this new client should use a credential with an initially fake tenant ID and still succeed with a real request
original_tenant = os.environ.get("AZURE_TENANT_ID")
os.environ["AZURE_TENANT_ID"] = str(uuid4())
credential = self.get_credential(KeyClient, additionally_allowed_tenants="*", is_async=True)
managed_hsm_url = kwargs.pop("managed_hsm_url", None)
keyvault_url = kwargs.pop("vault_url", None)
vault_url = managed_hsm_url if is_hsm else keyvault_url
client = KeyClient(vault_url=vault_url, credential=credential)
if self.is_live:
await asyncio.sleep(2) # to avoid throttling by the service
key_name = self.get_resource_name("multitenant-key")
key = await client.create_rsa_key(key_name)
assert key.id
# try making another request with the credential's token revoked
# the challenge policy should correctly request a new token for the correct tenant when a challenge is cached
client._client._config.authentication_policy._token = None
fetched_key = await client.get_key(key_name)
assert key.id == fetched_key.id
# clear the fake tenant
if original_tenant:
os.environ["AZURE_TENANT_ID"] = original_tenant
else:
os.environ.pop("AZURE_TENANT_ID")
@pytest.mark.asyncio
@empty_challenge_cache
async def test_enforces_tls():
url = "http://not.secure"
HttpChallengeCache.set_challenge_for_url(url, HttpChallenge(url, "Bearer authorization=_, resource=_"))
credential = Mock()
pipeline = AsyncPipeline(transport=Mock(), policies=[AsyncChallengeAuthPolicy(credential)])
with pytest.raises(ServiceRequestError):
await pipeline.run(HttpRequest("GET", url))
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("token_type", TOKEN_TYPES)
async def test_scope(token_type):
"""The policy's token requests should always be for an AADv2 scope"""
expected_content = b"a duck"
async def test_with_challenge(challenge, expected_scope):
expected_token = "expected_token"
class Requests:
count = 0
async def send(request):
Requests.count += 1
if Requests.count == 1:
# first request should be unauthorized and have no content
assert not request.body
assert request.headers["Content-Length"] == "0"
return challenge
elif Requests.count == 2:
# second request should be authorized according to challenge and have the expected content
assert request.headers["Content-Length"]
assert request.body == expected_content
assert expected_token in request.headers["Authorization"]
return Mock(status_code=200)
raise ValueError("unexpected request")
async def get_token(*scopes, **_):
assert len(scopes) == 1
assert scopes[0] == expected_scope
return token_type(expected_token, 0)
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
pipeline = AsyncPipeline(
policies=[AsyncChallengeAuthPolicy(credential=credential)], transport=Mock(send=send)
)
request = HttpRequest("POST", get_random_url())
request.set_bytes_body(expected_content)
await pipeline.run(request)
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 1
else:
assert credential.get_token_info.call_count == 1
endpoint = "https://authority.net/tenant"
# an AADv1 resource becomes an AADv2 scope with the addition of '/.default'
resource = "https://vault.azure.net"
scope = resource + "/.default"
challenge_with_resource = Mock(
status_code=401,
headers={"WWW-Authenticate": f'Bearer authorization="{endpoint}", resource={resource}'},
)
challenge_with_scope = Mock(
status_code=401, headers={"WWW-Authenticate": f'Bearer authorization="{endpoint}", scope={scope}'}
)
await test_with_challenge(challenge_with_resource, scope)
await test_with_challenge(challenge_with_scope, scope)
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("token_type", TOKEN_TYPES)
async def test_tenant(token_type):
"""The policy's token requests should pass the parsed tenant ID from the challenge"""
expected_content = b"a duck"
async def test_with_challenge(challenge, expected_tenant):
expected_token = "expected_token"
class Requests:
count = 0
async def send(request):
Requests.count += 1
if Requests.count == 1:
# first request should be unauthorized and have no content
assert not request.body
assert request.headers["Content-Length"] == "0"
return challenge
elif Requests.count == 2:
# second request should be authorized according to challenge and have the expected content
assert request.headers["Content-Length"]
assert request.body == expected_content
assert expected_token in request.headers["Authorization"]
return Mock(status_code=200)
raise ValueError("unexpected request")
async def get_token(*_, options=None, **kwargs):
options_bag = options if options else kwargs
assert options_bag.get("tenant_id") == expected_tenant
return token_type(expected_token, 0)
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
pipeline = AsyncPipeline(
policies=[AsyncChallengeAuthPolicy(credential=credential)], transport=Mock(send=send)
)
request = HttpRequest("POST", get_random_url())
request.set_bytes_body(expected_content)
await pipeline.run(request)
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 1
else:
assert credential.get_token_info.call_count == 1
tenant = "tenant-id"
endpoint = f"https://authority.net/{tenant}"
resource = "https://vault.azure.net"
challenge = Mock(
status_code=401,
headers={"WWW-Authenticate": f'Bearer authorization="{endpoint}", resource={resource}'},
)
await test_with_challenge(challenge, tenant)
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("token_type", TOKEN_TYPES)
async def test_adfs(token_type):
"""The policy should handle AD FS challenges as a special case and omit the tenant ID from token requests"""
expected_content = b"a duck"
async def test_with_challenge(challenge, expected_tenant):
expected_token = "expected_token"
class Requests:
count = 0
async def send(request):
Requests.count += 1
if Requests.count == 1:
# first request should be unauthorized and have no content
assert not request.body
assert request.headers["Content-Length"] == "0"
return challenge
elif Requests.count in (2, 3):
# second request should be authorized according to challenge and have the expected content
assert request.headers["Content-Length"]
assert request.body == expected_content
assert expected_token in request.headers["Authorization"]
return Mock(status_code=200)
raise ValueError("unexpected request")
async def get_token(*_, **kwargs):
# we shouldn't provide a tenant ID during AD FS authentication
assert "tenant_id" not in kwargs
return token_type(expected_token, 0)
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
policy = AsyncChallengeAuthPolicy(credential=credential)
pipeline = AsyncPipeline(policies=[policy], transport=Mock(send=send))
request = HttpRequest("POST", get_random_url())
request.set_bytes_body(expected_content)
await pipeline.run(request)
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 1
else:
assert credential.get_token_info.call_count == 1
# Regression test: https://github.com/Azure/azure-sdk-for-python/issues/33621
policy._token = None
await pipeline.run(request)
tenant = "tenant-id"
# AD FS challenges have an unusual authority format; see https://github.com/Azure/azure-sdk-for-python/issues/28648
endpoint = f"https://adfs.redmond.azurestack.corp.microsoft.com/adfs/{tenant}"
resource = "https://vault.azure.net"
challenge = Mock(
status_code=401,
headers={"WWW-Authenticate": f'Bearer authorization="{endpoint}", resource={resource}'},
)
await test_with_challenge(challenge, tenant)
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("token_type", TOKEN_TYPES)
async def test_policy_updates_cache(token_type):
"""
It's possible for the challenge returned for a request to change, e.g. when a vault is moved to a new tenant.
When the policy receives a 401, it should update the cached challenge for the requested URL, if one exists.
"""
url = get_random_url()
first_scope = "https://vault.azure.net/first-scope"
first_token = "first-scope-token"
second_scope = "https://vault.azure.net/second-scope"
second_token = "second-scope-token"
challenge_fmt = 'Bearer authorization="https://login.authority.net/tenant", resource='
# mocking a tenant change:
# 1. first request -> respond with challenge
# 2. second request should be authorized according to the challenge
# 3. third request should match the second (using a cached access token)
# 4. fourth request should also match the second -> respond with a new challenge
# 5. fifth request should be authorized according to the new challenge
# 6. sixth request should match the fifth
transport = async_validating_transport(
requests=(
Request(url),
Request(url, required_headers={"Authorization": f"Bearer {first_token}"}),
Request(url, required_headers={"Authorization": f"Bearer {first_token}"}),
Request(url, required_headers={"Authorization": f"Bearer {first_token}"}),
Request(url, required_headers={"Authorization": f"Bearer {second_token}"}),
Request(url, required_headers={"Authorization": f"Bearer {second_token}"}),
),
responses=(
mock_response(status_code=401, headers={"WWW-Authenticate": challenge_fmt + first_scope}),
mock_response(status_code=200),
mock_response(status_code=200),
mock_response(status_code=401, headers={"WWW-Authenticate": challenge_fmt + second_scope}),
mock_response(status_code=200),
mock_response(status_code=200),
),
)
token = token_type(first_token, time.time() + 3600)
async def get_token(*_, **__):
return token
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
pipeline = AsyncPipeline(policies=[AsyncChallengeAuthPolicy(credential=credential)], transport=transport)
# policy should complete and cache the first challenge and access token
for _ in range(2):
await pipeline.run(HttpRequest("GET", url))
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 1
else:
assert credential.get_token_info.call_count == 1
# The next request will receive a new challenge. The policy should handle it and update caches.
token = token_type(second_token, time.time() + 3600)
for _ in range(2):
await pipeline.run(HttpRequest("GET", url))
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 2
else:
assert credential.get_token_info.call_count == 2
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("token_type", TOKEN_TYPES)
async def test_token_expiration(token_type):
"""policy should not use a cached token which has expired"""
url = get_random_url()
expires_on = time.time() + 3600
first_token = "*"
second_token = "**"
resource = "https://vault.azure.net"
token = token_type(first_token, expires_on)
async def get_token(*_, **__):
return token
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
transport = async_validating_transport(
requests=[
Request(),
Request(required_headers={"Authorization": "Bearer " + first_token}),
Request(required_headers={"Authorization": "Bearer " + first_token}),
Request(required_headers={"Authorization": "Bearer " + second_token}),
],
responses=[
mock_response(
status_code=401, headers={"WWW-Authenticate": f'Bearer authorization="{url}", resource={resource}'}
)
]
+ [mock_response()] * 3,
)
pipeline = AsyncPipeline(policies=[AsyncChallengeAuthPolicy(credential=credential)], transport=transport)
for _ in range(2):
await pipeline.run(HttpRequest("GET", url))
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 1
else:
assert credential.get_token_info.call_count == 1
token = token_type(second_token, time.time() + 3600)
with patch("time.time", lambda: expires_on):
await pipeline.run(HttpRequest("GET", url))
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 2
else:
assert credential.get_token_info.call_count == 2
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("token_type", TOKEN_TYPES)
async def test_preserves_options_and_headers(token_type):
"""After a challenge, the policy should send the original request with its options and headers preserved"""
url = get_random_url()
token = "**"
resource = "https://vault.azure.net"
async def get_token(*_, **__):
return token_type(token, 0)
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
transport = async_validating_transport(
requests=[Request()] * 2 + [Request(required_headers={"Authorization": "Bearer " + token})],
responses=[
mock_response(
status_code=401, headers={"WWW-Authenticate": f'Bearer authorization="{url}", resource={resource}'}
)
]
+ [mock_response()] * 2,
)
key = "foo"
value = "bar"
def add(request):
# add the expected option and header
request.context.options[key] = value
request.http_request.headers[key] = value
adder = Mock(spec_set=SansIOHTTPPolicy, on_request=Mock(wraps=add), on_exception=lambda _: False)
def verify(request):
# authorized (non-challenge) requests should have the expected option and header
if request.http_request.headers.get("Authorization"):
assert request.context.options.get(key) == value, "request option wasn't preserved across challenge"
assert request.http_request.headers.get(key) == value, "headers wasn't preserved across challenge"
verifier = Mock(spec=SansIOHTTPPolicy, on_request=Mock(wraps=verify))
challenge_policy = AsyncChallengeAuthPolicy(credential=credential)
policies = [adder, challenge_policy, verifier]
pipeline = AsyncPipeline(policies=policies, transport=transport)
await pipeline.run(HttpRequest("GET", url))
# ensure the mock sans I/O policies were called
assert adder.on_request.called, "mock policy wasn't invoked"
assert verifier.on_request.called, "mock policy wasn't invoked"
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("verify_challenge_resource,token_type", product([True, False], TOKEN_TYPES))
async def test_verify_challenge_resource_matches(verify_challenge_resource, token_type):
"""The auth policy should raise if the challenge resource doesn't match the request URL unless check is disabled"""
url = get_random_url()
url_with_port = add_url_port(url)
token = "**"
resource = "https://myvault.azure.net" # Doesn't match a "".vault.azure.net" resource because of the "my" prefix
async def get_token(*_, **__):
return token_type(token, 0)
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
transport = async_validating_transport(
requests=[Request(), Request(required_headers={"Authorization": f"Bearer {token}"})],
responses=[
mock_response(
status_code=401, headers={"WWW-Authenticate": f'Bearer authorization="{url}", resource={resource}'}
),
mock_response(status_code=200, json_payload={"key": {"kid": f"{url}/key-name"}})
]
)
transport_2 = async_validating_transport(
requests=[Request(), Request(required_headers={"Authorization": f"Bearer {token}"})],
responses=[
mock_response(
status_code=401, headers={"WWW-Authenticate": f'Bearer authorization="{url}", resource={resource}'}
),
mock_response(status_code=200, json_payload={"key": {"kid": f"{url}/key-name"}})
]
)
client = KeyClient(url, credential, transport=transport, verify_challenge_resource=verify_challenge_resource)
client_with_port = KeyClient(
url_with_port, credential, transport=transport_2, verify_challenge_resource=verify_challenge_resource
)
if verify_challenge_resource:
with pytest.raises(ValueError) as e:
await client.get_key("key-name")
assert f"The challenge resource 'myvault.azure.net' does not match the requested domain" in str(e.value)
with pytest.raises(ValueError) as e:
await client_with_port.get_key("key-name")
assert f"The challenge resource 'myvault.azure.net' does not match the requested domain" in str(e.value)
else:
key = await client.get_key("key-name")
assert key.name == "key-name"
key = await client_with_port.get_key("key-name")
assert key.name == "key-name"
@pytest.mark.asyncio
@pytest.mark.parametrize("verify_challenge_resource,token_type", product([True, False], TOKEN_TYPES))
async def test_verify_challenge_resource_valid(verify_challenge_resource, token_type):
"""The auth policy should raise if the challenge resource isn't a valid URL unless check is disabled"""
url = get_random_url()
token = "**"
resource = "bad-resource"
async def get_token(*_, **__):
return token_type(token, 0)
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
transport = async_validating_transport(
requests=[Request(), Request(required_headers={"Authorization": f"Bearer {token}"})],
responses=[
mock_response(
status_code=401, headers={"WWW-Authenticate": f'Bearer authorization="{url}", resource={resource}'}
),
mock_response(status_code=200, json_payload={"key": {"kid": f"{url}/key-name"}})
]
)
client = KeyClient(url, credential, transport=transport, verify_challenge_resource=verify_challenge_resource)
if verify_challenge_resource:
with pytest.raises(ValueError) as e:
await client.get_key("key-name")
assert "The challenge contains invalid scope" in str(e.value)
else:
key = await client.get_key("key-name")
assert key.name == "key-name"
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("token_type", [AccessToken, AccessTokenInfo])
async def test_cae(token_type):
"""The policy should handle claims in a challenge response after having successfully authenticated prior."""
expected_content = b"a duck"
async def test_with_challenge(claims_challenge, expected_claim):
first_token = "first_token"
expected_token = "expected_token"
class Requests:
count = 0
async def send(request):
Requests.count += 1
if Requests.count == 1:
# first request should be unauthorized and have no content; triggers a KV challenge response
assert not request.body
assert "Authorization" not in request.headers
assert request.headers["Content-Length"] == "0"
return KV_CHALLENGE_RESPONSE
elif Requests.count == 2:
# second request should be authorized according to challenge and have the expected content
assert request.headers["Content-Length"]
assert request.body == expected_content
assert first_token in request.headers["Authorization"]
return Mock(status_code=200)
elif Requests.count == 3:
# third request will trigger a CAE challenge response in this test scenario
assert request.headers["Content-Length"]
assert request.body == expected_content
assert first_token in request.headers["Authorization"]
return claims_challenge
elif Requests.count == 4:
# fourth request should include the required claims and correctly use content from the first challenge
assert request.headers["Content-Length"]
assert request.body == expected_content
assert expected_token in request.headers["Authorization"]
return Mock(status_code=200)
elif Requests.count == 5:
# fifth request should be a regular request with the expected token
assert request.headers["Content-Length"]
assert request.body == expected_content
assert expected_token in request.headers["Authorization"]
return KV_CHALLENGE_RESPONSE
elif Requests.count == 6:
# sixth request should respond to the KV challenge WITHOUT including claims
# we return another challenge to confirm that the policy will return consecutive 401s to the user
assert request.headers["Content-Length"]
assert request.body == expected_content
assert first_token in request.headers["Authorization"]
return KV_CHALLENGE_RESPONSE
raise ValueError("unexpected request")
async def get_token(*scopes, options=None, **kwargs):
options_bag = options if options else kwargs
assert options_bag.get("enable_cae") == True
assert options_bag.get("tenant_id") == KV_CHALLENGE_TENANT
assert scopes[0] == RESOURCE + "/.default"
# Response to KV challenge
if Requests.count == 1:
assert options_bag.get("claims") == None
return AccessToken(first_token, time.time() + 3600)
# Response to CAE challenge
elif Requests.count == 3:
assert options_bag.get("claims") == expected_claim
return AccessToken(expected_token, time.time() + 3600)
# Response to second KV challenge
elif Requests.count == 5:
assert options_bag.get("claims") == None
return AccessToken(first_token, time.time() + 3600)
elif Requests.count == 6:
raise ValueError("unexpected token request")
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
pipeline = AsyncPipeline(policies=[AsyncChallengeAuthPolicy(credential=credential)], transport=Mock(send=send))
request = HttpRequest("POST", get_random_url())
request.set_bytes_body(expected_content)
await pipeline.run(request) # Send the request once to trigger a regular auth challenge
await pipeline.run(request) # Send the request again to trigger a CAE challenge
await pipeline.run(request) # Send the request once to trigger another regular auth challenge
# token requests made for the CAE challenge and first two KV challenges, but not the final KV challenge
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 3
else:
assert credential.get_token_info.call_count == 3
await test_with_challenge(CAE_CHALLENGE_RESPONSE, CAE_DECODED_CLAIM)
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("token_type", [AccessToken, AccessTokenInfo])
async def test_cae_consecutive_challenges(token_type):
"""The policy should correctly handle consecutive challenges in cases where the flow is valid or invalid."""
expected_content = b"a duck"
async def test_with_challenge(claims_challenge, expected_claim):
first_token = "first_token"
expected_token = "expected_token"
class Requests:
count = 0
async def send(request):
Requests.count += 1
if Requests.count == 1:
# first request should be unauthorized and have no content; triggers a KV challenge response
assert not request.body
assert "Authorization" not in request.headers
assert request.headers["Content-Length"] == "0"
return KV_CHALLENGE_RESPONSE
elif Requests.count == 2:
# second request will trigger a CAE challenge response in this test scenario
assert request.headers["Content-Length"]
assert request.body == expected_content
assert first_token in request.headers["Authorization"]
return claims_challenge
elif Requests.count == 3:
# third request should include the required claims and correctly use content from the first challenge
# we return another CAE challenge to verify that the policy will return consecutive CAE 401s to the user
assert request.headers["Content-Length"]
assert request.body == expected_content
assert expected_token in request.headers["Authorization"]
return claims_challenge
raise ValueError("unexpected request")
async def get_token(*scopes, options=None, **kwargs):
options_bag = options if options else kwargs
assert options_bag.get("enable_cae") == True
assert options_bag.get("tenant_id") == KV_CHALLENGE_TENANT
assert scopes[0] == RESOURCE + "/.default"
# Response to KV challenge
if Requests.count == 1:
assert options_bag.get("claims") == None
return AccessToken(first_token, time.time() + 3600)
# Response to first CAE challenge
elif Requests.count == 2:
assert options_bag.get("claims") == expected_claim
return AccessToken(expected_token, time.time() + 3600)
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
pipeline = AsyncPipeline(policies=[AsyncChallengeAuthPolicy(credential=credential)], transport=Mock(send=send))
request = HttpRequest("POST", get_random_url())
request.set_bytes_body(expected_content)
await pipeline.run(request)
# token requests made for the KV challenge and first CAE challenge, but not the second CAE challenge
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 2
else:
assert credential.get_token_info.call_count == 2
await test_with_challenge(CAE_CHALLENGE_RESPONSE, CAE_DECODED_CLAIM)
@pytest.mark.asyncio
@empty_challenge_cache
@pytest.mark.parametrize("token_type", [AccessToken, AccessTokenInfo])
async def test_cae_token_expiry(token_type):
"""The policy should avoid sending claims more than once when a token expires."""
expected_content = b"a duck"
async def test_with_challenge(claims_challenge, expected_claim):
first_token = "first_token"
second_token = "second_token"
third_token = "third_token"
class Requests:
count = 0
async def send(request):
Requests.count += 1
if Requests.count == 1:
# first request should be unauthorized and have no content; triggers a KV challenge response
assert not request.body
assert "Authorization" not in request.headers
assert request.headers["Content-Length"] == "0"
return KV_CHALLENGE_RESPONSE
elif Requests.count == 2:
# second request will trigger a CAE challenge response in this test scenario
assert request.headers["Content-Length"]
assert request.body == expected_content
assert first_token in request.headers["Authorization"]
return claims_challenge
elif Requests.count == 3:
# third request should include the required claims and correctly use content from the first challenge
assert request.headers["Content-Length"]
assert request.body == expected_content
assert second_token in request.headers["Authorization"]
return Mock(status_code=200)
elif Requests.count == 4:
# fourth request should not include claims, but otherwise use content from the first challenge
assert request.headers["Content-Length"]
assert request.body == expected_content
assert third_token in request.headers["Authorization"]
return Mock(status_code=200)
raise ValueError("unexpected request")
async def get_token(*scopes, options=None, **kwargs):
options_bag = options if options else kwargs
assert options_bag.get("enable_cae") == True
assert options_bag.get("tenant_id") == KV_CHALLENGE_TENANT
assert scopes[0] == RESOURCE + "/.default"
# Response to KV challenge
if Requests.count == 1:
assert options_bag.get("claims") == None
return AccessToken(first_token, time.time() + 3600)
# Response to first CAE challenge
elif Requests.count == 2:
assert options_bag.get("claims") == expected_claim
return AccessToken(second_token, 0) # Return a token that expires immediately to trigger a refresh
# Token refresh before making the final request
elif Requests.count == 3:
assert options_bag.get("claims") == None
return AccessToken(third_token, time.time() + 3600)
if token_type == AccessToken:
credential = Mock(spec_set=["get_token"], get_token=Mock(wraps=get_token))
else:
credential = Mock(spec_set=["get_token_info"], get_token_info=Mock(wraps=get_token))
pipeline = AsyncPipeline(policies=[AsyncChallengeAuthPolicy(credential=credential)], transport=Mock(send=send))
request = HttpRequest("POST", get_random_url())
request.set_bytes_body(expected_content)
await pipeline.run(request)
await pipeline.run(request) # Send the request again to trigger a token refresh upon expiry
# token requests made for the KV and CAE challenges, as well as for the token refresh
if hasattr(credential, "get_token"):
assert credential.get_token.call_count == 3
else:
assert credential.get_token_info.call_count == 3
await test_with_challenge(CAE_CHALLENGE_RESPONSE, CAE_DECODED_CLAIM)
|