Files
IdeA/crates/application/tests/error_codes.rs
Blomios f4d5727a69 feat(agent): commandes Tauri + ChatBridge streaming (D4) — §17
Expose l'exécution structurée à l'UI (jumeau du chemin PTY) :
- ChatBridge (chat.rs) : pompe ReplyStream -> Channel<ReplyChunk>,
  generation-tracked (anti-double-pompe) ; scrollback de conversation
  côté transport (le port AgentSession est sans mémoire), purgé à la
  fermeture, préservé à la ré-attache.
- Commandes agent_send / reattach_agent_chat / close_agent_session.
- DTO : ReplyChunk (textDelta/toolActivity/final, camelCase tagué kind),
  ReattachChatDto, CellKind {pty,chat} + champ cellKind dérivé sur
  TerminalSessionDto (chat ssi LaunchAgentOutput.structured = Some).
- Wiring composition root : StructuredSessions + ChatBridge dans AppState,
  via la factory déjà injectée (aucun new d'adapter — règle D §17.8).
- From<AgentSessionError> for AppError (mappe sur PROCESS).

Tests (QA) : 35 unitaires verts — generation supersede validé par mutation
test, séquence deltas*+Final, reattach sans re-spawn, teardown shutdown+
unregister, DTO cellKind + round-trip ReplyChunk, non-régression PTY.
cargo test --workspace : 803 passed, 0 failed.

Reste D5 : AgentChatView (frontend) + routage cellKind dans LayoutGrid.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-09 23:15:08 +02:00

132 lines
4.3 KiB
Rust

//! L1 tests pinning the stable [`AppError::code`] strings the IPC `ErrorDto`
//! relies on, and the per-port `From` mappings.
use application::AppError;
use domain::ports::{
AgentSessionError, EmbedderError, FsError, GitError, MemoryError, ProcessError, PtyError,
RemoteError, StoreError,
};
#[test]
fn codes_are_stable() {
assert_eq!(AppError::NotFound("x".into()).code(), "NOT_FOUND");
assert_eq!(AppError::Invalid("x".into()).code(), "INVALID");
assert_eq!(AppError::FileSystem("x".into()).code(), "FILESYSTEM");
assert_eq!(AppError::Store("x".into()).code(), "STORE");
assert_eq!(AppError::Process("x".into()).code(), "PROCESS");
assert_eq!(AppError::Git("x".into()).code(), "GIT");
assert_eq!(AppError::Remote("x".into()).code(), "REMOTE");
assert_eq!(AppError::Internal("x".into()).code(), "INTERNAL");
}
#[test]
fn fs_not_found_maps_to_not_found_other_to_filesystem() {
assert_eq!(
AppError::from(FsError::NotFound("/tmp/x".into())).code(),
"NOT_FOUND"
);
assert_eq!(
AppError::from(FsError::PermissionDenied("/tmp/x".into())).code(),
"FILESYSTEM"
);
assert_eq!(
AppError::from(FsError::Io("boom".into())).code(),
"FILESYSTEM"
);
}
#[test]
fn store_not_found_maps_to_not_found_other_to_store() {
assert_eq!(AppError::from(StoreError::NotFound).code(), "NOT_FOUND");
assert_eq!(
AppError::from(StoreError::Serialization("bad".into())).code(),
"STORE"
);
}
#[test]
fn process_pty_runtime_map_to_process() {
assert_eq!(AppError::from(PtyError::NotFound).code(), "PROCESS");
assert_eq!(
AppError::from(ProcessError::Spawn("x".into())).code(),
"PROCESS"
);
}
#[test]
fn agent_session_errors_all_map_to_process() {
// §17.1 / D4: a structured AgentSession is a live process/SDK conversation, so
// every failure variant folds into PROCESS (the byte-stream twin). Used by the
// agent_send / close_agent_session command error arms.
assert_eq!(
AppError::from(AgentSessionError::Start("no cli".into())).code(),
"PROCESS"
);
assert_eq!(
AppError::from(AgentSessionError::Io("broken pipe".into())).code(),
"PROCESS"
);
assert_eq!(
AppError::from(AgentSessionError::Decode("bad schema".into())).code(),
"PROCESS"
);
assert_eq!(AppError::from(AgentSessionError::Timeout).code(), "PROCESS");
// The message is carried through onto the single Process shape.
assert_eq!(
AppError::from(AgentSessionError::Io("broken pipe".into())),
AppError::Process(AgentSessionError::Io("broken pipe".into()).to_string())
);
}
#[test]
fn git_and_remote_map_through() {
assert_eq!(AppError::from(GitError::NotFound).code(), "GIT");
assert_eq!(
AppError::from(RemoteError::Auth("nope".into())).code(),
"REMOTE"
);
}
#[test]
fn memory_errors_map_per_variant() {
// NotFound → NotFound.
assert_eq!(AppError::from(MemoryError::NotFound).code(), "NOT_FOUND");
// Frontmatter → Invalid (a malformed note is an invariant violation, not I/O).
let invalid = AppError::from(MemoryError::Frontmatter("bad yaml".into()));
assert_eq!(invalid.code(), "INVALID");
assert_eq!(invalid, AppError::Invalid("bad yaml".to_owned()));
// Io → Store.
assert_eq!(
AppError::from(MemoryError::Io("disk full".into())).code(),
"STORE"
);
// Serialization → Store (the catch-all arm).
assert_eq!(
AppError::from(MemoryError::Serialization("bad index".into())).code(),
"STORE"
);
}
#[test]
fn embedder_errors_all_map_to_store() {
// An embedder is a *derived* recall detail: every variant maps to STORE (its
// failure must degrade the recall, never fail hard — see the From impl doc).
assert_eq!(
AppError::from(EmbedderError::Unavailable("no model".into())).code(),
"STORE"
);
assert_eq!(
AppError::from(EmbedderError::Unsupported("localOnnx".into())).code(),
"STORE"
);
assert_eq!(
AppError::from(EmbedderError::Io("read failed".into())).code(),
"STORE"
);
// The message is carried through.
assert_eq!(
AppError::from(EmbedderError::Unsupported("api".into())),
AppError::Store("embedder strategy unsupported: api".to_owned())
);
}