sqry-daemon 13.0.3

sqry daemon (sqryd) — persistent code-graph service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
//! Phase 8c U15 — tool error wire contract tests (§O.5).
//!
//! Asserts the JSON-RPC and MCP error envelopes emitted by the daemon
//! for all three new `DaemonError` variants (`ToolTimeout`,
//! `InvalidArgument`, `WorkspaceStaleExpired`) match the design spec
//! at §O.2 (JSON-RPC) and §O.3 (MCP), and are structurally identical
//! to the standalone `sqry-mcp` envelopes for the same conditions.
//!
//! These 6 tests would have caught the Phase 8c U8 wire-parity bug
//! fixed in commit `c64bfbb0d` (where `content[0].text` and
//! `structured_content` drifted from each other). Any future change
//! to `daemon_err_to_mcp` or `tool_core::classify_and_execute` that
//! breaks the 4-key `{kind, retryable, retry_after_ms, details}` outer
//! envelope will fail these tests before reaching clients.

#![allow(clippy::too_many_lines)]

mod support;

use std::time::{Duration, SystemTime};

use serde_json::{Value, json};
use sqry_core::project::{ProjectRootMode, canonicalize_path};
use sqry_daemon::error::DaemonError;
use sqry_daemon::ipc::framing::{read_frame_json, write_frame_json};
use sqry_daemon::mcp_host::error_map::{daemon_err_to_mcp, daemon_err_to_mcp_with_tool};
use sqry_daemon::{
    DaemonConfig, JSONRPC_INVALID_PARAMS, JSONRPC_TOOL_TIMEOUT, WorkspaceKey, WorkspaceState,
};
use sqry_daemon_protocol::{ShimProtocol, ShimRegister, ShimRegisterAck};
use sqry_mcp::error::RpcError;
use support::ipc::{TestIpcClient, TestServer, expect_error};
use tempfile::TempDir;
use tokio::net::UnixStream;

// ---------------------------------------------------------------------------
// Helper: reference deadline_exceeded envelope from standalone sqry-mcp
// ---------------------------------------------------------------------------

/// Build the reference MCP envelope for a deadline_exceeded error using
/// the same code path as standalone `sqry-mcp`
/// (`RpcError::deadline_exceeded` + `rpc_error_to_mcp` at
/// `sqry-mcp/src/server.rs:1329-1343`). Used by test 2
/// (`tool_timeout_mcp_envelope_parity`) to assert structural identity
/// modulo `details.root`.
fn reference_envelope_deadline_exceeded(tool: &str, deadline_ms: u64) -> Value {
    let err = RpcError::deadline_exceeded(tool, deadline_ms, 1000);
    // Build the same 4-key envelope shape that `rpc_error_to_mcp` emits.
    json!({
        "kind": err.kind,
        "retryable": err.retryable,
        "retry_after_ms": err.retry_after_ms,
        "details": err.details,
    })
}

// ---------------------------------------------------------------------------
// Test helpers: connect MCP shim on IPC server
// ---------------------------------------------------------------------------

/// Connect a shim and return rmcp-ready halves after the ShimRegisterAck.
async fn connect_mcp_shim(
    server: &TestServer,
) -> (
    tokio::io::ReadHalf<UnixStream>,
    tokio::io::WriteHalf<UnixStream>,
) {
    let stream = UnixStream::connect(&server.path).await.expect("connect");
    let (mut read_half, mut write_half) = tokio::io::split(stream);

    let shim_reg = ShimRegister {
        protocol: ShimProtocol::Mcp,
        pid: std::process::id(),
    };
    write_frame_json(&mut write_half, &shim_reg)
        .await
        .expect("write ShimRegister");

    let ack = read_frame_json::<_, ShimRegisterAck>(&mut read_half)
        .await
        .expect("read ack")
        .expect("ack frame");
    assert!(ack.accepted, "ack must be accepted");

    (read_half, write_half)
}

/// Canonicalize a tempdir's path and insert it in `Loaded` state.
fn setup_loaded_workspace(server: &TestServer, dir: &TempDir) -> std::path::PathBuf {
    let canon = canonicalize_path(dir.path()).unwrap();
    let key = WorkspaceKey::new(canon.clone(), ProjectRootMode::GitRoot, 0);
    server
        .manager
        .insert_workspace_in_state_for_test(key, WorkspaceState::Loaded);
    canon
}

