mirror of
https://github.com/nesquena/hermes-webui.git
synced 2026-05-23 19:00:14 +00:00
45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
from pathlib import Path
|
|
|
|
|
|
ROOT = Path(__file__).resolve().parents[1]
|
|
|
|
|
|
def read(path):
|
|
return (ROOT / path).read_text(encoding="utf-8")
|
|
|
|
|
|
def test_session_new_route_accepts_worktree_flag_and_uses_worktree_info():
|
|
src = read("api/routes.py")
|
|
assert "create_worktree_for_workspace" in src
|
|
assert 'body.get("worktree")' in src or "body.get('worktree')" in src
|
|
assert "worktree_info=" in src
|
|
|
|
|
|
def test_new_session_request_can_include_worktree_flag():
|
|
src = read("static/sessions.js")
|
|
assert "async function newSession(flash, options={})" in src
|
|
assert "reqBody.worktree=true" in src
|
|
|
|
|
|
def test_workspace_dropdown_exposes_new_worktree_conversation_action():
|
|
src = read("static/panels.js")
|
|
assert "workspace_new_worktree_conversation" in src
|
|
assert "workspace_new_worktree_conversation_meta" in src
|
|
assert "newSession(false,{worktree:true})" in src
|
|
assert "li('git-branch',12)" in src
|
|
|
|
|
|
def test_session_sidebar_renders_worktree_indicator():
|
|
src = read("static/sessions.js")
|
|
assert "session-worktree-indicator" in src
|
|
assert "s.worktree_path" in src
|
|
assert "s.worktree_branch" in src
|
|
|
|
|
|
def test_worktree_indicator_styles_and_i18n_exist():
|
|
css = read("static/style.css")
|
|
i18n = read("static/i18n.js")
|
|
assert ".session-worktree-indicator" in css
|
|
assert "workspace_new_worktree_conversation" in i18n
|
|
assert "session_worktree_badge" in i18n
|