fix: open install guide deeplinks via external app gateway

This commit is contained in:
3252a8
2026-05-23 23:07:42 +03:00
parent 0eeabc7b3a
commit 5918a6cc71
9 changed files with 378 additions and 24 deletions
+24
View File
@@ -33,3 +33,27 @@ def test_logout_handler_is_noop_inside_telegram_mini_app():
mark_logout_pos = source.index("markManualLogout();")
assert guard_pos < mark_logout_pos
def test_open_app_route_skips_bootstrap_and_auth_flow():
main_source = _read("frontend/src/main.js")
app_source = _read("frontend/src/App.svelte")
assert "skipBootstrap = isExternalAppLaunchPath(window.location.pathname)" in main_source
assert 'mode = isAppLaunchRoute ? "appLaunch"' in app_source
launch_guard_pos = app_source.index("if (isAppLaunchRoute) {")
boot_pos = app_source.index("boot();", launch_guard_pos)
assert launch_guard_pos < boot_pos
def test_frontend_nginx_proxies_open_app_gateway_to_backend():
source = _read("deploy/docker/frontend/nginx.conf")
open_app_pos = source.index("location = /open-app")
fallback_pos = source.index("location / {")
block = source[open_app_pos:fallback_pos]
assert open_app_pos < fallback_pos
assert "proxy_pass http://backend:8081;" in block