Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
@@ -0,0 +1,38 @@
"""Tests for TUI gateway slash_worker profile_home propagation (#40677)."""
from pathlib import Path
from unittest.mock import MagicMock, patch
def test_slash_worker_accepts_profile_home():
"""_SlashWorker.__init__ accepts profile_home parameter."""
# hermes_state evaluates get_hermes_home() / "state.db" at import time, so
# the mock must return a Path (a bare str raises TypeError under per-file
# subprocess isolation).
with patch.dict("sys.modules", {
"hermes_constants": MagicMock(
get_hermes_home=MagicMock(return_value=Path("/tmp/hermes_test")),
),
}):
with patch("subprocess.Popen") as mock_popen:
mock_popen.return_value.stdout = MagicMock()
mock_popen.return_value.stderr = MagicMock()
from tui_gateway.server import _SlashWorker
# Test initialization with profile_home
worker = _SlashWorker(
session_key="test_key",
model="test-model",
profile_home="/home/luke/.hermes/profiles/work"
)
# Verify Popen was called
assert mock_popen.called
# Check that HERMES_HOME was set in the environment
call_kwargs = mock_popen.call_args[1]
assert "env" in call_kwargs
assert call_kwargs["env"]["HERMES_HOME"] == "/home/luke/.hermes/profiles/work"