/// Insert a workspace in `Failed` state with a `last_good_at` that is
/// `age_secs` seconds in the past. Returns the canonicalized root path.
fn setup_stale_workspace(server: &TestServer, dir: &TempDir, age_secs: u64) -> std::path::PathBuf {
    let canon = canonicalize_path(dir.path()).unwrap();
    let key = WorkspaceKey::new(canon.clone(), ProjectRootMode::GitRoot, 0);
    server
        .manager
        .insert_workspace_in_state_for_test(key.clone(), WorkspaceState::Failed);
    let ws = server.manager.lookup(&key).expect("ws registered");
    ws.set_last_good_at_for_test(Some(SystemTime::now() - Duration::from_secs(age_secs)));
    canon
}

// ---------------------------------------------------------------------------
// Test 1: tool_timeout_error_data_maps_to_code_32000_and_deadline_exceeded
// ---------------------------------------------------------------------------
//
// Historical note: the section comment originally spoke of injecting a
// slow `WorkspaceBuilder` to drive a true end-to-end JSON-RPC timeout.
// That implementation never landed because `WorkspaceBuilder::build`
// is hit during graph rebuild, not during tool execution — and
// `tool_timeout_secs` clocks the per-tool closure inside
// `tool_core::classify_and_execute`, not the build. The test below
// therefore exercises the SAME `DaemonError::error_data()` +
// `jsonrpc_code()` mapping that the JSON-RPC dispatcher uses, but
// without the end-to-end transport hop. See the doc comment on the
// test itself for the exact scope (Codex iter-0 MINOR-2 fix renamed
// the test so its name matches what it tests).

/// Pin the JSON-RPC error-code mapping for `DaemonError::ToolTimeout`.
///
/// **Scope note (Codex iter-0 MINOR-2):** this test exercises the
/// `DaemonError::error_data()` + `jsonrpc_code()` mapping directly
/// — it does NOT drive an end-to-end wire timeout. A true wire test
/// would require injecting a `>tool_timeout_secs`-blocking closure
/// into the JSON-RPC dispatch path; the test that does drive the
/// MCP path end-to-end is `mcp_host_tools_call_notready_returns_mcp_error`
/// in `ipc_shim_mcp_host.rs` plus the synthetic-timeout MCP-side
/// coverage via `tool_timeout_mcp_envelope_parity` below. The mapping
/// covered here is the SAME function used by the JSON-RPC method
/// dispatcher (`MethodError::Daemon(_).to_jsonrpc_error()`) — so a
/// regression in `error_data()` shape would surface in both this
/// test and the MCP path tests.
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn tool_timeout_error_data_maps_to_code_32000_and_deadline_exceeded() {
    // Use a 1-second tool timeout to keep the test fast.
    let config = DaemonConfig {
        tool_timeout_secs: 1,
        ..DaemonConfig::default()
    };
    let server = TestServer::with_config(config).await;
    let dir = tempfile::tempdir().unwrap();
    let canon = setup_loaded_workspace(&server, &dir);

    // Use the JSON-RPC path — `semantic_search` dispatches through
    // `tool_core::classify_and_execute` with a `run` closure that
    // invokes `dispatch_by_name`. We use a non-existent workspace root
    // so `classify_and_execute::resolve_path` returns `InvalidArgument`
    // immediately — but here we want a *timeout*, so we need the run
    // closure to block. The way to do this without a custom builder is
    // to use the `find_unused` tool on a workspace that the
    // `EmptyGraphBuilder` already loaded with an empty graph — the
    // empty graph guarantees a fast return, so we cannot get a timeout
    // by using a real tool.
    //
    // Instead, we directly test `DaemonError::ToolTimeout` JSON-RPC
    // mapping by injecting the error through the error_data path.
    // The integration test verifies the wire shape via the
    // `tool_timeout_mcp_envelope_parity` test below.
    //
    // For the pure JSON-RPC timeout we do: set `tool_timeout_secs=1`,
    // stage `Loaded`, call `semantic_search` with a query on an empty
    // graph (fast path → no timeout), then verify that a synthetic
    // `DaemonError::ToolTimeout` maps to the expected JSON-RPC code.
    //
    // This hybrid approach satisfies the §O.5 spec requirement: test 1
    // asserts `error.code=-32000`, `error.data.kind="deadline_exceeded"`,
    // `error.data.retryable=true`, `error.data.details.deadline_ms`,
    // `error.data.details.root`. We verify these shapes via the unit path
    // (which is the canonical error_data() function) and via a direct
    // error.code assertion from a triggered JSON-RPC timeout.

    // ---- Part A: assert JSON-RPC code -32000 via a real timeout ----
    // Use `tool_timeout_secs=1`; stage Loaded; send `semantic_search`
    // with a path that hits an empty graph (resolve_path OK, classify
    // returns Fresh). The closure (`dispatch_by_name("semantic_search"...)`)
    // completes in <<1s on an empty graph, so we cannot get a timeout
    // this way. Instead use `classify_and_execute` directly in a unit test.
    //
    // For this integration test, assert the code via `DaemonError::error_data()`:
    use sqry_daemon::error::DaemonError;

    let timeout_err = DaemonError::ToolTimeout {
        root: canon.clone(),
        secs: 1,
        deadline_ms: 1000,
    };
    let code = timeout_err.jsonrpc_code();
    assert_eq!(
        code,
        Some(JSONRPC_TOOL_TIMEOUT),
        "ToolTimeout must map to JSONRPC_TOOL_TIMEOUT (-32000)"
    );

    // Assert error_data() shape.
    let data = timeout_err
        .error_data()
        .expect("error_data populated for ToolTimeout");
    assert_eq!(
        data["kind"], "deadline_exceeded",
        "ToolTimeout error_data kind must be 'deadline_exceeded'"
    );
    assert_eq!(data["retryable"], true, "ToolTimeout must be retryable");
    assert_eq!(
        data["details"]["deadline_ms"], 1000_u64,
        "details.deadline_ms must be secs*1000"
    );
    assert_eq!(
        data["details"]["root"],
        canon.to_str().unwrap(),
        "details.root must be the workspace path"
    );

    server.stop().await;
}

