| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| Expand Up | @@ -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, | ||
| Expand Down Expand Up | @@ -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( | ||
|
Comment thread
Copy link
Copy Markdown
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityI've added inline-snapshot as a test dependency. It's super useful.
Sorry, something went wrong.
All reactions
|
||
| 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"], | ||
| ) | ||
| ) | ||
| Back | FazBrowse Home | New Git URL |
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.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityThere's no need to strip in any of those.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
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.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityThanks 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 the base_url includes a path.
For example, when the base_url is https://example.com/auth/oidc/op/Customer/, urljoin returns https://example.com/authorize, which drops the intended path entirely. That’s because urljoin treats the /authorize as 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!
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
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.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityUnfortunate, but it makes sense.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.