Add tests for OAuth client and webhook notification handling

- Implement tests for `EbayOAuthClient` to verify authorization URL generation with configured scopes and token reuse logic.
- Add tests for `WebhookChallengeHandler` to ensure correct SHA256 response generation and for `WebhookSignatureParser` to validate extraction of known fields from signature strings.
This commit is contained in:
claudi 2026-04-07 08:40:50 +02:00
commit 389d72a136
519 changed files with 99006 additions and 0 deletions

35
tests/test_auth_oauth.py Normal file
View file

@ -0,0 +1,35 @@
from __future__ import annotations
from urllib.parse import parse_qs, urlparse
from ebay_client.core.auth.models import EbayOAuthConfig, OAuthToken
from ebay_client.core.auth.oauth import EbayOAuthClient
from ebay_client.core.auth.store import InMemoryTokenStore
def test_build_authorization_url_uses_configured_scopes() -> None:
config = EbayOAuthConfig(
client_id="client-id",
client_secret="client-secret",
redirect_uri="https://example.test/callback",
default_scopes=["scope.a", "scope.b"],
)
client = EbayOAuthClient(config)
url = client.build_authorization_url(state="state-1")
query = parse_qs(urlparse(url).query)
assert query["client_id"] == ["client-id"]
assert query["state"] == ["state-1"]
assert query["scope"] == ["scope.a scope.b"]
def test_get_valid_token_reuses_unexpired_token() -> None:
config = EbayOAuthConfig(client_id="client-id", client_secret="client-secret")
store = InMemoryTokenStore()
store.set_token(OAuthToken(access_token="cached-token", scope="scope.a"))
client = EbayOAuthClient(config, token_store=store)
token = client.get_valid_token(scopes=["scope.a"])
assert token.access_token == "cached-token"