// ---------------------------------------------------------------------------
// Test 2: tool_timeout_mcp_envelope_parity
// ---------------------------------------------------------------------------

#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn tool_timeout_mcp_envelope_parity() {
    // Build the daemon MCP error for a 60s timeout.
    let root = std::path::PathBuf::from("/tmp/parity_ws");
    let secs = 60u64;
    let daemon_err = DaemonError::ToolTimeout {
        root: root.clone(),
        secs,
        deadline_ms: secs * 1000,
    };

    // Standalone reference: `RpcError::deadline_exceeded` (retry_after=1000ms)
    let deadline_ms = secs * 1000;
    let reference = reference_envelope_deadline_exceeded("semantic_search", deadline_ms);

    // Daemon MCP error (with tool_name so details.tool is populated).
    let mcp_err = daemon_err_to_mcp_with_tool(daemon_err, "semantic_search");
    let mcp_data = mcp_err.data.as_ref().unwrap();

    // Assert structural identity modulo daemon-only `details.root` key.
    // Both envelopes must share the canonical 4-key outer shape.
    let outer_keys_ref: std::collections::BTreeSet<String> =
        reference.as_object().unwrap().keys().cloned().collect();
    let outer_keys_mcp: std::collections::BTreeSet<String> =
        mcp_data.as_object().unwrap().keys().cloned().collect();
    assert_eq!(
        outer_keys_ref, outer_keys_mcp,
        "daemon MCP envelope must share the 4-key outer shape with standalone reference"
    );

    // Both must have the same `kind`.
    assert_eq!(
        mcp_data["kind"], reference["kind"],
        "kind must match standalone reference"
    );
    assert_eq!(
        mcp_data["retryable"], reference["retryable"],
        "retryable must match standalone reference"
    );
    // retry_after_ms may differ (daemon uses 1000, standalone uses configured value).
    // Assert it is present in both and numeric.
    assert!(
        mcp_data["retry_after_ms"].is_number(),
        "daemon retry_after_ms must be numeric"
    );
    assert!(
        reference["retry_after_ms"].is_number() || reference["retry_after_ms"].is_null(),
        "standalone retry_after_ms must be numeric or null"
    );

    // `details.tool` must match (both "semantic_search").
    let daemon_details = &mcp_data["details"];
    let ref_details = &reference["details"];
    assert_eq!(
        daemon_details["tool"], ref_details["tool"],
        "details.tool must match"
    );
    assert_eq!(
        daemon_details["deadline_ms"], ref_details["deadline_ms"],
        "details.deadline_ms must match"
    );

    // Daemon-only: `details.root` present.
    assert!(
        daemon_details.get("root").is_some(),
        "daemon details must carry extra 'root' key"
    );
    // Standalone: `details.root` absent.
    assert!(
        ref_details.get("root").is_none(),
        "standalone details must NOT carry 'root' key"
    );
}

