Files
Kigi-CLI/crates/codegen/kigi-test-support/src/headless.rs
T
ZacharyZhang-NY 6f31415ed6 §9 acceptance: grep-zero sweep — every internal x.ai/grok identifier renamed
The PRD's first acceptance gate now holds: grep -RinE '\bx\.ai\b|grok'
crates/ --include='*.rs' → 0 matches (exempt: NOTICE and third-party
license archives, README provenance, and the required 'Based on Grok
Build Open Source' attribution, now sourced from version_attribution.txt).

Wire-visible renames (both sides in this repo, changed in lockstep):
- Auth method id 'grok.com' → 'kimi-code' (AuthMethodKind::KimiCode).
- Every x.ai/* and _x.ai/* ACP ext method and meta key → kigi/* /
  _kigi/* (~200 names; grokShell → kigiShell). Session-file replay keeps
  a read-side alias for the legacy '_x.ai/session/update' method so
  existing updates.jsonl histories load; writes emit only the new name
  (both directions test-pinned).
- Agent types grok-build* → kigi* with a documented legacy-prefix alias
  at resolution time so persisted sessions keep resolving.
- ToolNamespace/BuiltinAgentName GrokBuild* → Kigi* (wire snake_case
  kigi/kigi_concise/kigi_hashline; schema regenerated); grok_build
  implementation dirs renamed to kigi*.
- x-grok-* headers → x-kigi-*, __GROK_* sentinels → __KIGI_*, themes
  grokday/groknight → kigiday/kiginight (old persisted values fall back
  to the default theme), web_fetch allowlist xAI hosts → kimi.com +
  moonshot platforms, changelog CDN → this repo, grok-build changelog
  archives deleted.
- BYOK default endpoint removed: [endpoints] api_base_url is now truly
  optional with NO default — consumers fail fast with the flag name when
  unset (no silent x.ai egress). Mock harnesses inject it explicitly.
- System-prompt identity fixed: 'released by xAI' → 'an unofficial
  community CLI for Kimi' (template + regenerated encrypted form).

Also repaired pre-existing grok-era test debt found by the sweep: the
stale trace_classify default-model pin, the grok-pager UA label test,
pty-harness stale-binary reuse and non-hermetic moonshot routing (a PTY
test could previously reach the real api.moonshot.cn), and the outdated
oauth fixture scope key.

Gates: §9 grep 0; fmt clean; workspace check/clippy 0/0 (-D warnings);
FULL cargo test --workspace: 234 suites, 21,961 passed, 0 failed;
deny advisories ok.
2026-07-18 02:48:46 -04:00

155 lines
4.8 KiB
Rust

//! Headless mode (`kigi -p`) test runner.
//!
//! Runs the kigi binary as a subprocess with the mock server, captures output.
use std::path::Path;
use std::process::ExitStatus;
use std::time::Duration;
use tempfile::TempDir;
use tokio::io::AsyncReadExt as _;
use crate::env::{kigi_binary, test_env_cmd_tokio};
use crate::mock_server::MockInferenceServer;
pub struct HeadlessResult {
pub status: ExitStatus,
pub stdout: String,
pub stderr: String,
pub timed_out: bool,
}
const HEADLESS_TIMEOUT_SECS: u64 = 60;
/// Run `kigi` with the given args against the mock server, with a 60s timeout.
/// Uses an isolated HOME and disables telemetry.
pub async fn run_headless(
server: &MockInferenceServer,
args: &[&str],
cwd: &Path,
) -> HeadlessResult {
let home = TempDir::new().expect("create temp home");
let mut cmd = tokio::process::Command::new(kigi_binary());
cmd.args(args)
.current_dir(cwd)
.stdin(std::process::Stdio::null())
.stdout(std::process::Stdio::piped())
.stderr(std::process::Stdio::piped())
.kill_on_drop(true);
test_env_cmd_tokio(&mut cmd, &server.url(), home.path());
run_headless_with_cmd(cmd).await
}
pub async fn run_headless_with_cmd(mut cmd: tokio::process::Command) -> HeadlessResult {
let binary = kigi_binary();
let mut child = cmd
.spawn()
.unwrap_or_else(|e| panic!("failed to spawn kigi binary at {}: {e}", binary.display()));
let stdout = child.stdout.take().expect("child stdout missing");
let stderr = child.stderr.take().expect("child stderr missing");
let stdout_handle = tokio::spawn(async move {
let mut stdout = stdout;
let mut stdout_buf = Vec::new();
stdout.read_to_end(&mut stdout_buf).await?;
Ok::<Vec<u8>, std::io::Error>(stdout_buf)
});
let stderr_handle = tokio::spawn(async move {
let mut stderr = stderr;
let mut stderr_buf = Vec::new();
stderr.read_to_end(&mut stderr_buf).await?;
Ok::<Vec<u8>, std::io::Error>(stderr_buf)
});
let (status, timed_out) = match tokio::time::timeout(
Duration::from_secs(HEADLESS_TIMEOUT_SECS),
child.wait(),
)
.await
{
Ok(result) => (
result.unwrap_or_else(|e| {
panic!("failed to wait for kigi binary {}: {e}", binary.display())
}),
false,
),
Err(_) => {
let _ = child.kill().await;
let status = child.wait().await.unwrap_or_else(|e| {
panic!(
"failed to kill timed out kigi binary {}: {e}",
binary.display()
)
});
(status, true)
}
};
let stdout_bytes = match stdout_handle.await {
Ok(Ok(bytes)) => bytes,
Ok(Err(err)) => panic!("failed to read stdout from {}: {err}", binary.display()),
Err(err) => panic!("stdout task join failed for {}: {err}", binary.display()),
};
let stderr_bytes = match stderr_handle.await {
Ok(Ok(bytes)) => bytes,
Ok(Err(err)) => panic!("failed to read stderr from {}: {err}", binary.display()),
Err(err) => panic!("stderr task join failed for {}: {err}", binary.display()),
};
HeadlessResult {
status,
stdout: String::from_utf8_lossy(&stdout_bytes).into_owned(),
stderr: String::from_utf8_lossy(&stderr_bytes).into_owned(),
timed_out,
}
}
const CRASH_PATTERNS: &[&str] = &[
"panicked at",
"SIGSEGV",
"segfault",
"undefined symbol",
"SIGABRT",
"cannot open shared object",
];
/// Diagnostic helper: format the tail of stderr for assertion messages.
pub fn stderr_tail(stderr: &str, max_chars: usize) -> &str {
&stderr[stderr.len().saturating_sub(max_chars)..]
}
/// Assert that a headless run succeeded (non-timeout, zero exit code).
pub fn assert_headless_success(
result: &HeadlessResult,
label: &str,
server: Option<&MockInferenceServer>,
) {
assert!(
!result.timed_out,
"{label}: timed out after {HEADLESS_TIMEOUT_SECS}s\nstderr tail:\n{}",
stderr_tail(&result.stderr, 500)
);
assert!(
result.status.success(),
"{label}: exited with {:?}\nstderr tail:\n{}\n{}",
result.status.code(),
stderr_tail(&result.stderr, 1000),
server
.map(|s| format!("request log:\n{}", s.request_log_summary()))
.unwrap_or_default()
);
}
/// Panic if stderr contains any crash/linking-failure indicators.
pub fn assert_no_crashes(stderr: &str) {
let lower = stderr.to_lowercase();
for pattern in CRASH_PATTERNS {
assert!(
!lower.contains(&pattern.to_lowercase()),
"stderr contains crash indicator '{pattern}':\n{}",
stderr_tail(stderr, 500)
);
}
}