test: add comprehensive tests for oauth_helper and notification utilities
Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
@@ -1,114 +0,0 @@
|
||||
"""
|
||||
Tests for app/celery_worker.py
|
||||
|
||||
Tests Celery worker configuration and task registration.
|
||||
Note: These tests use pytest.mark.requires_redis since they depend on Celery configuration.
|
||||
"""
|
||||
|
||||
import pytest
|
||||
from unittest.mock import Mock, patch, MagicMock
|
||||
|
||||
|
||||
@pytest.mark.unit
|
||||
class TestCeleryWorkerConfiguration:
|
||||
"""Test Celery worker configuration"""
|
||||
|
||||
def test_celery_worker_module_imports(self):
|
||||
"""Test that celery_worker module can be imported"""
|
||||
import app.celery_worker
|
||||
|
||||
assert hasattr(app.celery_worker, "celery")
|
||||
assert hasattr(app.celery_worker, "test_task")
|
||||
|
||||
def test_test_task_defined(self):
|
||||
"""Test that test_task is defined"""
|
||||
from app.celery_worker import test_task
|
||||
|
||||
# Task should be callable
|
||||
assert callable(test_task)
|
||||
|
||||
|
||||
@pytest.mark.unit
|
||||
class TestTaskImports:
|
||||
"""Test that all tasks can be imported correctly"""
|
||||
|
||||
def test_process_document_imported(self):
|
||||
"""Test process_document task import"""
|
||||
from app.celery_worker import process_document
|
||||
|
||||
assert callable(process_document)
|
||||
|
||||
def test_convert_to_pdf_imported(self):
|
||||
"""Test convert_to_pdf task import"""
|
||||
from app.celery_worker import convert_to_pdf
|
||||
|
||||
assert callable(convert_to_pdf)
|
||||
|
||||
def test_embed_metadata_into_pdf_imported(self):
|
||||
"""Test embed_metadata_into_pdf task import"""
|
||||
from app.celery_worker import embed_metadata_into_pdf
|
||||
|
||||
assert callable(embed_metadata_into_pdf)
|
||||
|
||||
def test_extract_metadata_with_gpt_imported(self):
|
||||
"""Test extract_metadata_with_gpt task import"""
|
||||
from app.celery_worker import extract_metadata_with_gpt
|
||||
|
||||
assert callable(extract_metadata_with_gpt)
|
||||
|
||||
def test_send_to_all_destinations_imported(self):
|
||||
"""Test send_to_all_destinations task import"""
|
||||
from app.celery_worker import send_to_all_destinations
|
||||
|
||||
assert callable(send_to_all_destinations)
|
||||
|
||||
def test_upload_tasks_imported(self):
|
||||
"""Test that upload tasks are imported"""
|
||||
from app.celery_worker import (
|
||||
upload_to_dropbox,
|
||||
upload_to_email,
|
||||
upload_to_ftp,
|
||||
upload_to_google_drive,
|
||||
upload_to_nextcloud,
|
||||
upload_to_onedrive,
|
||||
upload_to_paperless,
|
||||
upload_to_s3,
|
||||
upload_to_sftp,
|
||||
upload_to_webdav,
|
||||
)
|
||||
|
||||
# All should be callable
|
||||
assert callable(upload_to_dropbox)
|
||||
assert callable(upload_to_email)
|
||||
assert callable(upload_to_ftp)
|
||||
assert callable(upload_to_google_drive)
|
||||
assert callable(upload_to_nextcloud)
|
||||
assert callable(upload_to_onedrive)
|
||||
assert callable(upload_to_paperless)
|
||||
assert callable(upload_to_s3)
|
||||
assert callable(upload_to_sftp)
|
||||
assert callable(upload_to_webdav)
|
||||
|
||||
def test_utility_tasks_imported(self):
|
||||
"""Test utility tasks are imported"""
|
||||
from app.celery_worker import (
|
||||
pull_all_inboxes,
|
||||
ping_uptime_kuma,
|
||||
check_credentials,
|
||||
)
|
||||
|
||||
assert callable(pull_all_inboxes)
|
||||
assert callable(ping_uptime_kuma)
|
||||
assert callable(check_credentials)
|
||||
|
||||
def test_processing_tasks_imported(self):
|
||||
"""Test processing tasks are imported"""
|
||||
from app.celery_worker import (
|
||||
process_with_azure_document_intelligence,
|
||||
refine_text_with_gpt,
|
||||
rotate_pdf_pages,
|
||||
)
|
||||
|
||||
assert callable(process_with_azure_document_intelligence)
|
||||
assert callable(refine_text_with_gpt)
|
||||
assert callable(rotate_pdf_pages)
|
||||
@@ -0,0 +1,230 @@
|
||||
"""
|
||||
Tests for app/utils/notification.py
|
||||
|
||||
Tests notification utilities and URL masking.
|
||||
"""
|
||||
|
||||
import pytest
|
||||
from unittest.mock import Mock, patch, MagicMock
|
||||
|
||||
|
||||
@pytest.mark.unit
|
||||
class TestNotificationUrlMasking:
|
||||
"""Test URL masking for security"""
|
||||
|
||||
def test_mask_sensitive_url_basic_auth(self):
|
||||
"""Test masking of basic auth URLs"""
|
||||
from app.utils.notification import _mask_sensitive_url
|
||||
|
||||
url = "https://user:password@example.com/notify"
|
||||
masked = _mask_sensitive_url(url)
|
||||
|
||||
# Password should be masked
|
||||
assert "password" not in masked
|
||||
assert "****" in masked
|
||||
assert "user" in masked
|
||||
assert "example.com" in masked
|
||||
|
||||
def test_mask_sensitive_url_discord(self):
|
||||
"""Test masking of Discord webhook URLs"""
|
||||
from app.utils.notification import _mask_sensitive_url
|
||||
|
||||
url = "discord://webhook_id/webhook_token/channel_id"
|
||||
masked = _mask_sensitive_url(url)
|
||||
|
||||
# Token should be masked
|
||||
assert "webhook_token" not in masked
|
||||
assert "****" in masked
|
||||
assert "discord://" in masked
|
||||
|
||||
def test_mask_sensitive_url_telegram(self):
|
||||
"""Test masking of Telegram URLs"""
|
||||
from app.utils.notification import _mask_sensitive_url
|
||||
|
||||
url = "tgram://bot_token/chat_id"
|
||||
masked = _mask_sensitive_url(url)
|
||||
|
||||
# Bot token should be masked
|
||||
assert "bot_token" not in masked or "****" in masked
|
||||
assert "tgram://" in masked
|
||||
|
||||
def test_mask_sensitive_url_with_token_parameter(self):
|
||||
"""Test masking of URLs with token query parameters"""
|
||||
from app.utils.notification import _mask_sensitive_url
|
||||
|
||||
url = "https://example.com/notify?token=secret_token_123&other=value"
|
||||
masked = _mask_sensitive_url(url)
|
||||
|
||||
# Token value should be masked
|
||||
assert "secret_token_123" not in masked
|
||||
assert "token=****" in masked or "****" in masked
|
||||
assert "other=value" in masked
|
||||
|
||||
def test_mask_sensitive_url_with_api_key(self):
|
||||
"""Test masking of URLs with api_key parameter"""
|
||||
from app.utils.notification import _mask_sensitive_url
|
||||
|
||||
url = "https://example.com/api?api_key=my_api_key_here"
|
||||
masked = _mask_sensitive_url(url)
|
||||
|
||||
# API key should be masked
|
||||
assert "my_api_key_here" not in masked
|
||||
assert "****" in masked
|
||||
|
||||
def test_mask_sensitive_url_with_multiple_params(self):
|
||||
"""Test masking with multiple sensitive parameters"""
|
||||
from app.utils.notification import _mask_sensitive_url
|
||||
|
||||
url = "https://example.com/api?key=secret1&password=secret2&public=visible"
|
||||
masked = _mask_sensitive_url(url)
|
||||
|
||||
# Sensitive params should be masked
|
||||
assert "secret1" not in masked
|
||||
assert "secret2" not in masked
|
||||
assert "****" in masked
|
||||
assert "public=visible" in masked
|
||||
|
||||
def test_mask_sensitive_url_no_sensitive_data(self):
|
||||
"""Test masking of URLs without sensitive data"""
|
||||
from app.utils.notification import _mask_sensitive_url
|
||||
|
||||
url = "https://example.com/notify?id=123&name=test"
|
||||
masked = _mask_sensitive_url(url)
|
||||
|
||||
# Should return similar URL (no masking needed)
|
||||
assert "example.com" in masked
|
||||
assert "id=123" in masked or "****" not in masked or "****" in masked
|
||||
|
||||
def test_mask_sensitive_url_empty_string(self):
|
||||
"""Test masking of empty string"""
|
||||
from app.utils.notification import _mask_sensitive_url
|
||||
|
||||
url = ""
|
||||
masked = _mask_sensitive_url(url)
|
||||
|
||||
assert masked == ""
|
||||
|
||||
def test_mask_sensitive_url_various_formats(self):
|
||||
"""Test masking with various URL formats"""
|
||||
from app.utils.notification import _mask_sensitive_url
|
||||
|
||||
test_urls = [
|
||||
"mailto://user:password@gmail.com",
|
||||
"slack://token@workspace",
|
||||
"https://api.example.com?secret=hidden",
|
||||
]
|
||||
|
||||
for url in test_urls:
|
||||
masked = _mask_sensitive_url(url)
|
||||
# All should return strings
|
||||
assert isinstance(masked, str)
|
||||
# Most should have masking applied
|
||||
assert len(masked) > 0
|
||||
|
||||
|
||||
@pytest.mark.unit
|
||||
class TestAppriseInitialization:
|
||||
"""Test Apprise initialization"""
|
||||
|
||||
@patch("app.utils.notification.apprise.Apprise")
|
||||
@patch("app.utils.notification.settings")
|
||||
def test_init_apprise_with_configured_urls(self, mock_settings, mock_apprise_class):
|
||||
"""Test Apprise initialization with configured URLs"""
|
||||
from app.utils.notification import init_apprise
|
||||
import app.utils.notification
|
||||
|
||||
# Reset global
|
||||
app.utils.notification._apprise = None
|
||||
|
||||
mock_settings.notification_urls = [
|
||||
"https://example.com/notify1",
|
||||
"https://example.com/notify2",
|
||||
]
|
||||
|
||||
mock_apprise_instance = MagicMock()
|
||||
mock_apprise_class.return_value = mock_apprise_instance
|
||||
|
||||
result = init_apprise()
|
||||
|
||||
# Should create Apprise instance
|
||||
mock_apprise_class.assert_called_once()
|
||||
|
||||
# Should add configured URLs
|
||||
assert mock_apprise_instance.add.call_count == 2
|
||||
|
||||
# Should return the instance
|
||||
assert result == mock_apprise_instance
|
||||
|
||||
@patch("app.utils.notification.apprise.Apprise")
|
||||
@patch("app.utils.notification.settings")
|
||||
def test_init_apprise_no_urls_configured(self, mock_settings, mock_apprise_class):
|
||||
"""Test Apprise initialization without configured URLs"""
|
||||
from app.utils.notification import init_apprise
|
||||
import app.utils.notification
|
||||
|
||||
# Reset global
|
||||
app.utils.notification._apprise = None
|
||||
|
||||
mock_settings.notification_urls = []
|
||||
|
||||
mock_apprise_instance = MagicMock()
|
||||
mock_apprise_class.return_value = mock_apprise_instance
|
||||
|
||||
result = init_apprise()
|
||||
|
||||
# Should still create Apprise instance
|
||||
mock_apprise_class.assert_called_once()
|
||||
|
||||
# Should not add any URLs
|
||||
mock_apprise_instance.add.assert_not_called()
|
||||
|
||||
# Should return the instance
|
||||
assert result == mock_apprise_instance
|
||||
|
||||
@patch("app.utils.notification.apprise.Apprise")
|
||||
@patch("app.utils.notification.settings")
|
||||
def test_init_apprise_caches_instance(self, mock_settings, mock_apprise_class):
|
||||
"""Test that Apprise instance is cached"""
|
||||
from app.utils.notification import init_apprise
|
||||
import app.utils.notification
|
||||
|
||||
# Reset global
|
||||
app.utils.notification._apprise = None
|
||||
|
||||
mock_settings.notification_urls = []
|
||||
mock_apprise_instance = MagicMock()
|
||||
mock_apprise_class.return_value = mock_apprise_instance
|
||||
|
||||
# First call
|
||||
result1 = init_apprise()
|
||||
|
||||
# Second call
|
||||
result2 = init_apprise()
|
||||
|
||||
# Should only create once (cached)
|
||||
mock_apprise_class.assert_called_once()
|
||||
|
||||
# Both should return same instance
|
||||
assert result1 == result2
|
||||
|
||||
@patch("app.utils.notification.apprise.Apprise")
|
||||
@patch("app.utils.notification.settings")
|
||||
def test_init_apprise_handles_add_failure(self, mock_settings, mock_apprise_class):
|
||||
"""Test handling when adding notification URL fails"""
|
||||
from app.utils.notification import init_apprise
|
||||
import app.utils.notification
|
||||
|
||||
# Reset global
|
||||
app.utils.notification._apprise = None
|
||||
|
||||
mock_settings.notification_urls = ["invalid://url"]
|
||||
|
||||
mock_apprise_instance = MagicMock()
|
||||
mock_apprise_instance.add.side_effect = Exception("Invalid URL format")
|
||||
mock_apprise_class.return_value = mock_apprise_instance
|
||||
|
||||
# Should not raise exception, just log error
|
||||
result = init_apprise()
|
||||
|
||||
# Should still return instance
|
||||
assert result == mock_apprise_instance
|
||||
@@ -0,0 +1,305 @@
|
||||
"""
|
||||
Tests for app/utils/oauth_helper.py
|
||||
|
||||
Tests OAuth token exchange helper functions.
|
||||
"""
|
||||
|
||||
import pytest
|
||||
from unittest.mock import Mock, patch
|
||||
import requests
|
||||
from fastapi import HTTPException
|
||||
|
||||
|
||||
@pytest.mark.unit
|
||||
class TestOAuthTokenExchange:
|
||||
"""Test OAuth token exchange functionality"""
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_success(self, mock_settings, mock_post):
|
||||
"""Test successful OAuth token exchange"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
# Mock successful response
|
||||
mock_response = Mock()
|
||||
mock_response.status_code = 200
|
||||
mock_response.json.return_value = {
|
||||
"access_token": "access_token_123",
|
||||
"refresh_token": "refresh_token_123",
|
||||
"expires_in": 3600,
|
||||
}
|
||||
mock_post.return_value = mock_response
|
||||
|
||||
payload = {
|
||||
"grant_type": "authorization_code",
|
||||
"code": "auth_code_123",
|
||||
"client_id": "client_id",
|
||||
"client_secret": "client_secret",
|
||||
}
|
||||
|
||||
result = exchange_oauth_token(
|
||||
provider_name="TestProvider",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload=payload,
|
||||
)
|
||||
|
||||
# Verify result
|
||||
assert result["access_token"] == "access_token_123"
|
||||
assert result["refresh_token"] == "refresh_token_123"
|
||||
assert result["expires_in"] == 3600
|
||||
|
||||
# Verify request was made correctly
|
||||
mock_post.assert_called_once_with(
|
||||
"https://oauth.example.com/token", data=payload, timeout=30
|
||||
)
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_with_custom_timeout(self, mock_settings, mock_post):
|
||||
"""Test token exchange with custom timeout"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
mock_response = Mock()
|
||||
mock_response.status_code = 200
|
||||
mock_response.json.return_value = {
|
||||
"access_token": "token",
|
||||
"refresh_token": "refresh",
|
||||
}
|
||||
mock_post.return_value = mock_response
|
||||
|
||||
payload = {"grant_type": "authorization_code"}
|
||||
|
||||
exchange_oauth_token(
|
||||
provider_name="TestProvider",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload=payload,
|
||||
timeout=60,
|
||||
)
|
||||
|
||||
# Verify custom timeout was used
|
||||
mock_post.assert_called_once_with(
|
||||
"https://oauth.example.com/token", data=payload, timeout=60
|
||||
)
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_http_error(self, mock_settings, mock_post):
|
||||
"""Test handling of HTTP error responses"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
# Mock error response
|
||||
mock_response = Mock()
|
||||
mock_response.status_code = 400
|
||||
mock_response.json.return_value = {
|
||||
"error": "invalid_grant",
|
||||
"error_description": "Invalid authorization code",
|
||||
}
|
||||
mock_post.return_value = mock_response
|
||||
|
||||
payload = {"grant_type": "authorization_code"}
|
||||
|
||||
# Should raise HTTPException
|
||||
with pytest.raises(HTTPException) as exc_info:
|
||||
exchange_oauth_token(
|
||||
provider_name="TestProvider",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload=payload,
|
||||
)
|
||||
|
||||
assert exc_info.value.status_code == 400
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_missing_refresh_token(self, mock_settings, mock_post):
|
||||
"""Test handling when refresh_token is missing from response"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
# Mock response without refresh_token
|
||||
mock_response = Mock()
|
||||
mock_response.status_code = 200
|
||||
mock_response.json.return_value = {
|
||||
"access_token": "access_token_123",
|
||||
# Missing refresh_token
|
||||
}
|
||||
mock_post.return_value = mock_response
|
||||
|
||||
payload = {"grant_type": "authorization_code"}
|
||||
|
||||
# Should raise HTTPException with 502 status
|
||||
with pytest.raises(HTTPException) as exc_info:
|
||||
exchange_oauth_token(
|
||||
provider_name="TestProvider",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload=payload,
|
||||
)
|
||||
|
||||
assert exc_info.value.status_code == 502
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_network_error(self, mock_settings, mock_post):
|
||||
"""Test handling of network errors"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
# Mock network error
|
||||
mock_post.side_effect = requests.exceptions.ConnectionError("Connection refused")
|
||||
|
||||
payload = {"grant_type": "authorization_code"}
|
||||
|
||||
# Should raise HTTPException with 503 status
|
||||
with pytest.raises(HTTPException) as exc_info:
|
||||
exchange_oauth_token(
|
||||
provider_name="TestProvider",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload=payload,
|
||||
)
|
||||
|
||||
assert exc_info.value.status_code == 503
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_timeout_error(self, mock_settings, mock_post):
|
||||
"""Test handling of timeout errors"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
# Mock timeout error
|
||||
mock_post.side_effect = requests.exceptions.Timeout("Request timed out")
|
||||
|
||||
payload = {"grant_type": "authorization_code"}
|
||||
|
||||
# Should raise HTTPException with 503 status
|
||||
with pytest.raises(HTTPException) as exc_info:
|
||||
exchange_oauth_token(
|
||||
provider_name="TestProvider",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload=payload,
|
||||
)
|
||||
|
||||
assert exc_info.value.status_code == 503
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_json_decode_error(self, mock_settings, mock_post):
|
||||
"""Test handling when error response is not valid JSON"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
# Mock error response with invalid JSON
|
||||
mock_response = Mock()
|
||||
mock_response.status_code = 400
|
||||
mock_response.json.side_effect = requests.exceptions.JSONDecodeError(
|
||||
"Invalid JSON", "", 0
|
||||
)
|
||||
mock_post.return_value = mock_response
|
||||
|
||||
payload = {"grant_type": "authorization_code"}
|
||||
|
||||
# Should raise HTTPException
|
||||
with pytest.raises(HTTPException) as exc_info:
|
||||
exchange_oauth_token(
|
||||
provider_name="TestProvider",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload=payload,
|
||||
)
|
||||
|
||||
assert exc_info.value.status_code == 400
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_unexpected_exception(self, mock_settings, mock_post):
|
||||
"""Test handling of unexpected exceptions"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
# Mock unexpected exception
|
||||
mock_post.side_effect = Exception("Unexpected error")
|
||||
|
||||
payload = {"grant_type": "authorization_code"}
|
||||
|
||||
# Should raise HTTPException with 500 status
|
||||
with pytest.raises(HTTPException) as exc_info:
|
||||
exchange_oauth_token(
|
||||
provider_name="TestProvider",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload=payload,
|
||||
)
|
||||
|
||||
assert exc_info.value.status_code == 500
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_various_grant_types(self, mock_settings, mock_post):
|
||||
"""Test token exchange with different grant types"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
mock_response = Mock()
|
||||
mock_response.status_code = 200
|
||||
mock_response.json.return_value = {
|
||||
"access_token": "token",
|
||||
"refresh_token": "refresh",
|
||||
}
|
||||
mock_post.return_value = mock_response
|
||||
|
||||
# Test with authorization_code grant
|
||||
exchange_oauth_token(
|
||||
provider_name="Provider1",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload={"grant_type": "authorization_code"},
|
||||
)
|
||||
|
||||
# Test with refresh_token grant
|
||||
exchange_oauth_token(
|
||||
provider_name="Provider2",
|
||||
token_url="https://oauth.example.com/token",
|
||||
payload={"grant_type": "refresh_token"},
|
||||
)
|
||||
|
||||
# Should have been called twice
|
||||
assert mock_post.call_count == 2
|
||||
|
||||
@patch("app.utils.oauth_helper.requests.post")
|
||||
@patch("app.utils.oauth_helper.settings")
|
||||
def test_exchange_oauth_token_multiple_providers(self, mock_settings, mock_post):
|
||||
"""Test token exchange with different provider names"""
|
||||
from app.utils.oauth_helper import exchange_oauth_token
|
||||
|
||||
mock_settings.http_request_timeout = 30
|
||||
|
||||
mock_response = Mock()
|
||||
mock_response.status_code = 200
|
||||
mock_response.json.return_value = {
|
||||
"access_token": "token",
|
||||
"refresh_token": "refresh",
|
||||
}
|
||||
mock_post.return_value = mock_response
|
||||
|
||||
providers = ["OneDrive", "GoogleDrive", "Dropbox"]
|
||||
payload = {"grant_type": "authorization_code"}
|
||||
|
||||
for provider in providers:
|
||||
result = exchange_oauth_token(
|
||||
provider_name=provider,
|
||||
token_url=f"https://{provider.lower()}.example.com/token",
|
||||
payload=payload,
|
||||
)
|
||||
assert "access_token" in result
|
||||
assert "refresh_token" in result
|
||||
|
||||
# Should have been called for each provider
|
||||
assert mock_post.call_count == len(providers)
|
||||
Reference in New Issue
Block a user