Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3.8k
Fix building auth metadata paths#779
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
5577323521d3bc18f88ff628b492c7068b399ef0d4edd2e09f85bf8d045da79762d4e8File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -10,9 +10,12 @@ | ||
| import httpx | ||
| import pytest | ||
| from inline_snapshot import snapshot | ||
| from pydantic import AnyHttpUrl | ||
| from mcp.client.auth import OAuthClientProvider | ||
| from mcp.server.auth.routes import build_metadata | ||
| from mcp.server.auth.settings import ClientRegistrationOptions, RevocationOptions | ||
| from mcp.shared.auth import ( | ||
| OAuthClientInformationFull, | ||
| OAuthClientMetadata, | ||
| @@ -905,3 +908,76 @@ async def test_token_exchange_error_basic(self, oauth_provider, oauth_client_inf | ||
| await oauth_provider._exchange_code_for_token( | ||
| "invalid_auth_code", oauth_client_info | ||
| ) | ||
| @pytest.mark.parametrize( | ||
| ( | ||
| "issuer_url", | ||
| "service_documentation_url", | ||
| "authorization_endpoint", | ||
| "token_endpoint", | ||
| "registration_endpoint", | ||
| "revocation_endpoint", | ||
| ), | ||
| ( | ||
| pytest.param( | ||
| "https://auth.example.com", | ||
| "https://auth.example.com/docs", | ||
| "https://auth.example.com/authorize", | ||
| "https://auth.example.com/token", | ||
| "https://auth.example.com/register", | ||
| "https://auth.example.com/revoke", | ||
| id="simple-url", | ||
| ), | ||
| pytest.param( | ||
| "https://auth.example.com/", | ||
| "https://auth.example.com/docs", | ||
| "https://auth.example.com/authorize", | ||
| "https://auth.example.com/token", | ||
| "https://auth.example.com/register", | ||
| "https://auth.example.com/revoke", | ||
| id="with-trailing-slash", | ||
| ), | ||
| pytest.param( | ||
| "https://auth.example.com/v1/mcp", | ||
| "https://auth.example.com/v1/mcp/docs", | ||
| "https://auth.example.com/v1/mcp/authorize", | ||
| "https://auth.example.com/v1/mcp/token", | ||
| "https://auth.example.com/v1/mcp/register", | ||
| "https://auth.example.com/v1/mcp/revoke", | ||
| id="with-path-param", | ||
| ), | ||
| ), | ||
| ) | ||
| def test_build_metadata( | ||
| issuer_url: str, | ||
| service_documentation_url: str, | ||
| authorization_endpoint: str, | ||
| token_endpoint: str, | ||
| registration_endpoint: str, | ||
| revocation_endpoint: str, | ||
| ): | ||
| metadata = build_metadata( | ||
| issuer_url=AnyHttpUrl(issuer_url), | ||
| service_documentation_url=AnyHttpUrl(service_documentation_url), | ||
| client_registration_options=ClientRegistrationOptions( | ||
| enabled=True, valid_scopes=["read", "write", "admin"] | ||
| ), | ||
| revocation_options=RevocationOptions(enabled=True), | ||
| ) | ||
| assert metadata == snapshot( | ||
| ||
| OAuthMetadata( | ||
| issuer=AnyHttpUrl(issuer_url), | ||
| authorization_endpoint=AnyHttpUrl(authorization_endpoint), | ||
| token_endpoint=AnyHttpUrl(token_endpoint), | ||
| registration_endpoint=AnyHttpUrl(registration_endpoint), | ||
| scopes_supported=["read", "write", "admin"], | ||
| grant_types_supported=["authorization_code", "refresh_token"], | ||
| token_endpoint_auth_methods_supported=["client_secret_post"], | ||
| service_documentation=AnyHttpUrl(service_documentation_url), | ||
| revocation_endpoint=AnyHttpUrl(revocation_endpoint), | ||
| revocation_endpoint_auth_methods_supported=["client_secret_post"], | ||
| code_challenge_methods_supported=["S256"], | ||
| ) | ||
| ) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's no need to strip in any of those.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the suggestion, @Kludex!
I initially thought the same — that
urljoin(str(issuer_url), "/authorize")would be enough. But it actually breaks in some cases where thebase_urlincludes a path.For example, when the
base_urlishttps://example.com/auth/oidc/op/Customer/,urljoinreturnshttps://example.com/authorize, which drops the intended path entirely. That’s becauseurljointreats the/authorizeas an absolute path and replaces everything after the domain.To illustrate this, I added a test suite comparing both approaches:
So for consistency across all cases, I believe we need to keep the rstrip("/") approach.
Let me know what you think!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunate, but it makes sense.