slancha-wire 0.5.21

Magic-wormhole for AI agents — bilateral signed-message bus over a mailbox relay
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
//! Stress tests for the wire send/receive pipeline.
//!
//! These exercise the system under load + edge cases that the e2e suite
//! doesn't cover by design. The goal is to find new bugs (not regress
//! known ones). Each test is allowed to be slow (seconds, not ms) — the
//! `--release` build is used and the relay runs in-process.
//!
//! Tests cover:
//!   1. Outbox flood — N messages → 1 peer, all delivered + dedup correct.
//!   2. Concurrent senders — multiple threads queuing into the same peer
//!      outbox, verify no torn JSONL lines and all events received.
//!   3. `wire bind-relay` migration with pinned peers — currently silent
//!      (issue #7 root cause). Test asserts SOME operator-visible signal.
//!   4. Send to a slot_id that doesn't exist on the relay — verify the
//!      sender surfaces a meaningful error, not silent success.

use serde_json::Value;
use std::path::PathBuf;
use std::process::Command;
use std::sync::atomic::{AtomicU32, Ordering};
use std::time::{Duration, Instant};

static COUNTER: AtomicU32 = AtomicU32::new(0);

// Flood sizes are kept moderate because each `wire send` is a subprocess
// (~180ms per call on the dev box). 100 events ≈ 18s of queueing per test,
// which is the upper bound we tolerate without going async-internal.
const FLOOD_COUNT: usize = 100;
const CONCURRENT_THREADS: usize = 5;
const CONCURRENT_PER_THREAD: usize = 20;

fn fresh_dir(prefix: &str) -> PathBuf {
    let n = COUNTER.fetch_add(1, Ordering::SeqCst);
    let pid = std::process::id();
    let path = std::env::temp_dir().join(format!("wire-stress-{prefix}-{pid}-{n}"));
    let _ = std::fs::remove_dir_all(&path);
    std::fs::create_dir_all(&path).unwrap();
    path
}

fn wire_bin() -> PathBuf {
    PathBuf::from(env!("CARGO_BIN_EXE_wire"))
}

