mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-27 15:51:33 +02:00
Add OAuth proxy that allows authentication with social IDPs without DCR support (#1434)
This commit is contained in:
parent
88a3573d70
commit
ec015de3b0
23 changed files with 3818 additions and 28 deletions
227
tests/server/auth/providers/test_github.py
Normal file
227
tests/server/auth/providers/test_github.py
Normal file
|
|
@ -0,0 +1,227 @@
|
|||
"""Unit tests for GitHub OAuth provider."""
|
||||
|
||||
import os
|
||||
from unittest.mock import MagicMock, patch
|
||||
|
||||
import pytest
|
||||
|
||||
from fastmcp.server.auth.providers.github import (
|
||||
GitHubProvider,
|
||||
GitHubProviderSettings,
|
||||
GitHubTokenVerifier,
|
||||
)
|
||||
|
||||
|
||||
class TestGitHubProviderSettings:
|
||||
"""Test settings for GitHub OAuth provider."""
|
||||
|
||||
def test_settings_from_env_vars(self):
|
||||
"""Test that settings can be loaded from environment variables."""
|
||||
with patch.dict(
|
||||
os.environ,
|
||||
{
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_CLIENT_ID": "env_client_id",
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_CLIENT_SECRET": "env_secret",
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_BASE_URL": "https://example.com",
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_REDIRECT_PATH": "/custom/callback",
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_TIMEOUT_SECONDS": "30",
|
||||
},
|
||||
):
|
||||
settings = GitHubProviderSettings()
|
||||
|
||||
assert settings.client_id == "env_client_id"
|
||||
assert (
|
||||
settings.client_secret
|
||||
and settings.client_secret.get_secret_value() == "env_secret"
|
||||
)
|
||||
assert settings.base_url == "https://example.com"
|
||||
assert settings.redirect_path == "/custom/callback"
|
||||
assert settings.timeout_seconds == 30
|
||||
|
||||
def test_settings_explicit_override_env(self):
|
||||
"""Test that explicit settings override environment variables."""
|
||||
with patch.dict(
|
||||
os.environ,
|
||||
{
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_CLIENT_ID": "env_client_id",
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_CLIENT_SECRET": "env_secret",
|
||||
},
|
||||
):
|
||||
settings = GitHubProviderSettings.model_validate(
|
||||
{
|
||||
"client_id": "explicit_client_id",
|
||||
"client_secret": "explicit_secret",
|
||||
}
|
||||
)
|
||||
|
||||
assert settings.client_id == "explicit_client_id"
|
||||
assert (
|
||||
settings.client_secret
|
||||
and settings.client_secret.get_secret_value() == "explicit_secret"
|
||||
)
|
||||
|
||||
|
||||
class TestGitHubProvider:
|
||||
"""Test GitHubProvider initialization."""
|
||||
|
||||
def test_init_with_explicit_params(self):
|
||||
"""Test initialization with explicit parameters."""
|
||||
provider = GitHubProvider(
|
||||
client_id="test_client",
|
||||
client_secret="test_secret",
|
||||
base_url="https://example.com",
|
||||
redirect_path="/custom/callback",
|
||||
required_scopes=["user", "repo"],
|
||||
timeout_seconds=30,
|
||||
)
|
||||
|
||||
# Check that the provider was initialized correctly
|
||||
assert provider._upstream_client_id == "test_client"
|
||||
assert provider._upstream_client_secret.get_secret_value() == "test_secret"
|
||||
assert (
|
||||
str(provider.base_url) == "https://example.com/"
|
||||
) # URLs get normalized with trailing slash
|
||||
assert provider._redirect_path == "/custom/callback"
|
||||
|
||||
def test_init_with_env_vars(self):
|
||||
"""Test initialization with environment variables."""
|
||||
with patch.dict(
|
||||
os.environ,
|
||||
{
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_CLIENT_ID": "env_client_id",
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_CLIENT_SECRET": "env_secret",
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_BASE_URL": "https://env-example.com",
|
||||
},
|
||||
):
|
||||
provider = GitHubProvider()
|
||||
|
||||
assert provider._upstream_client_id == "env_client_id"
|
||||
assert provider._upstream_client_secret.get_secret_value() == "env_secret"
|
||||
assert str(provider.base_url) == "https://env-example.com/"
|
||||
|
||||
def test_init_explicit_overrides_env(self):
|
||||
"""Test that explicit parameters override environment variables."""
|
||||
with patch.dict(
|
||||
os.environ,
|
||||
{
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_CLIENT_ID": "env_client_id",
|
||||
"FASTMCP_SERVER_AUTH_GITHUB_CLIENT_SECRET": "env_secret",
|
||||
},
|
||||
):
|
||||
provider = GitHubProvider(
|
||||
client_id="explicit_client",
|
||||
client_secret="explicit_secret",
|
||||
)
|
||||
|
||||
assert provider._upstream_client_id == "explicit_client"
|
||||
assert (
|
||||
provider._upstream_client_secret.get_secret_value() == "explicit_secret"
|
||||
)
|
||||
|
||||
def test_init_missing_client_id_raises_error(self):
|
||||
"""Test that missing client_id raises ValueError."""
|
||||
with pytest.raises(ValueError, match="client_id is required"):
|
||||
GitHubProvider(client_secret="test_secret")
|
||||
|
||||
def test_init_missing_client_secret_raises_error(self):
|
||||
"""Test that missing client_secret raises ValueError."""
|
||||
with pytest.raises(ValueError, match="client_secret is required"):
|
||||
GitHubProvider(client_id="test_client")
|
||||
|
||||
def test_init_defaults(self):
|
||||
"""Test that default values are applied correctly."""
|
||||
provider = GitHubProvider(
|
||||
client_id="test_client",
|
||||
client_secret="test_secret",
|
||||
)
|
||||
|
||||
# Check defaults
|
||||
assert str(provider.base_url) == "http://localhost:8000/"
|
||||
assert provider._redirect_path == "/oauth/callback"
|
||||
# The required_scopes should be passed to the token verifier
|
||||
assert provider._token_validator.required_scopes == ["user"]
|
||||
|
||||
|
||||
class TestGitHubTokenVerifier:
|
||||
"""Test GitHubTokenVerifier."""
|
||||
|
||||
def test_init_with_custom_scopes(self):
|
||||
"""Test initialization with custom required scopes."""
|
||||
verifier = GitHubTokenVerifier(
|
||||
required_scopes=["user", "repo"],
|
||||
timeout_seconds=30,
|
||||
)
|
||||
|
||||
assert verifier.required_scopes == ["user", "repo"]
|
||||
assert verifier.timeout_seconds == 30
|
||||
|
||||
def test_init_defaults(self):
|
||||
"""Test initialization with defaults."""
|
||||
verifier = GitHubTokenVerifier()
|
||||
|
||||
assert (
|
||||
verifier.required_scopes == []
|
||||
) # Parent TokenVerifier sets empty list as default
|
||||
assert verifier.timeout_seconds == 10
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_verify_token_github_api_failure(self):
|
||||
"""Test token verification when GitHub API returns error."""
|
||||
verifier = GitHubTokenVerifier()
|
||||
|
||||
# Mock httpx.AsyncClient to simulate GitHub API failure
|
||||
with patch("httpx.AsyncClient") as mock_client_class:
|
||||
mock_client = MagicMock()
|
||||
mock_client_class.return_value.__aenter__.return_value = mock_client
|
||||
|
||||
# Simulate 401 response from GitHub
|
||||
mock_response = MagicMock()
|
||||
mock_response.status_code = 401
|
||||
mock_response.text = "Bad credentials"
|
||||
mock_client.get.return_value = mock_response
|
||||
|
||||
result = await verifier.verify_token("invalid_token")
|
||||
assert result is None
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_verify_token_success(self):
|
||||
"""Test successful token verification."""
|
||||
from unittest.mock import AsyncMock
|
||||
|
||||
verifier = GitHubTokenVerifier(required_scopes=["user"])
|
||||
|
||||
# Mock the httpx.AsyncClient directly
|
||||
mock_client = AsyncMock()
|
||||
|
||||
# Mock successful user API response
|
||||
user_response = MagicMock()
|
||||
user_response.status_code = 200
|
||||
user_response.json.return_value = {
|
||||
"id": 12345,
|
||||
"login": "testuser",
|
||||
"name": "Test User",
|
||||
"email": "test@example.com",
|
||||
"avatar_url": "https://github.com/testuser.png",
|
||||
}
|
||||
|
||||
# Mock successful scopes API response
|
||||
scopes_response = MagicMock()
|
||||
scopes_response.headers = {"x-oauth-scopes": "user,repo"}
|
||||
|
||||
# Set up the mock client to return our responses
|
||||
mock_client.get.side_effect = [user_response, scopes_response]
|
||||
|
||||
# Patch the AsyncClient context manager
|
||||
with patch(
|
||||
"fastmcp.server.auth.providers.github.httpx.AsyncClient"
|
||||
) as mock_client_class:
|
||||
mock_client_class.return_value.__aenter__.return_value = mock_client
|
||||
|
||||
result = await verifier.verify_token("valid_token")
|
||||
|
||||
assert result is not None
|
||||
assert result.token == "valid_token"
|
||||
assert result.client_id == "12345"
|
||||
assert result.scopes == ["user", "repo"]
|
||||
assert result.claims["login"] == "testuser"
|
||||
assert result.claims["name"] == "Test User"
|
||||
Loading…
Add table
Add a link
Reference in a new issue