mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-08-08 13:58:38 +00:00
* docs: design frontend performance remediation * docs: plan frontend performance remediation * test(frontend): add route asset performance budgets * perf(nginx): compress textual responses safely * perf(frontend): lazy load case study media * perf(frontend): bound static demo file tracing * perf(frontend): restore static locale boundaries * perf(frontend): defer closed workspace panels * perf(frontend): split editors and deduplicate highlighting * perf(frontend): index incremental message derivation * perf(frontend): stabilize paged history cache policy * perf(frontend): bound streaming markdown renders * perf(frontend): virtualize message history * perf(frontend): bound and virtualize chat lists * perf(frontend): suspend inactive decorative animation * perf(browser): stream latest frames as binary * perf(artifacts): stream bounded text previews * docs: finalize performance runtime boundaries * style(backend): apply test formatting * fix(frontend): keep translation functions client-side * perf(frontend): defer decorative animation bundles * test(frontend): lock optimized route budgets * fix: harden frontend performance boundaries * test(frontend): update i18n provider fixture * fix(frontend): preserve sidebar pagination position * style(backend): format artifact range test
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
REPO_ROOT = Path(__file__).resolve().parents[2]
|
|
CONFIGS = (
|
|
REPO_ROOT / "docker/nginx/nginx.conf",
|
|
REPO_ROOT / "docker/nginx/nginx.local.conf",
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize("config_path", CONFIGS, ids=lambda path: path.name)
|
|
def test_nginx_compresses_only_safe_textual_responses(config_path: Path) -> None:
|
|
config = config_path.read_text(encoding="utf-8")
|
|
|
|
assert "gzip on;" in config
|
|
assert "gzip_vary on;" in config
|
|
assert "gzip_proxied any;" in config
|
|
assert "gzip_min_length 1024;" in config
|
|
assert "gzip_comp_level 5;" in config
|
|
|
|
gzip_types = config.split("gzip_types", 1)[1].split(";", 1)[0].split()
|
|
assert gzip_types == [
|
|
"text/css",
|
|
"text/javascript",
|
|
"application/javascript",
|
|
"application/json",
|
|
"application/xml",
|
|
"image/svg+xml",
|
|
]
|
|
assert "text/event-stream" not in gzip_types
|
|
assert not any(content_type.startswith(("font/", "audio/", "video/")) for content_type in gzip_types)
|