fn wire(home: &PathBuf, args: &[&str]) -> std::process::Output {
    let out = Command::new(wire_bin())
        .args(args)
        .env("WIRE_HOME", home)
        .output()
        .expect("spawn wire");
    if !out.status.success() {
        eprintln!(
            "wire {args:?} failed:\nstdout: {}\nstderr: {}",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
    }
    out
}

fn wait_until<F: FnMut() -> bool>(deadline: Instant, mut f: F) -> bool {
    while Instant::now() < deadline {
        if f() {
            return true;
        }
        std::thread::sleep(Duration::from_millis(100));
    }
    false
}

async fn spawn_federation_relay() -> String {
    let dir = fresh_dir("relay");
    let relay = wire::relay_server::Relay::new(dir).await.unwrap();
    let app = relay.router();
    let listener = tokio::net::TcpListener::bind("127.0.0.1:0").await.unwrap();
    let addr = listener.local_addr().unwrap();
    tokio::spawn(async move { axum::serve(listener, app).await.ok() });
    tokio::time::sleep(Duration::from_millis(50)).await;
    format!("http://{addr}")
}

/// Pair two fresh homes through the bilateral-gate flow (v0.5.14+).
/// Returns (alice_home, bob_home) where each has the other pinned.
async fn pair_two_homes(
    relay_url: &str,
    alice_name: &str,
    bob_name: &str,
) -> (PathBuf, PathBuf) {
    // Handle parser wants a dotted-ASCII host without port (so
    // `alice@127.0.0.1`, not `alice@127.0.0.1:56789`). The actual URL
    // is supplied separately via --relay. Mirror the trick used in
    // tests/e2e_handle_pair.rs.
    let host_only = relay_url
        .trim_start_matches("http://")
        .split(':')
        .next()
        .unwrap_or("127.0.0.1");

    let alice = fresh_dir(alice_name);
    assert!(
        wire(&alice, &["init", alice_name, "--relay", relay_url])
            .status
            .success()
    );
    assert!(
        wire(
            &alice,
            &[
                "claim",
                alice_name,
                "--public-url",
                relay_url,
                "--json"
            ]
        )
        .status
        .success()
    );

    let bob = fresh_dir(bob_name);
    assert!(
        wire(&bob, &["init", bob_name, "--relay", relay_url])
            .status
            .success()
    );

    // bob → alice: handle-path pair_drop. Lands in alice's pending-inbound.
    let bob_handle = format!("{alice_name}@{host_only}");
    let add_out = wire(
        &bob,
        &["add", &bob_handle, "--relay", relay_url, "--json"],
    );
    assert!(
        add_out.status.success(),
        "bob `wire add` failed: {}",
        String::from_utf8_lossy(&add_out.stderr)
    );

    // alice: wait for pending-inbound, then accept.
    let alice_has_pending = wait_until(Instant::now() + Duration::from_secs(15), || {
        let _ = wire(&alice, &["pull", "--json"]);
        let p = wire(&alice, &["pair-list-inbound", "--json"]);
        String::from_utf8_lossy(&p.stdout).contains(bob_name)
    });
    assert!(
        alice_has_pending,
        "alice never saw pending-inbound from {bob_name}"
    );
    assert!(
        wire(&alice, &["pair-accept", bob_name, "--json"])
            .status
            .success()
    );

    // bob: pull pair_drop_ack — pins alice.
    let bob_pinned_alice = wait_until(Instant::now() + Duration::from_secs(15), || {
        let _ = wire(&bob, &["pull", "--json"]);
        let p = wire(&bob, &["peers", "--json"]);
        String::from_utf8_lossy(&p.stdout).contains(alice_name)
    });
    assert!(bob_pinned_alice, "bob never pinned alice via pair_drop_ack");

    // alice should also have bob pinned post-accept.
    let p = wire(&alice, &["peers", "--json"]);
    let body = String::from_utf8_lossy(&p.stdout);
    assert!(
        body.contains(bob_name),
        "alice should have {bob_name} pinned, got: {body}"
    );

    (alice, bob)
}

fn count_inbox_lines(home: &PathBuf, peer: &str) -> usize {
    let inbox = home.join("state").join("wire").join("inbox").join(format!("{peer}.jsonl"));
    let body = std::fs::read_to_string(&inbox).unwrap_or_default();
    body.lines().filter(|l| !l.trim().is_empty()).count()
}

// ---------- TEST 1: outbox flood ----------

#[tokio::test(flavor = "multi_thread", worker_threads = 4)]
async fn stress_outbox_flood_500_messages_single_peer() {
    let relay_url = spawn_federation_relay().await;
    let (alice, bob) = pair_two_homes(&relay_url, "stress-alice-a", "stress-bob-a").await;

    // Alice sends FLOOD_COUNT messages to bob, sequentially.
    let start = Instant::now();
    for i in 0..FLOOD_COUNT {
        let body = format!("flood msg {i}");
        let out = wire(&alice, &["send", "stress-bob-a", "claim", &body]);
        assert!(
            out.status.success(),
            "send {i} failed: {}",
            String::from_utf8_lossy(&out.stderr)
        );
    }
    eprintln!(
        "stress: queued {} sends in {:?}",
        FLOOD_COUNT,
        start.elapsed()
    );

    // Push: the outbox file is append-only history (never truncated by
    // push — it's an audit log). The signal for "successfully delivered"
    // is the JSON output of `wire push --json`: `pushed[]` lists events
    // that hit the relay this call; `skipped[]` (with reason "duplicate")
    // lists events the relay already had. One push should deliver all
    // FLOOD_COUNT events on a healthy relay.
    let push_start = Instant::now();
    let push_out = wire(&alice, &["push", "--json"]);
    assert!(push_out.status.success(), "push failed");
    let push: Value = serde_json::from_slice(&push_out.stdout).unwrap();
    let pushed_count = push["pushed"].as_array().map(|a| a.len()).unwrap_or(0);
    let skipped_count = push["skipped"].as_array().map(|a| a.len()).unwrap_or(0);
    eprintln!(
        "stress: push #1 delivered {pushed_count} pushed + {skipped_count} skipped \
         in {:?}",
        push_start.elapsed()
    );
    assert_eq!(
        pushed_count + skipped_count,
        FLOOD_COUNT,
        "push did not enumerate all {FLOOD_COUNT} events: pushed={pushed_count} \
         skipped={skipped_count} (sum should equal FLOOD_COUNT)"
    );

    // Bob pulls until he has FLOOD_COUNT events in his inbox.
    let pull_start = Instant::now();
    let bob_received = wait_until(Instant::now() + Duration::from_secs(60), || {
        let _ = wire(&bob, &["pull", "--json"]);
        count_inbox_lines(&bob, "stress-alice-a") >= FLOOD_COUNT
    });
    let final_count = count_inbox_lines(&bob, "stress-alice-a");
    eprintln!(
        "stress: bob received {final_count}/{FLOOD_COUNT} events in {:?}",
        pull_start.elapsed()
    );
    assert!(
        bob_received,
        "bob received only {final_count}/{FLOOD_COUNT} events"
    );

    // Sanity: every line should be valid JSON.
    let inbox = bob.join("state").join("wire").join("inbox").join("stress-alice-a.jsonl");
    let body = std::fs::read_to_string(&inbox).unwrap();
    let mut parsed_ok = 0;
    for line in body.lines() {
        if line.trim().is_empty() {
            continue;
        }
        let v: Value = serde_json::from_str(line)
            .unwrap_or_else(|e| panic!("torn JSONL line in bob's inbox: {e}\nline: {line}"));
        assert!(v.get("event_id").is_some(), "missing event_id: {line}");
        parsed_ok += 1;
    }
    assert_eq!(parsed_ok, final_count);
}

// ---------- TEST 2: concurrent senders ----------

#[tokio::test(flavor = "multi_thread", worker_threads = 4)]
async fn stress_concurrent_sends_no_torn_writes() {
    let relay_url = spawn_federation_relay().await;
    let (alice, bob) = pair_two_homes(&relay_url, "stress-alice-b", "stress-bob-b").await;

    // Spawn CONCURRENT_THREADS OS threads, each queues CONCURRENT_PER_THREAD
    // events to bob via subprocess `wire send`. The outbox file is shared
    // across all of them; the per-path mutex in config::append_outbox_record
    // must serialize the writes.
    let total = CONCURRENT_THREADS * CONCURRENT_PER_THREAD;
    let start = Instant::now();
    let handles: Vec<_> = (0..CONCURRENT_THREADS)
        .map(|tid| {
            let alice = alice.clone();
            std::thread::spawn(move || {
                for i in 0..CONCURRENT_PER_THREAD {
                    let body = format!("thread {tid} msg {i}");
                    let out = wire(&alice, &["send", "stress-bob-b", "claim", &body]);
                    assert!(
                        out.status.success(),
                        "thread {tid} send {i} failed: {}",
                        String::from_utf8_lossy(&out.stderr)
                    );
                }
            })
        })
        .collect();
    for h in handles {
        h.join().expect("sender thread panicked");
    }
    eprintln!(
        "stress: {CONCURRENT_THREADS} threads × {CONCURRENT_PER_THREAD} sends = {total} in {:?}",
        start.elapsed()
    );

    // Verify outbox file has exactly `total` parseable JSONL lines.
    let outbox = alice
        .join("state")
        .join("wire")
        .join("outbox")
        .join("stress-bob-b.jsonl");
    let body = std::fs::read_to_string(&outbox).expect("outbox missing");
    let mut parsed_ok = 0;
    for line in body.lines() {
        if line.trim().is_empty() {
            continue;
        }
        let v: Value = serde_json::from_str(line)
            .unwrap_or_else(|e| panic!("torn JSONL in alice's outbox: {e}\nline: {line}"));
        assert!(v.get("event_id").is_some());
        parsed_ok += 1;
    }
    assert_eq!(
        parsed_ok, total,
        "expected {total} parseable lines in outbox, got {parsed_ok}"
    );

    // Push + verify bob receives all of them.
    let push_out = wire(&alice, &["push", "--json"]);
    assert!(push_out.status.success(), "push failed");
    let push: Value = serde_json::from_slice(&push_out.stdout).unwrap();
    let pushed_count = push["pushed"].as_array().map(|a| a.len()).unwrap_or(0);
    let skipped_count = push["skipped"].as_array().map(|a| a.len()).unwrap_or(0);
    assert_eq!(
        pushed_count + skipped_count,
        total,
        "push didn't enumerate all {total} events: pushed={pushed_count} skipped={skipped_count}"
    );
    assert!(wait_until(
        Instant::now() + Duration::from_secs(60),
        || {
            let _ = wire(&bob, &["pull", "--json"]);
            count_inbox_lines(&bob, "stress-alice-b") >= total
        },
    ), "bob never received {total} events");
}

// ---------- TEST 3: bind-relay silent migration (issue #7 detector) ----------

/// Issue #7 root: `wire bind-relay` silently replaces `state.self` with
/// new slot coords without notifying pinned peers. Peers keep pushing to
/// the dead slot, get 200 OK (slot exists, just unread), and messages
/// disappear. This test asserts that the migration produces SOME
/// operator-visible signal when pinned peers exist — either:
///   (a) bind-relay fails / warns when trust.json has pinned peers, OR
///   (b) bind-relay auto-emits wire_close to pinned peers, OR
///   (c) bind-relay refuses without an explicit `--migrate-pinned` flag.
///
/// Today (HEAD): none of the above. This test is EXPECTED TO FAIL until
/// #7 is closed; failure reveals the bug.
#[tokio::test(flavor = "multi_thread", worker_threads = 4)]
async fn stress_bind_relay_warns_on_pinned_peers_issue_7() {
    let relay_url = spawn_federation_relay().await;
    let (alice, _bob) = pair_two_homes(&relay_url, "stress-alice-c", "stress-bob-c").await;

    // Spin a SECOND federation relay for alice to migrate to.
    let new_relay_url = spawn_federation_relay().await;

    // Run bind-relay against the new relay. Capture stderr/stdout for any
    // warning text mentioning pinned peers.
    let migrate_out = wire(
        &alice,
        &["bind-relay", &new_relay_url, "--json"],
    );

    // If bind-relay refused / failed loudly, that satisfies (c).
    let failed_loudly = !migrate_out.status.success();
    let stderr = String::from_utf8_lossy(&migrate_out.stderr).into_owned();
    let stdout = String::from_utf8_lossy(&migrate_out.stdout).into_owned();
    let combined = format!("{stderr}\n{stdout}");

    // Look for any operator-visible mention of pinned peers / migration risk.
    let warned_about_peers = combined.to_lowercase().contains("pinned")
        || combined.to_lowercase().contains("black-hole")
        || combined.to_lowercase().contains("rotate-slot")
        || combined.to_lowercase().contains("wire_close")
        || combined.to_lowercase().contains("notify peer");

    assert!(
        failed_loudly || warned_about_peers,
        "ISSUE #7 STILL OPEN: bind-relay silently migrated alice with a pinned peer (stress-bob-c). \
         No warning emitted, no failure. Peers will push to a dead slot.\n\
         migrate_out.status: {:?}\n\
         stdout: {stdout}\n\
         stderr: {stderr}",
        migrate_out.status
    );
}

// ---------- TEST 4: send to dead slot ----------

/// Push to a slot_id that doesn't exist on the relay. The relay should
/// 404; the sender's `wire push` should surface a meaningful error, not
/// silently report success. This is the OTHER half of #7: even if the
/// migration warning lands, an existing-pinned-peer who never re-pinned
/// should see a hard failure when their slot vanishes.
#[tokio::test(flavor = "multi_thread", worker_threads = 4)]
async fn stress_send_to_nonexistent_slot_surfaces_error() {
    let relay_url = spawn_federation_relay().await;
    let (alice, _bob) = pair_two_homes(&relay_url, "stress-alice-d", "stress-bob-d").await;

    // Corrupt alice's pin of bob: replace bob's slot_id with a fake one
    // that does not exist on the relay. This simulates the post-bind-relay
    // state from bob's perspective (alice still thinks bob is at the old
    // slot, but the relay no longer routes to anything alice can reach).
    let relay_state_path = alice
        .join("config")
        .join("wire")
        .join("relay.json");
    let bytes = std::fs::read(&relay_state_path).expect("relay.json missing");
    let mut state: Value = serde_json::from_slice(&bytes).expect("relay.json malformed");
    let fake_slot_id = "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff";
    state["peers"]["stress-bob-d"]["slot_id"] = serde_json::json!(fake_slot_id);
    if let Some(eps) = state["peers"]["stress-bob-d"]["endpoints"].as_array_mut() {
        for ep in eps.iter_mut() {
            ep["slot_id"] = serde_json::json!(fake_slot_id);
        }
    }
    std::fs::write(
        &relay_state_path,
        serde_json::to_vec_pretty(&state).unwrap(),
    )
    .unwrap();

    // Queue a message + push. Capture the push --json output.
    assert!(wire(&alice, &["send", "stress-bob-d", "claim", "to the void"])
        .status
        .success());
    let push_out = wire(&alice, &["push", "--json"]);
    let stdout = String::from_utf8_lossy(&push_out.stdout).into_owned();
    let stderr = String::from_utf8_lossy(&push_out.stderr).into_owned();

    // Acceptable outcomes:
    //   - push exits non-zero, OR
    //   - push --json reports the event in a `failed`/`errors` array with
    //     the fake slot_id or a 404, OR
    //   - push prints a stderr warning containing "slot" + ("not found" or "404")
    let combined = format!("{stdout}\n{stderr}").to_lowercase();
    let surfaced = !push_out.status.success()
        || combined.contains("404")
        || combined.contains("not found")
        || combined.contains("slot not found")
        || combined.contains("\"failed\"")
        || combined.contains("\"errors\"")
        || combined.contains("dead slot");

    assert!(
        surfaced,
        "ISSUE #7 OTHER HALF: push to a nonexistent slot reported success and emitted no \
         operator-visible signal.\n\
         status: {:?}\nstdout: {stdout}\nstderr: {stderr}",
        push_out.status
    );
}