Merge pull request 'fix: update runtime context test for system prompt inclusion' (#24) from fix/runtime-context-test into main
Build Nanobot OAuth / build (push) Failing after 54s
Build Nanobot OAuth / cleanup (push) Has been skipped

This commit was merged in pull request #24.
This commit is contained in:
2026-03-05 17:16:48 +01:00
+6 -10
View File
@@ -40,7 +40,7 @@ def test_system_prompt_stays_stable_when_clock_changes(tmp_path, monkeypatch) ->
def test_runtime_context_is_separate_untrusted_user_message(tmp_path) -> None:
"""Runtime metadata should be a separate user message before the actual user message."""
"""Runtime metadata should be included in the system prompt."""
workspace = _make_workspace(tmp_path)
builder = ContextBuilder(workspace)
@@ -51,16 +51,12 @@ def test_runtime_context_is_separate_untrusted_user_message(tmp_path) -> None:
chat_id="direct",
)
# Runtime context should be in the system prompt
assert messages[0]["role"] == "system"
assert "## Current Session" not in messages[0]["content"]
assert messages[-2]["role"] == "user"
runtime_content = messages[-2]["content"]
assert isinstance(runtime_content, str)
assert ContextBuilder._RUNTIME_CONTEXT_TAG in runtime_content
assert "Current Time:" in runtime_content
assert "Channel: cli" in runtime_content
assert "Chat ID: direct" in runtime_content
assert "## Current Session" in messages[0]["content"]
assert "Channel: cli" in messages[0]["content"]
assert "Chat ID: direct" in messages[0]["content"]
# The actual user message should be the last message
assert messages[-1]["role"] == "user"
assert messages[-1]["content"] == "Return exactly: OK"