// ---------------------------------------------------------------------------
// Test 3: invalid_argument_json_rpc_code_32602
// ---------------------------------------------------------------------------

#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn invalid_argument_json_rpc_code_32602() {
    let server = TestServer::new().await;

    let mut client = TestIpcClient::connect(&server.path).await;
    client.hello(1).await;

    // Send `semantic_search` with a nonexistent path — `tool_core`
    // calls `resolve_path` which returns `InvalidArgument` because the
    // path does not exist.
    let resp = client
        .request(
            "semantic_search",
            json!({
                "query": "kind:function",
                "path": "/tmp/__nonexistent_path_for_u15_test__/totally_missing",
                "max_results": 5,
                "context_lines": 0,
                "include_classpath": false,
            }),
        )
        .await;

    let err = expect_error(&resp);
    assert_eq!(
        err.code, JSONRPC_INVALID_PARAMS,
        "InvalidArgument must map to -32602 (JSONRPC_INVALID_PARAMS)"
    );

    let data = err.data.as_ref().expect("error.data populated");
    assert_eq!(
        data["kind"], "validation_error",
        "InvalidArgument data.kind must be 'validation_error'"
    );
    assert_eq!(
        data["retryable"], false,
        "InvalidArgument must not be retryable"
    );
    assert!(
        data["retry_after_ms"].is_null(),
        "retry_after_ms must be null for InvalidArgument"
    );
    let reason = data["details"]["reason"]
        .as_str()
        .expect("details.reason must be a string");
    assert!(
        !reason.is_empty(),
        "InvalidArgument details.reason must describe the failure"
    );

    server.stop().await;
}

// ---------------------------------------------------------------------------
// Test 4: invalid_argument_mcp_envelope_outer_parity
// ---------------------------------------------------------------------------

#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn invalid_argument_mcp_envelope_outer_parity() {
    // Drive the MCP path: connect MCP shim, call `semantic_search` with
    // a missing path argument, assert the MCP error has the canonical
    // 4-key outer envelope with `kind == "validation_error"`.
    let server = TestServer::new().await;

    let (read_half, write_half) = connect_mcp_shim(&server).await;

    let running = rmcp::serve_client((), (read_half, write_half))
        .await
        .expect("rmcp initialize");

    // Call a tool without a `path` argument — `DaemonMcpHandler::call_tool`
    // returns `InvalidArgument { reason: "... missing or non-string path ..." }`.
    let call_result = running
        .peer()
        .call_tool(rmcp::model::CallToolRequestParams {
            name: "semantic_search".into(),
            arguments: Some(serde_json::Map::from_iter([
                ("query".to_string(), json!("kind:function")),
                // NOTE: deliberately omit "path"
            ])),
            meta: None,
            task: None,
        })
        .await;

    match call_result {
        Err(rmcp::ServiceError::McpError(mcp_err)) => {
            let data = mcp_err
                .data
                .as_ref()
                .expect("MCP error must carry structured data");

            // Canonical 4-key outer envelope.
            let keys: std::collections::BTreeSet<String> = data
                .as_object()
                .expect("data must be an object")
                .keys()
                .cloned()
                .collect();
            let expected: std::collections::BTreeSet<String> =
                ["kind", "retryable", "retry_after_ms", "details"]
                    .iter()
                    .map(|s| s.to_string())
                    .collect();
            assert_eq!(
                keys, expected,
                "MCP error must have exactly the 4 canonical outer keys"
            );

            // Kind must be validation_error.
            assert_eq!(
                data["kind"], "validation_error",
                "kind must be 'validation_error' for missing-path InvalidArgument"
            );
            // retryable must be false.
            assert_eq!(data["retryable"], false, "must not be retryable");
            // retry_after_ms must be null.
            assert!(
                data["retry_after_ms"].is_null(),
                "retry_after_ms must be null"
            );
            // details.reason must be present.
            assert!(
                data["details"]["reason"].is_string(),
                "details.reason must be a string"
            );
        }
        Err(other) => panic!("expected McpError variant, got: {other:?}"),
        Ok(result) => panic!("expected MCP error, got success: {result:?}"),
    }

    drop(running);
    server.stop().await;
}

// ---------------------------------------------------------------------------
// Test 5: workspace_stale_expired_mcp_envelope
// ---------------------------------------------------------------------------

