Files
dify/api/tests/unit_tests/test_constants.py
蓝破碎半圆/破碎蓝调 ccfb47d2c5 feat: support ODT document extraction (#39973)
Co-authored-by: Crazywoola <100913391+crazywoola@users.noreply.github.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Asuka Minato <i@asukaminato.eu.org>
2026-08-20 13:23:03 +00:00

26 lines
934 B
Python

import importlib
import pytest
import constants
from configs import dify_config
@pytest.mark.parametrize("etl_type", ["SelfHosted", "Unstructured"])
def test_document_extensions_include_odt_for_document_etl_modes(monkeypatch: pytest.MonkeyPatch, etl_type: str) -> None:
original_etl_type = dify_config.ETL_TYPE
original_unstructured_api_url = dify_config.UNSTRUCTURED_API_URL
try:
monkeypatch.setattr(dify_config, "ETL_TYPE", etl_type)
monkeypatch.setattr(dify_config, "UNSTRUCTURED_API_URL", None)
reloaded_constants = importlib.reload(constants)
assert "odt" in reloaded_constants.DOCUMENT_EXTENSIONS
assert "ODT" in reloaded_constants.DOCUMENT_EXTENSIONS
finally:
monkeypatch.setattr(dify_config, "ETL_TYPE", original_etl_type)
monkeypatch.setattr(dify_config, "UNSTRUCTURED_API_URL", original_unstructured_api_url)
importlib.reload(constants)