mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
768848ab6f
## Summary
Adds experimental `additionalContext` support to `turn/start` and
`turn/steer` so clients can provide ephemeral external context, such as
browser or automation state, without turning that plumbing into a
visible user prompt or triggering user-prompt lifecycle behavior.
## API Shape
The parameter shape is:
```ts
additionalContext?: Record<string, {
value: string
kind: "untrusted" | "application"
}> | null
```
Example:
```json
{
"additionalContext": {
"browser_info": {
"value": "Active tab is CI failures.",
"kind": "untrusted"
},
"automation_info": {
"value": "CI rerun is in progress.",
"kind": "application"
}
}
}
```
The keys are opaque and caller-defined.
## Context Injection
When provided, accepted entries are inserted into model context as
hidden contextual message items, not as visible thread user-message
items.
`kind: "untrusted"` entries are inserted with role `user`:
```text
<external_${key}>${value}</external_${key}>
```
`kind: "application"` entries are inserted with role `developer`:
```text
<${key}>${value}</${key}>
```
Values are not escaped. Each value is truncated to 1k approximate tokens
before wrapping.
For `turn/start`, accepted additional context is inserted before normal
user input. For `turn/steer`, additional context is merged only when the
steer includes non-empty user input; context-only steers still reject as
empty input.
## Dedupe Strategy
`AdditionalContextStore` lives on session state and stores the latest
complete additional-context map.
Each `turn/start` or non-empty `turn/steer` treats its
`additionalContext` as the current complete set of values. Entries are
injected only when the key is new or the exact entry for that key
changed, including `value` or `kind`. After merging, the store is
replaced with the provided map, so omitted keys are removed from the
retained set and can be injected again later if reintroduced.
Omitting `additionalContext`, passing `null`, or passing an empty object
resets the store to empty and injects nothing.
## What Changed
- Threads experimental v2 `additionalContext` through app-server into
core turn start and steer handling.
- Adds separate contextual fragment types for untrusted user-role
context and application developer-role context.
- Uses pending response input items so additional context can be
combined with normal user input without treating it as prompt text.
- Adds integration coverage for start/steer flow, role routing,
dedupe/reset behavior, deletion/re-add behavior, hook-blocked input
behavior, empty context-only steer rejection, external-fragment marker
matching, and truncation.
570 lines
19 KiB
Rust
570 lines
19 KiB
Rust
#![cfg(not(target_os = "windows"))]
|
|
|
|
use std::fs;
|
|
|
|
use assert_matches::assert_matches;
|
|
use codex_protocol::items::TurnItem;
|
|
use codex_protocol::models::PermissionProfile;
|
|
use codex_protocol::plan_tool::StepStatus;
|
|
use codex_protocol::protocol::AskForApproval;
|
|
use codex_protocol::protocol::EventMsg;
|
|
use codex_protocol::protocol::Op;
|
|
use codex_protocol::user_input::UserInput;
|
|
use core_test_support::assert_regex_match;
|
|
use core_test_support::responses;
|
|
use core_test_support::responses::ResponsesRequest;
|
|
use core_test_support::responses::ev_apply_patch_custom_tool_call;
|
|
use core_test_support::responses::ev_assistant_message;
|
|
use core_test_support::responses::ev_completed;
|
|
use core_test_support::responses::ev_function_call;
|
|
use core_test_support::responses::ev_response_created;
|
|
use core_test_support::responses::sse;
|
|
use core_test_support::responses::start_mock_server;
|
|
use core_test_support::skip_if_no_network;
|
|
use core_test_support::test_codex::TestCodex;
|
|
use core_test_support::test_codex::test_codex;
|
|
use core_test_support::test_codex::turn_permission_fields;
|
|
use core_test_support::wait_for_event;
|
|
use serde_json::Value;
|
|
use serde_json::json;
|
|
fn call_output(req: &ResponsesRequest, call_id: &str) -> (String, Option<bool>) {
|
|
let raw = req.function_call_output(call_id);
|
|
assert_eq!(
|
|
raw.get("call_id").and_then(Value::as_str),
|
|
Some(call_id),
|
|
"mismatched call_id in function_call_output"
|
|
);
|
|
let (content_opt, success) = match req.function_call_output_content_and_success(call_id) {
|
|
Some(values) => values,
|
|
None => panic!("function_call_output present"),
|
|
};
|
|
let content = match content_opt {
|
|
Some(c) => c,
|
|
None => panic!("function_call_output content present"),
|
|
};
|
|
(content, success)
|
|
}
|
|
|
|
fn custom_call_output(req: &ResponsesRequest, call_id: &str) -> (String, Option<bool>) {
|
|
let raw = req.custom_tool_call_output(call_id);
|
|
assert_eq!(
|
|
raw.get("call_id").and_then(Value::as_str),
|
|
Some(call_id),
|
|
"mismatched call_id in custom_tool_call_output"
|
|
);
|
|
let (content_opt, success) = match req.custom_tool_call_output_content_and_success(call_id) {
|
|
Some(values) => values,
|
|
None => panic!("custom_tool_call_output present"),
|
|
};
|
|
let content = match content_opt {
|
|
Some(c) => c,
|
|
None => panic!("custom_tool_call_output content present"),
|
|
};
|
|
(content, success)
|
|
}
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
|
|
async fn shell_command_tool_executes_command_and_streams_output() -> anyhow::Result<()> {
|
|
skip_if_no_network!(Ok(()));
|
|
|
|
let server = start_mock_server().await;
|
|
|
|
let mut builder = test_codex().with_model("test-gpt-5-codex");
|
|
let TestCodex {
|
|
codex,
|
|
cwd,
|
|
session_configured,
|
|
..
|
|
} = builder.build(&server).await?;
|
|
|
|
let call_id = "shell-command-tool-call";
|
|
let command_args = json!({
|
|
"command": "echo tool harness",
|
|
"login": false,
|
|
})
|
|
.to_string();
|
|
let first_response = sse(vec![
|
|
ev_response_created("resp-1"),
|
|
ev_function_call(call_id, "shell_command", &command_args),
|
|
ev_completed("resp-1"),
|
|
]);
|
|
responses::mount_sse_once(&server, first_response).await;
|
|
|
|
let second_response = sse(vec![
|
|
ev_assistant_message("msg-1", "all done"),
|
|
ev_completed("resp-2"),
|
|
]);
|
|
let second_mock = responses::mount_sse_once(&server, second_response).await;
|
|
|
|
let session_model = session_configured.model.clone();
|
|
let cwd_path = cwd.path().to_path_buf();
|
|
let (sandbox_policy, permission_profile) =
|
|
turn_permission_fields(PermissionProfile::Disabled, cwd_path.as_path());
|
|
|
|
codex
|
|
.submit(Op::UserInput {
|
|
items: vec![UserInput::Text {
|
|
text: "please run the shell command".into(),
|
|
text_elements: Vec::new(),
|
|
}],
|
|
environments: None,
|
|
final_output_json_schema: None,
|
|
responsesapi_client_metadata: None,
|
|
additional_context: Default::default(),
|
|
thread_settings: codex_protocol::protocol::ThreadSettingsOverrides {
|
|
cwd: Some(cwd_path),
|
|
approval_policy: Some(AskForApproval::Never),
|
|
sandbox_policy: Some(sandbox_policy),
|
|
permission_profile,
|
|
collaboration_mode: Some(codex_protocol::config_types::CollaborationMode {
|
|
mode: codex_protocol::config_types::ModeKind::Default,
|
|
settings: codex_protocol::config_types::Settings {
|
|
model: session_model,
|
|
reasoning_effort: None,
|
|
developer_instructions: None,
|
|
},
|
|
}),
|
|
..Default::default()
|
|
},
|
|
})
|
|
.await?;
|
|
|
|
wait_for_event(&codex, |event| matches!(event, EventMsg::TurnComplete(_))).await;
|
|
|
|
let req = second_mock.single_request();
|
|
let (output_text, _) = call_output(&req, call_id);
|
|
assert_regex_match(
|
|
r"(?s)^Exit code: 0\nWall time: [0-9]+(?:\.[0-9]+)? seconds\nOutput:\ntool harness\n?$",
|
|
&output_text,
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
|
|
async fn update_plan_tool_emits_plan_update_event() -> anyhow::Result<()> {
|
|
skip_if_no_network!(Ok(()));
|
|
|
|
let server = start_mock_server().await;
|
|
|
|
let mut builder = test_codex();
|
|
let TestCodex {
|
|
codex,
|
|
cwd,
|
|
session_configured,
|
|
..
|
|
} = builder.build(&server).await?;
|
|
|
|
let call_id = "plan-tool-call";
|
|
let plan_args = json!({
|
|
"explanation": "Tool harness check",
|
|
"plan": [
|
|
{"step": "Inspect workspace", "status": "in_progress"},
|
|
{"step": "Report results", "status": "pending"},
|
|
],
|
|
})
|
|
.to_string();
|
|
|
|
let first_response = sse(vec![
|
|
ev_response_created("resp-1"),
|
|
ev_function_call(call_id, "update_plan", &plan_args),
|
|
ev_completed("resp-1"),
|
|
]);
|
|
responses::mount_sse_once(&server, first_response).await;
|
|
|
|
let second_response = sse(vec![
|
|
ev_assistant_message("msg-1", "plan acknowledged"),
|
|
ev_completed("resp-2"),
|
|
]);
|
|
let second_mock = responses::mount_sse_once(&server, second_response).await;
|
|
|
|
let session_model = session_configured.model.clone();
|
|
let cwd_path = cwd.path().to_path_buf();
|
|
let (sandbox_policy, permission_profile) =
|
|
turn_permission_fields(PermissionProfile::Disabled, cwd_path.as_path());
|
|
|
|
codex
|
|
.submit(Op::UserInput {
|
|
items: vec![UserInput::Text {
|
|
text: "please update the plan".into(),
|
|
text_elements: Vec::new(),
|
|
}],
|
|
environments: None,
|
|
final_output_json_schema: None,
|
|
responsesapi_client_metadata: None,
|
|
additional_context: Default::default(),
|
|
thread_settings: codex_protocol::protocol::ThreadSettingsOverrides {
|
|
cwd: Some(cwd_path),
|
|
approval_policy: Some(AskForApproval::Never),
|
|
sandbox_policy: Some(sandbox_policy),
|
|
permission_profile,
|
|
collaboration_mode: Some(codex_protocol::config_types::CollaborationMode {
|
|
mode: codex_protocol::config_types::ModeKind::Default,
|
|
settings: codex_protocol::config_types::Settings {
|
|
model: session_model,
|
|
reasoning_effort: None,
|
|
developer_instructions: None,
|
|
},
|
|
}),
|
|
..Default::default()
|
|
},
|
|
})
|
|
.await?;
|
|
|
|
let mut saw_plan_update = false;
|
|
wait_for_event(&codex, |event| match event {
|
|
EventMsg::PlanUpdate(update) => {
|
|
saw_plan_update = true;
|
|
assert_eq!(update.explanation.as_deref(), Some("Tool harness check"));
|
|
assert_eq!(update.plan.len(), 2);
|
|
assert_eq!(update.plan[0].step, "Inspect workspace");
|
|
assert_matches!(update.plan[0].status, StepStatus::InProgress);
|
|
assert_eq!(update.plan[1].step, "Report results");
|
|
assert_matches!(update.plan[1].status, StepStatus::Pending);
|
|
false
|
|
}
|
|
EventMsg::TurnComplete(_) => true,
|
|
_ => false,
|
|
})
|
|
.await;
|
|
|
|
assert!(saw_plan_update, "expected PlanUpdate event");
|
|
|
|
let req = second_mock.single_request();
|
|
let (output_text, _success_flag) = call_output(&req, call_id);
|
|
assert_eq!(output_text, "Plan updated");
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
|
|
async fn update_plan_tool_rejects_malformed_payload() -> anyhow::Result<()> {
|
|
skip_if_no_network!(Ok(()));
|
|
|
|
let server = start_mock_server().await;
|
|
|
|
let mut builder = test_codex();
|
|
let TestCodex {
|
|
codex,
|
|
cwd,
|
|
session_configured,
|
|
..
|
|
} = builder.build(&server).await?;
|
|
|
|
let call_id = "plan-tool-invalid";
|
|
let invalid_args = json!({
|
|
"explanation": "Missing plan data"
|
|
})
|
|
.to_string();
|
|
|
|
let first_response = sse(vec![
|
|
ev_response_created("resp-1"),
|
|
ev_function_call(call_id, "update_plan", &invalid_args),
|
|
ev_completed("resp-1"),
|
|
]);
|
|
responses::mount_sse_once(&server, first_response).await;
|
|
|
|
let second_response = sse(vec![
|
|
ev_assistant_message("msg-1", "malformed plan payload"),
|
|
ev_completed("resp-2"),
|
|
]);
|
|
let second_mock = responses::mount_sse_once(&server, second_response).await;
|
|
|
|
let session_model = session_configured.model.clone();
|
|
let cwd_path = cwd.path().to_path_buf();
|
|
let (sandbox_policy, permission_profile) =
|
|
turn_permission_fields(PermissionProfile::Disabled, cwd_path.as_path());
|
|
|
|
codex
|
|
.submit(Op::UserInput {
|
|
items: vec![UserInput::Text {
|
|
text: "please update the plan".into(),
|
|
text_elements: Vec::new(),
|
|
}],
|
|
environments: None,
|
|
final_output_json_schema: None,
|
|
responsesapi_client_metadata: None,
|
|
additional_context: Default::default(),
|
|
thread_settings: codex_protocol::protocol::ThreadSettingsOverrides {
|
|
cwd: Some(cwd_path),
|
|
approval_policy: Some(AskForApproval::Never),
|
|
sandbox_policy: Some(sandbox_policy),
|
|
permission_profile,
|
|
collaboration_mode: Some(codex_protocol::config_types::CollaborationMode {
|
|
mode: codex_protocol::config_types::ModeKind::Default,
|
|
settings: codex_protocol::config_types::Settings {
|
|
model: session_model,
|
|
reasoning_effort: None,
|
|
developer_instructions: None,
|
|
},
|
|
}),
|
|
..Default::default()
|
|
},
|
|
})
|
|
.await?;
|
|
|
|
let mut saw_plan_update = false;
|
|
wait_for_event(&codex, |event| match event {
|
|
EventMsg::PlanUpdate(_) => {
|
|
saw_plan_update = true;
|
|
false
|
|
}
|
|
EventMsg::TurnComplete(_) => true,
|
|
_ => false,
|
|
})
|
|
.await;
|
|
|
|
assert!(
|
|
!saw_plan_update,
|
|
"did not expect PlanUpdate event for malformed payload"
|
|
);
|
|
|
|
let req = second_mock.single_request();
|
|
let (output_text, success_flag) = call_output(&req, call_id);
|
|
assert!(
|
|
output_text.contains("failed to parse function arguments"),
|
|
"expected parse error message in output text, got {output_text:?}"
|
|
);
|
|
if let Some(success_flag) = success_flag {
|
|
assert!(
|
|
!success_flag,
|
|
"expected tool output to mark success=false for malformed payload"
|
|
);
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
|
|
async fn apply_patch_tool_executes_and_emits_patch_events() -> anyhow::Result<()> {
|
|
skip_if_no_network!(Ok(()));
|
|
|
|
let server = start_mock_server().await;
|
|
|
|
let mut builder = test_codex();
|
|
let TestCodex {
|
|
codex,
|
|
cwd,
|
|
session_configured,
|
|
..
|
|
} = builder.build(&server).await?;
|
|
|
|
let file_name = "notes.txt";
|
|
let file_path = cwd.path().join(file_name);
|
|
let call_id = "apply-patch-call";
|
|
let patch_content = format!(
|
|
r#"*** Begin Patch
|
|
*** Add File: {file_name}
|
|
+Tool harness apply patch
|
|
*** End Patch"#
|
|
);
|
|
|
|
let first_response = sse(vec![
|
|
ev_response_created("resp-1"),
|
|
ev_apply_patch_custom_tool_call(call_id, &patch_content),
|
|
ev_completed("resp-1"),
|
|
]);
|
|
responses::mount_sse_once(&server, first_response).await;
|
|
|
|
let second_response = sse(vec![
|
|
ev_assistant_message("msg-1", "patch complete"),
|
|
ev_completed("resp-2"),
|
|
]);
|
|
let second_mock = responses::mount_sse_once(&server, second_response).await;
|
|
|
|
let session_model = session_configured.model.clone();
|
|
let cwd_path = cwd.path().to_path_buf();
|
|
let (sandbox_policy, permission_profile) =
|
|
turn_permission_fields(PermissionProfile::Disabled, cwd_path.as_path());
|
|
|
|
codex
|
|
.submit(Op::UserInput {
|
|
items: vec![UserInput::Text {
|
|
text: "please apply a patch".into(),
|
|
text_elements: Vec::new(),
|
|
}],
|
|
environments: None,
|
|
final_output_json_schema: None,
|
|
responsesapi_client_metadata: None,
|
|
additional_context: Default::default(),
|
|
thread_settings: codex_protocol::protocol::ThreadSettingsOverrides {
|
|
cwd: Some(cwd_path),
|
|
approval_policy: Some(AskForApproval::Never),
|
|
sandbox_policy: Some(sandbox_policy),
|
|
permission_profile,
|
|
collaboration_mode: Some(codex_protocol::config_types::CollaborationMode {
|
|
mode: codex_protocol::config_types::ModeKind::Default,
|
|
settings: codex_protocol::config_types::Settings {
|
|
model: session_model,
|
|
reasoning_effort: None,
|
|
developer_instructions: None,
|
|
},
|
|
}),
|
|
..Default::default()
|
|
},
|
|
})
|
|
.await?;
|
|
|
|
let mut saw_file_change_started = false;
|
|
let mut saw_file_change_completed = false;
|
|
let mut saw_patch_begin = false;
|
|
let mut patch_end_success = None;
|
|
wait_for_event(&codex, |event| match event {
|
|
EventMsg::ItemStarted(started) => {
|
|
if let TurnItem::FileChange(item) = &started.item {
|
|
saw_file_change_started = true;
|
|
assert_eq!(item.id, call_id);
|
|
assert_eq!(item.status, None);
|
|
}
|
|
false
|
|
}
|
|
EventMsg::ItemCompleted(completed) => {
|
|
if let TurnItem::FileChange(item) = &completed.item {
|
|
saw_file_change_completed = true;
|
|
assert_eq!(item.id, call_id);
|
|
assert_eq!(
|
|
item.status,
|
|
Some(codex_protocol::protocol::PatchApplyStatus::Completed)
|
|
);
|
|
}
|
|
false
|
|
}
|
|
EventMsg::PatchApplyBegin(begin) => {
|
|
saw_patch_begin = true;
|
|
assert_eq!(begin.call_id, call_id);
|
|
false
|
|
}
|
|
EventMsg::PatchApplyEnd(end) => {
|
|
assert_eq!(end.call_id, call_id);
|
|
patch_end_success = Some(end.success);
|
|
false
|
|
}
|
|
EventMsg::TurnComplete(_) => true,
|
|
_ => false,
|
|
})
|
|
.await;
|
|
|
|
assert!(
|
|
saw_file_change_started,
|
|
"expected ItemStarted for TurnItem::FileChange"
|
|
);
|
|
assert!(
|
|
saw_file_change_completed,
|
|
"expected ItemCompleted for TurnItem::FileChange"
|
|
);
|
|
assert!(saw_patch_begin, "expected PatchApplyBegin event");
|
|
let patch_end_success =
|
|
patch_end_success.expect("expected PatchApplyEnd event to capture success flag");
|
|
assert!(patch_end_success);
|
|
|
|
let req = second_mock.single_request();
|
|
let (output_text, _success_flag) = custom_call_output(&req, call_id);
|
|
|
|
let expected_pattern = format!(
|
|
r"(?s)^Exit code: 0
|
|
Wall time: [0-9]+(?:\.[0-9]+)? seconds
|
|
Output:
|
|
Success. Updated the following files:
|
|
A {file_name}
|
|
?$"
|
|
);
|
|
assert_regex_match(&expected_pattern, &output_text);
|
|
|
|
let updated_contents = fs::read_to_string(file_path)?;
|
|
assert_eq!(
|
|
updated_contents, "Tool harness apply patch\n",
|
|
"expected updated file content"
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
|
|
async fn apply_patch_reports_parse_diagnostics() -> anyhow::Result<()> {
|
|
skip_if_no_network!(Ok(()));
|
|
|
|
let server = start_mock_server().await;
|
|
|
|
let mut builder = test_codex();
|
|
let TestCodex {
|
|
codex,
|
|
cwd,
|
|
session_configured,
|
|
..
|
|
} = builder.build(&server).await?;
|
|
|
|
let call_id = "apply-patch-parse-error";
|
|
let patch_content = r"*** Begin Patch
|
|
*** Update File: broken.txt
|
|
*** End Patch";
|
|
|
|
let first_response = sse(vec![
|
|
ev_response_created("resp-1"),
|
|
ev_apply_patch_custom_tool_call(call_id, patch_content),
|
|
ev_completed("resp-1"),
|
|
]);
|
|
responses::mount_sse_once(&server, first_response).await;
|
|
|
|
let second_response = sse(vec![
|
|
ev_assistant_message("msg-1", "failed"),
|
|
ev_completed("resp-2"),
|
|
]);
|
|
let second_mock = responses::mount_sse_once(&server, second_response).await;
|
|
|
|
let session_model = session_configured.model.clone();
|
|
let cwd_path = cwd.path().to_path_buf();
|
|
let (sandbox_policy, permission_profile) =
|
|
turn_permission_fields(PermissionProfile::Disabled, cwd_path.as_path());
|
|
|
|
codex
|
|
.submit(Op::UserInput {
|
|
items: vec![UserInput::Text {
|
|
text: "please apply a patch".into(),
|
|
text_elements: Vec::new(),
|
|
}],
|
|
environments: None,
|
|
final_output_json_schema: None,
|
|
responsesapi_client_metadata: None,
|
|
additional_context: Default::default(),
|
|
thread_settings: codex_protocol::protocol::ThreadSettingsOverrides {
|
|
cwd: Some(cwd_path),
|
|
approval_policy: Some(AskForApproval::Never),
|
|
sandbox_policy: Some(sandbox_policy),
|
|
permission_profile,
|
|
collaboration_mode: Some(codex_protocol::config_types::CollaborationMode {
|
|
mode: codex_protocol::config_types::ModeKind::Default,
|
|
settings: codex_protocol::config_types::Settings {
|
|
model: session_model,
|
|
reasoning_effort: None,
|
|
developer_instructions: None,
|
|
},
|
|
}),
|
|
..Default::default()
|
|
},
|
|
})
|
|
.await?;
|
|
|
|
wait_for_event(&codex, |event| matches!(event, EventMsg::TurnComplete(_))).await;
|
|
|
|
let req = second_mock.single_request();
|
|
let (output_text, success_flag) = custom_call_output(&req, call_id);
|
|
|
|
assert!(
|
|
output_text.contains("apply_patch verification failed"),
|
|
"expected apply_patch verification failure message, got {output_text:?}"
|
|
);
|
|
assert!(
|
|
output_text.contains("invalid hunk"),
|
|
"expected parse diagnostics in output text, got {output_text:?}"
|
|
);
|
|
|
|
if let Some(success_flag) = success_flag {
|
|
assert!(
|
|
!success_flag,
|
|
"expected tool output to mark success=false for parse failures"
|
|
);
|
|
}
|
|
|
|
Ok(())
|
|
}
|