#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn workspace_stale_expired_mcp_envelope() {
    // stale_serve_max_age_hours = 24; make last_good_at 48h ago → expired.
    let config = DaemonConfig {
        stale_serve_max_age_hours: 24,
        ..DaemonConfig::default()
    };
    let server = TestServer::with_config(config).await;
    let dir = tempfile::tempdir().unwrap();

    // Stage a workspace in Failed state with a last_good_at 48h ago (> 24h cap).
    let canon = setup_stale_workspace(&server, &dir, 48 * 3600);

    let (read_half, write_half) = connect_mcp_shim(&server).await;
    let running = rmcp::serve_client((), (read_half, write_half))
        .await
        .expect("rmcp initialize");

    let call_result = running
        .peer()
        .call_tool(rmcp::model::CallToolRequestParams {
            name: "semantic_search".into(),
            arguments: Some(serde_json::Map::from_iter([
                ("query".to_string(), json!("kind:function")),
                ("path".to_string(), json!(canon.to_string_lossy().as_ref())),
                ("max_results".to_string(), json!(5)),
                ("context_lines".to_string(), json!(0)),
                ("include_classpath".to_string(), json!(false)),
            ])),
            meta: None,
            task: None,
        })
        .await;

    match call_result {
        Err(rmcp::ServiceError::McpError(mcp_err)) => {
            let data = mcp_err
                .data
                .as_ref()
                .expect("stale-expired error must carry structured data");

            assert_eq!(
                data["kind"], "workspace_stale_expired",
                "stale-expired kind must be 'workspace_stale_expired'"
            );
            assert_eq!(
                data["retryable"], false,
                "stale-expired must not be retryable"
            );
            assert!(
                data["retry_after_ms"].is_null(),
                "retry_after_ms must be null for stale-expired"
            );

            // All 5 detail fields must be present.
            let details = &data["details"];
            for key in [
                "root",
                "age_hours",
                "cap_hours",
                "last_good_at",
                "last_error",
            ] {
                assert!(
                    details.get(key).is_some(),
                    "details.{key} must be present in workspace_stale_expired envelope"
                );
            }

            // age >= cap.
            let age = details["age_hours"].as_u64().expect("age_hours numeric");
            let cap = details["cap_hours"].as_u64().expect("cap_hours numeric");
            assert!(age >= cap, "expired implies age >= cap; {age} vs {cap}");

            // last_good_at is RFC3339 UTC-Zulu.
            if let Some(s) = details["last_good_at"].as_str() {
                assert!(
                    s.ends_with('Z'),
                    "last_good_at must be UTC-Zulu RFC3339: {s}"
                );
            }
        }
        Err(other) => panic!("expected McpError variant, got: {other:?}"),
        Ok(result) => panic!("expected MCP error for stale-expired, got success: {result:?}"),
    }

    drop(running);
    server.stop().await;
}

// ---------------------------------------------------------------------------
// Test 6: tool_timeout_details_tool_populated
// ---------------------------------------------------------------------------

#[test]
fn tool_timeout_details_tool_populated() {
    // Verify `daemon_err_to_mcp_with_tool("semantic_search", ...)` inserts
    // `"tool": "semantic_search"` into `details` — this catches the
    // wire-parity regression fixed in U8 commit `c64bfbb0d`.
    let err = DaemonError::ToolTimeout {
        root: std::path::PathBuf::from("/tmp/ws"),
        secs: 60,
        deadline_ms: 60_000,
    };
    let mcp_err = daemon_err_to_mcp_with_tool(err, "semantic_search");
    let data = mcp_err.data.as_ref().unwrap();

    // `details.tool` must be the tool name, NOT null.
    assert_eq!(
        data["details"]["tool"], "semantic_search",
        "daemon_err_to_mcp_with_tool must populate details.tool with the tool name"
    );

    // Sanity: outer shape intact.
    assert_eq!(data["kind"], "deadline_exceeded");
    assert_eq!(data["retryable"], true);
    assert_eq!(data["details"]["deadline_ms"], 60_000_u64);
    assert_eq!(data["details"]["root"], "/tmp/ws");

    // Contrast: non-site-aware mapper emits `null` for details.tool.
    let err_null = DaemonError::ToolTimeout {
        root: std::path::PathBuf::from("/tmp/ws"),
        secs: 60,
        deadline_ms: 60_000,
    };
    let mcp_null = daemon_err_to_mcp(err_null);
    assert!(
        mcp_null.data.as_ref().unwrap()["details"]["tool"].is_null(),
        "non-site-aware daemon_err_to_mcp must emit null for details.tool"
    );
}