mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
- Add 104 comprehensive tests for agent system - Integrate agent tests into CI/CD pipeline - Standardize tests with @pytest.mark.unit markers - Fix cross-platform path compatibility - Clean up unused imports and dependencies
24 lines
892 B
Python
24 lines
892 B
Python
import pytest
|
|
from application.api.answer import answer
|
|
from application.api.internal.routes import internal
|
|
from application.api.user.routes import user
|
|
from application.core.settings import settings
|
|
from flask import Flask
|
|
|
|
|
|
@pytest.mark.unit
|
|
def test_app_config():
|
|
app = Flask(__name__)
|
|
app.register_blueprint(user)
|
|
app.register_blueprint(answer)
|
|
app.register_blueprint(internal)
|
|
app.config["UPLOAD_FOLDER"] = "inputs"
|
|
app.config["CELERY_BROKER_URL"] = settings.CELERY_BROKER_URL
|
|
app.config["CELERY_RESULT_BACKEND"] = settings.CELERY_RESULT_BACKEND
|
|
app.config["MONGO_URI"] = settings.MONGO_URI
|
|
|
|
assert app.config["UPLOAD_FOLDER"] == "inputs"
|
|
assert app.config["CELERY_BROKER_URL"] == settings.CELERY_BROKER_URL
|
|
assert app.config["CELERY_RESULT_BACKEND"] == settings.CELERY_RESULT_BACKEND
|
|
assert app.config["MONGO_URI"] == settings.MONGO_URI
|