## Summary - match the exec-process structure to filesystem PR #15232 - expose `ExecProcess` on `Environment` - make `LocalProcess` the real implementation and `RemoteProcess` a thin network proxy over `ExecServerClient` - make `ProcessHandler` a thin RPC adapter delegating to `LocalProcess` - add a shared local/remote process test ## Validation - `just fmt` - `CARGO_TARGET_DIR=~/.cache/cargo-target/codex cargo test -p codex-exec-server` - `just fix -p codex-exec-server` --------- Co-authored-by: Codex <noreply@openai.com>
87 lines
2.3 KiB
Rust
87 lines
2.3 KiB
Rust
#![cfg(unix)]
|
|
|
|
mod common;
|
|
|
|
use std::sync::Arc;
|
|
|
|
use anyhow::Result;
|
|
use codex_exec_server::Environment;
|
|
use codex_exec_server::ExecParams;
|
|
use codex_exec_server::ExecProcess;
|
|
use codex_exec_server::ExecResponse;
|
|
use codex_exec_server::ReadParams;
|
|
use pretty_assertions::assert_eq;
|
|
use test_case::test_case;
|
|
|
|
use common::exec_server::ExecServerHarness;
|
|
use common::exec_server::exec_server;
|
|
|
|
struct ProcessContext {
|
|
process: Arc<dyn ExecProcess>,
|
|
_server: Option<ExecServerHarness>,
|
|
}
|
|
|
|
async fn create_process_context(use_remote: bool) -> Result<ProcessContext> {
|
|
if use_remote {
|
|
let server = exec_server().await?;
|
|
let environment = Environment::create(Some(server.websocket_url().to_string())).await?;
|
|
Ok(ProcessContext {
|
|
process: environment.get_executor(),
|
|
_server: Some(server),
|
|
})
|
|
} else {
|
|
let environment = Environment::create(None).await?;
|
|
Ok(ProcessContext {
|
|
process: environment.get_executor(),
|
|
_server: None,
|
|
})
|
|
}
|
|
}
|
|
|
|
async fn assert_exec_process_starts_and_exits(use_remote: bool) -> Result<()> {
|
|
let context = create_process_context(use_remote).await?;
|
|
let response = context
|
|
.process
|
|
.start(ExecParams {
|
|
process_id: "proc-1".to_string(),
|
|
argv: vec!["true".to_string()],
|
|
cwd: std::env::current_dir()?,
|
|
env: Default::default(),
|
|
tty: false,
|
|
arg0: None,
|
|
})
|
|
.await?;
|
|
assert_eq!(
|
|
response,
|
|
ExecResponse {
|
|
process_id: "proc-1".to_string(),
|
|
}
|
|
);
|
|
|
|
let mut next_seq = 0;
|
|
loop {
|
|
let read = context
|
|
.process
|
|
.read(ReadParams {
|
|
process_id: "proc-1".to_string(),
|
|
after_seq: Some(next_seq),
|
|
max_bytes: None,
|
|
wait_ms: Some(100),
|
|
})
|
|
.await?;
|
|
next_seq = read.next_seq;
|
|
if read.exited {
|
|
assert_eq!(read.exit_code, Some(0));
|
|
break;
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test_case(false ; "local")]
|
|
#[test_case(true ; "remote")]
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
|
|
async fn exec_process_starts_and_exits(use_remote: bool) -> Result<()> {
|
|
assert_exec_process_starts_and_exits(use_remote).await
|
|
}
|