Files
wehub-resource-sync fed8b2eed7
Build and push multi-arch DocsGPT Docker image / build (linux/amd64, ubuntu-latest, amd64) (push) Has been cancelled
Backend release / release (push) Has been cancelled
Bandit Security Scan / bandit_scan (push) Has been cancelled
Build and push multi-arch DocsGPT Docker image / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Has been cancelled
Build and push multi-arch DocsGPT Docker image / manifest (push) Has been cancelled
Build and push DocsGPT FE Docker image for development / build (linux/amd64, ubuntu-latest, amd64) (push) Has been cancelled
Build and push DocsGPT FE Docker image for development / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Has been cancelled
Build and push DocsGPT FE Docker image for development / manifest (push) Has been cancelled
Python linting / ruff (push) Has been cancelled
Run python tests with pytest / Run tests and count coverage (3.12) (push) Has been cancelled
React Widget Build / build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:28:29 +08:00

107 lines
2.7 KiB
Python

"""API-specific test fixtures."""
import uuid
import pytest
@pytest.fixture
def auth_headers():
return {"Authorization": "Bearer test_token"}
@pytest.fixture
def mock_request_token(monkeypatch, decoded_token):
def mock_decorator(f):
def wrapper(*args, **kwargs):
from flask import request
request.decoded_token = decoded_token
return f(*args, **kwargs)
return wrapper
monkeypatch.setattr("application.auth.api_key_required", lambda: mock_decorator)
return decoded_token
@pytest.fixture
def sample_conversation():
return {
"_id": uuid.uuid4().hex[:24],
"user": "test_user",
"name": "Test Conversation",
"queries": [
{
"prompt": "What is Python?",
"response": "Python is a programming language",
}
],
"date": "2025-01-01T00:00:00",
}
@pytest.fixture
def sample_prompt():
return {
"_id": uuid.uuid4().hex[:24],
"user": "test_user",
"name": "Helpful Assistant",
"content": "You are a helpful assistant that provides clear and concise answers.",
"type": "custom",
}
@pytest.fixture
def sample_agent():
return {
"_id": uuid.uuid4().hex[:24],
"user": "test_user",
"name": "Test Agent",
"type": "classic",
"endpoint": "openai",
"model": "gpt-4",
"prompt_id": "default",
"status": "active",
}
@pytest.fixture
def sample_answer_request():
return {
"question": "What is Python?",
"history": [],
"conversation_id": None,
"prompt_id": "default",
"chunks": 2,
"retriever": "classic_rag",
"active_docs": "local/test/",
"isNoneDoc": False,
"save_conversation": True,
}
@pytest.fixture
def flask_app():
from flask import Flask
app = Flask(__name__)
return app
@pytest.fixture
def mock_mongo_db():
"""Compatibility shim for tests written against the old mongomock fixture.
The canonical ``mock_mongo_db`` fixture was removed when the answer pipeline
moved from Mongo to Postgres (see tests/conftest.py docstring). Most API
tests that still request it only do so as a historical gate: they patch
specific mongo collections (``agents_collection``, etc.) via
``unittest.mock.patch`` inside the test body and never touch the fixture's
return value. Yielding ``None`` keeps those tests runnable without
reintroducing mongomock. Tests that actually need a working Mongo client
(e.g. ones that call ``MongoDB.get_client()``) will still fail; skip or
rewrite those per-case rather than reviving a global fake.
"""
yield None