c7d3ec57c3
Commitd2217531(google-labs-jules SSRF fix) catastrophically deleted 11,500+ lines across 100+ files while fixing an unrelated IMAP issue. Restored from d2217531^ (pre-bad-commit state): Deleted files (fully restored): - app/api/{automation,classification_rules,comments,sharing}.py - app/middleware/upload_rate_limit.py - app/tasks/{automation_tasks,classify_document}.py - app/utils/{automation_hooks,classification_rules}.py - docs/AppleAppStoreCompliance.md - frontend/input.css, package.json, package-lock.json, tailwind.config.js - frontend/static/js/{annotations,claim,comments,sharing}.js - frontend/templates/{admin_connections,file_annotations,file_summary}.html - tests/{test_api_files_comprehensive,test_auth_extended,test_sharing, test_comments,test_connections,test_imap_profiles,test_api_sessions, test_automation,test_classification_rules,test_api_advanced_filters, test_api_classification_rules,test_upload_rate_limit,test_api_dropbox, test_classify_document,test_comments_ui,test_upload_to_icloud, test_api_onedrive_comprehensive,test_frontend_build,test_sentry, test_diagnostic,test_database,test_views_dropbox,test_local_auth}.py Truncated files (content restored): - app/{auth,config,main,models,celery_worker,database}.py - app/api/{__init__,api_tokens,diagnostic,dropbox,files,google_drive, integrations,local_auth,mobile,onedrive,pipelines,qr_auth, settings,url_upload}.py - app/middleware/upload_rate_limit.py - app/tasks/upload_to_nextcloud.py - app/utils/{allowed_types,settings_service,settings_sync,user_scope,webhook}.py - app/views/{base,dropbox,files,google_drive,onedrive,settings}.py - docs/{API,AuthenticationSetup,ConfigurationGuide,DatabaseConfiguration, DeploymentGuide,DropboxSetup,GoogleDriveSetup,KubernetesDeployment, MobileApp,OneDriveSetup,ProductionReadiness,SentrySetup, SocialLoginSetup,UserGuide}.md - frontend/static/{js/upload.js,styles.css} - frontend/templates/{api_tokens,base,devices,dropbox,dropbox_callback, file_view,files,google_drive,onedrive,onedrive_callback, signup}.html - frontend/translations/en.json - migrations/env.py - tests/{conftest,test_api_integrations,test_api_mobile,test_api_settings, test_api_tokens,test_audit_logs,test_duplicates,test_imap_tasks, test_setup_wizard,test_views_files_comprehensive}.py Security fixes kept from post-d2217531 commits: - app/utils/network.py: DNS SSRF fail-secure fix (06b0fced) - app/utils/file_operations.py: path traversal fix (1018ea17) - tests/test_imap_tasks.py: re-applied 4 is_private_ip mock patches Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> Agent-Logs-Url: https://github.com/christianlouis/DocuElevate/sessions/51133dd8-9bec-41ab-aa10-3de753634187
181 lines
7.8 KiB
Python
181 lines
7.8 KiB
Python
"""Tests for app/views/dropbox.py module."""
|
|
|
|
import json
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from app.models import UserIntegration
|
|
|
|
|
|
@pytest.mark.integration
|
|
class TestDropboxViews:
|
|
"""Tests for Dropbox view routes."""
|
|
|
|
def test_dropbox_setup_page(self, client):
|
|
"""Test the Dropbox setup page."""
|
|
response = client.get("/dropbox-setup")
|
|
assert response.status_code == 200
|
|
|
|
def test_dropbox_callback_no_code(self, client):
|
|
"""Test the Dropbox OAuth callback without code."""
|
|
response = client.get("/dropbox-callback", follow_redirects=False)
|
|
assert response.status_code == 200
|
|
|
|
def test_dropbox_callback_with_error(self, client):
|
|
"""Test the Dropbox OAuth callback with error."""
|
|
response = client.get("/dropbox-callback?error=access_denied")
|
|
assert response.status_code == 200
|
|
|
|
def test_dropbox_callback_with_code(self, client):
|
|
"""Test the Dropbox OAuth callback with auth code."""
|
|
response = client.get("/dropbox-callback?code=test_code")
|
|
assert response.status_code == 200
|
|
|
|
def test_dropbox_setup_page_with_integration_id(self, client):
|
|
"""Test the Dropbox setup page accepts integration_id query param."""
|
|
response = client.get("/dropbox-setup?integration_id=42")
|
|
assert response.status_code == 200
|
|
# The template should store the integration_id for per-user OAuth flow
|
|
assert b"oauth_integration_id" in response.content
|
|
assert b"42" in response.content
|
|
|
|
def test_dropbox_setup_page_without_integration_id(self, client):
|
|
"""Test the Dropbox setup page works without integration_id (global flow)."""
|
|
response = client.get("/dropbox-setup")
|
|
assert response.status_code == 200
|
|
# The template should not set integration_id when not provided
|
|
body = response.text
|
|
assert "oauth_integration_id" in body # The JS code is always present
|
|
# But integration_id template var should be empty
|
|
assert 'const integrationId = ""' in body
|
|
|
|
def test_dropbox_setup_user_mode_invalid_json_config(self, client, db_session):
|
|
"""Test user-mode renders correctly when integration.config is invalid JSON."""
|
|
owner_id = "user_invalid_json@example.com"
|
|
integration = UserIntegration(
|
|
owner_id=owner_id,
|
|
direction="DESTINATION",
|
|
integration_type="DROPBOX",
|
|
name="My Dropbox (bad cfg)",
|
|
config="{INVALID JSON}",
|
|
is_active=True,
|
|
)
|
|
db_session.add(integration)
|
|
db_session.commit()
|
|
db_session.refresh(integration)
|
|
|
|
with patch("app.views.dropbox.get_current_owner_id", return_value=owner_id):
|
|
response = client.get(f"/dropbox-setup?integration_id={integration.id}")
|
|
|
|
assert response.status_code == 200
|
|
# Should render user mode without errors despite the bad config
|
|
assert b"user_mode" not in response.content or b"Back to Integrations" in response.content
|
|
|
|
def test_dropbox_setup_user_mode_none_config(self, client, db_session):
|
|
"""Test user-mode renders correctly when integration.config is None (no folder path)."""
|
|
owner_id = "user_none_cfg@example.com"
|
|
integration = UserIntegration(
|
|
owner_id=owner_id,
|
|
direction="DESTINATION",
|
|
integration_type="DROPBOX",
|
|
name="My Dropbox (no cfg)",
|
|
config=None,
|
|
is_active=True,
|
|
)
|
|
db_session.add(integration)
|
|
db_session.commit()
|
|
db_session.refresh(integration)
|
|
|
|
with patch("app.views.dropbox.get_current_owner_id", return_value=owner_id):
|
|
response = client.get(f"/dropbox-setup?integration_id={integration.id}")
|
|
|
|
assert response.status_code == 200
|
|
# Should render user mode without errors, with empty folder_path
|
|
assert b"Back to Integrations" in response.content
|
|
|
|
def test_dropbox_setup_user_mode_watchfolder_config(self, client, db_session):
|
|
"""Test user-mode correctly loads folder_path from WATCH_FOLDER source config."""
|
|
owner_id = "user_wf_cfg@example.com"
|
|
integration = UserIntegration(
|
|
owner_id=owner_id,
|
|
direction="SOURCE",
|
|
integration_type="WATCH_FOLDER",
|
|
name="My Dropbox Watch",
|
|
config=json.dumps({"source_type": "dropbox", "folder_path": "/Inbox"}),
|
|
is_active=True,
|
|
)
|
|
db_session.add(integration)
|
|
db_session.commit()
|
|
db_session.refresh(integration)
|
|
|
|
with patch("app.views.dropbox.get_current_owner_id", return_value=owner_id):
|
|
response = client.get(f"/dropbox-setup?integration_id={integration.id}")
|
|
|
|
assert response.status_code == 200
|
|
assert b"/Inbox" in response.content
|
|
assert b"Back to Integrations" in response.content
|
|
|
|
def test_dropbox_setup_user_mode_integration_not_found(self, client, db_session):
|
|
"""Test user-mode falls back to admin mode when integration not owned by user."""
|
|
with patch("app.views.dropbox.get_current_owner_id", return_value="other_user@example.com"):
|
|
response = client.get("/dropbox-setup?integration_id=999999")
|
|
|
|
assert response.status_code == 200
|
|
# Falls back to admin mode (no "Back to Integrations" link)
|
|
assert b"Dropbox Integration Setup" in response.content
|
|
"""Test user-mode correctly loads folder path from integration config."""
|
|
owner_id = "user_valid_cfg@example.com"
|
|
integration = UserIntegration(
|
|
owner_id=owner_id,
|
|
direction="DESTINATION",
|
|
integration_type="DROPBOX",
|
|
name="My Dropbox",
|
|
config=json.dumps({"folder": "/Documents/Uploads"}),
|
|
is_active=True,
|
|
)
|
|
db_session.add(integration)
|
|
db_session.commit()
|
|
db_session.refresh(integration)
|
|
|
|
with patch("app.views.dropbox.get_current_owner_id", return_value=owner_id):
|
|
response = client.get(f"/dropbox-setup?integration_id={integration.id}")
|
|
|
|
assert response.status_code == 200
|
|
assert b"/Documents/Uploads" in response.content
|
|
assert b"Back to Integrations" in response.content
|
|
|
|
|
|
@pytest.mark.integration
|
|
class TestDropboxCallbackUrl:
|
|
"""Tests that the callback_url is correctly passed to templates."""
|
|
|
|
def test_setup_page_includes_callback_url(self, client):
|
|
"""Setup page should include the callback_url variable in its response."""
|
|
response = client.get("/dropbox-setup")
|
|
assert response.status_code == 200
|
|
# callback_url is embedded in the JS as the dropboxCallbackUrl constant
|
|
assert b"dropboxCallbackUrl" in response.content
|
|
|
|
def test_callback_page_includes_callback_url(self, client):
|
|
"""Callback page should embed the server-side callback URL."""
|
|
response = client.get("/dropbox-callback?code=testcode")
|
|
assert response.status_code == 200
|
|
# callback_url is used as the redirectUri
|
|
assert b"redirectUri" in response.content
|
|
|
|
def test_setup_page_uses_public_base_url_when_set(self, client):
|
|
"""When PUBLIC_BASE_URL is configured, it should appear in the redirect URI hint."""
|
|
with patch("app.views.dropbox.settings") as mock_settings:
|
|
mock_settings.public_base_url = "https://configured.example.com"
|
|
mock_settings.dropbox_app_key = ""
|
|
mock_settings.dropbox_app_secret = ""
|
|
mock_settings.dropbox_refresh_token = ""
|
|
mock_settings.dropbox_folder = ""
|
|
mock_settings.dropbox_allow_global_credentials_for_integrations = False
|
|
response = client.get("/dropbox-setup")
|
|
assert response.status_code == 200
|
|
# The configured public_base_url hostname must appear in the page (redirect URI display)
|
|
page_text = response.text
|
|
assert "configured.example.com/dropbox-callback" in page_text
|