4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
from __future__ import annotations
|
|
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
import jwt as pyjwt
|
|
import pytest
|
|
|
|
from platform.auth.jwt_auth import (
|
|
AsyncJWKSCache,
|
|
JWTVerificationError,
|
|
get_signing_key_from_jwks,
|
|
)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_jwks_fetches_once_and_uses_cache_within_ttl() -> None:
|
|
"""Lock in JWKS cache behavior so refactors do not refetch per request."""
|
|
cache = AsyncJWKSCache(_cache_ttl=3600)
|
|
jwks_url = "https://example.com/.well-known/jwks.json"
|
|
jwks_payload = {
|
|
"keys": [
|
|
{
|
|
"kid": "kid-1",
|
|
"kty": "RSA",
|
|
}
|
|
]
|
|
}
|
|
|
|
response = MagicMock()
|
|
response.raise_for_status = MagicMock()
|
|
response.json.return_value = jwks_payload
|
|
|
|
with (
|
|
patch("platform.auth.jwt_auth.time.time", side_effect=[1000.0, 1001.0]),
|
|
patch("platform.auth.jwt_auth.httpx.AsyncClient") as mock_async_client_cls,
|
|
):
|
|
mock_client = AsyncMock()
|
|
mock_client.get = AsyncMock(return_value=response)
|
|
mock_async_client_cls.return_value.__aenter__.return_value = mock_client
|
|
|
|
first = await cache.get_jwks(jwks_url)
|
|
second = await cache.get_jwks(jwks_url)
|
|
|
|
assert first == jwks_payload
|
|
assert second == jwks_payload
|
|
assert mock_client.get.await_count == 1
|
|
response.raise_for_status.assert_called_once()
|
|
|
|
|
|
def test_get_signing_key_from_jwks_raises_on_invalid_jwk() -> None:
|
|
"""Bad JWK data should raise JWTVerificationError, not a bare Exception."""
|
|
token = pyjwt.encode(
|
|
{"sub": "1"},
|
|
"secret",
|
|
algorithm="HS256",
|
|
headers={"kid": "bad-kid"},
|
|
)
|
|
jwks = {"keys": [{"kid": "bad-kid", "kty": "UNSUPPORTED"}]}
|
|
|
|
with pytest.raises(JWTVerificationError, match="Failed to parse JWK"):
|
|
get_signing_key_from_jwks(jwks, token)
|