truffle-core 0.4.7

Truffle mesh networking core (clean architecture)
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
//! Shared helpers for truffle-core integration tests.
//!
//! All real-network tests share one auth-key gate and one two-node pair
//! harness. If `TRUFFLE_TEST_AUTHKEY` (or the legacy `TS_AUTHKEY`) is not
//! set, tests skip gracefully with a one-line notice.
//!
//! See `docs/rfcs/019-local-testing-and-benchmarking.md` for the design.

#![allow(dead_code)] // not every integration test file uses every helper

use std::path::{Path, PathBuf};
use std::sync::{Arc, OnceLock};
use std::time::Duration;

use truffle_core::network::tailscale::{TailscaleConfig, TailscaleProvider};
use truffle_core::network::NetworkProvider;
use truffle_core::{Node, NodeBuilder};

/// The env var that gates real-network tests and benchmarks.
pub const AUTHKEY_ENV: &str = "TRUFFLE_TEST_AUTHKEY";

/// Legacy fallback. Deprecated; prints a warning when used.
pub const LEGACY_AUTHKEY_ENV: &str = "TS_AUTHKEY";

/// Load `.env` from the repo root once per test binary. Idempotent.
fn ensure_dotenv() {
    static LOADED: OnceLock<()> = OnceLock::new();
    LOADED.get_or_init(|| {
        // `dotenvy::dotenv()` walks up from CWD, so it finds `.env` at the
        // workspace root even when `cargo test -p truffle-core` runs with
        // CWD inside the crate directory.
        let _ = dotenvy::dotenv();
    });
}

/// Returns `Some(authkey)` if real-network work should run, or `None` with a
/// single-line `[skip]` notice printed to stderr.
///
/// Checks `TRUFFLE_TEST_AUTHKEY` first, then `TS_AUTHKEY` (with a
/// deprecation warning).
///
/// The `test_name` parameter is only used for the skip message — pass the
/// test function's name as a literal string.
pub fn require_authkey(test_name: &str) -> Option<String> {
    ensure_dotenv();

    if let Ok(k) = std::env::var(AUTHKEY_ENV) {
        if !k.is_empty() {
            return Some(k);
        }
    }

    if let Ok(k) = std::env::var(LEGACY_AUTHKEY_ENV) {
        if !k.is_empty() {
            eprintln!(
                "[warn] {test_name}: using {LEGACY_AUTHKEY_ENV}; \
                 {AUTHKEY_ENV} is preferred and will be the only supported \
                 name in a future release"
            );
            return Some(k);
        }
    }

    eprintln!("[skip] {test_name}: {AUTHKEY_ENV} not set");
    None
}

/// Read an env var with a default.
pub fn env_or(name: &str, default: &str) -> String {
    ensure_dotenv();
    std::env::var(name).unwrap_or_else(|_| default.to_string())
}

/// Read a boolean env var with a default.
pub fn env_bool(name: &str, default: bool) -> bool {
    ensure_dotenv();
    match std::env::var(name) {
        Ok(v) => matches!(v.to_ascii_lowercase().as_str(), "1" | "true" | "yes"),
        Err(_) => default,
    }
}

/// Parse `TRUFFLE_TEST_TAGS` (comma-separated). Returns `None` if unset or empty.
///
/// Defaults to `None` — most users don't need to advertise tags explicitly.
/// The auth key's own bound tag (set when the key was generated in the
/// Tailscale admin panel) applies automatically. Only set `TRUFFLE_TEST_TAGS`
/// if you know your tailnet ACL has a matching `tagOwners` entry for every
/// tag listed — otherwise tsnet rejects the login with "requested tags are
/// invalid or not permitted".
pub fn test_tags() -> Option<Vec<String>> {
    ensure_dotenv();
    let raw = match std::env::var("TRUFFLE_TEST_TAGS") {
        Ok(v) if !v.is_empty() => v,
        _ => return None,
    };
    let tags: Vec<String> = raw
        .split(',')
        .map(|s| s.trim().to_string())
        .filter(|s| !s.is_empty())
        .collect();
    if tags.is_empty() {
        None
    } else {
        Some(tags)
    }
}

/// Whether test nodes should register as ephemeral. Default: true.
pub fn test_ephemeral() -> bool {
    env_bool("TRUFFLE_TEST_EPHEMERAL", true)
}

/// Redact an auth key to its first 12 characters + `...` for safe logging.
pub fn redact_authkey(key: &str) -> String {
    if key.len() <= 12 {
        "****".to_string()
    } else {
        format!("{}...", &key[..12])
    }
}

/// Install a tracing subscriber for tests. Idempotent — safe to call from every test.
pub fn init_test_tracing() {
    let filter = env_or("TRUFFLE_TEST_LOG", "truffle_core=info");
    tracing_subscriber::fmt()
        .with_env_filter(filter)
        .with_test_writer()
        .try_init()
        .ok();
}

// =============================================================================
// Two-node pair harness (RFC 019 §7)
// =============================================================================

/// App-id used by all pair-harness nodes. Peer filter matches
/// `truffle-{app_id}-*` hostnames, so both nodes in the pair see each other.
pub const TEST_APP_ID: &str = "test-integ";

/// How long to wait for the pair to see each other via `peers()` before
/// giving up. Tailscale netmap propagation can be lazy, especially right
/// after registration.
pub const RENDEZVOUS_TIMEOUT: Duration = Duration::from_secs(45);

/// Default path to the compiled test-sidecar binary.
pub fn default_sidecar_path() -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/test-sidecar")
}

/// Options for customising the pair.
#[derive(Clone)]
pub struct PairOpts {
    pub app_id: String,
    pub rendezvous_timeout: Duration,
    pub sidecar_path: PathBuf,
}

impl Default for PairOpts {
    fn default() -> Self {
        Self {
            app_id: TEST_APP_ID.to_string(),
            rendezvous_timeout: RENDEZVOUS_TIMEOUT,
            sidecar_path: default_sidecar_path(),
        }
    }
}

/// Two TailscaleProviders registered on the same tailnet, known to have
/// discovered each other. Both nodes are ephemeral — they disappear from
/// the tailnet ~30–60 min after drop (or sooner when `stop()` is called).
///
/// TempDirs for per-node state are kept alive by the struct; on drop they
/// are removed. Child sidecar processes die via `kill_on_drop(true)`.
pub struct NodePair {
    pub alpha: TailscaleProvider,
    pub beta: TailscaleProvider,
    pub alpha_hostname: String,
    pub beta_hostname: String,
    _alpha_state: tempfile::TempDir,
    _beta_state: tempfile::TempDir,
}

impl NodePair {
    /// Gracefully stop both providers. Drop alone is enough for cleanup,
    /// but calling this gives a deterministic teardown point in tests.
    pub async fn stop(mut self) {
        let _ = self.alpha.stop().await;
        let _ = self.beta.stop().await;
    }

    /// Tailscale IP of the alpha node.
    pub async fn alpha_ip(&self) -> std::net::IpAddr {
        self.alpha
            .local_identity_async()
            .await
            .ip
            .expect("alpha should have a Tailscale IP after rendezvous")
    }

    /// Tailscale IP of the beta node.
    pub async fn beta_ip(&self) -> std::net::IpAddr {
        self.beta
            .local_identity_async()
            .await
            .ip
            .expect("beta should have a Tailscale IP after rendezvous")
    }
}

/// Create a pair of nodes with default options.
pub async fn make_pair_of_nodes(authkey: &str) -> NodePair {
    make_pair_of_nodes_with(authkey, PairOpts::default()).await
}

/// Create a pair of nodes with custom options.
pub async fn make_pair_of_nodes_with(authkey: &str, opts: PairOpts) -> NodePair {
    assert_sidecar_exists(&opts.sidecar_path);

    let run_id = uuid::Uuid::new_v4().to_string();
    let short_id: String = run_id.chars().take(8).collect();

    let alpha_state =
        tempfile::TempDir::with_prefix("truffle-test-alpha-").expect("create alpha tempdir");
    let beta_state =
        tempfile::TempDir::with_prefix("truffle-test-beta-").expect("create beta tempdir");

    let alpha_hostname = format!("truffle-{}-a{}", opts.app_id, short_id);
    let beta_hostname = format!("truffle-{}-b{}", opts.app_id, short_id);

    let alpha_config = build_config(
        authkey,
        &opts,
        &alpha_hostname,
        format!("alpha-{short_id}"),
        alpha_state.path(),
    );
    let beta_config = build_config(
        authkey,
        &opts,
        &beta_hostname,
        format!("beta-{short_id}"),
        beta_state.path(),
    );

    let mut alpha = TailscaleProvider::new(alpha_config);
    let mut beta = TailscaleProvider::new(beta_config);

    eprintln!(
        "[pair] starting alpha={alpha_hostname} beta={beta_hostname} \
         (authkey={})",
        redact_authkey(authkey)
    );

    let (alpha_start, beta_start) = tokio::join!(alpha.start(), beta.start());
    alpha_start.expect("alpha start");
    beta_start.expect("beta start");

    rendezvous(
        &alpha,
        &beta,
        &alpha_hostname,
        &beta_hostname,
        opts.rendezvous_timeout,
    )
    .await;

    eprintln!(
        "[pair] rendezvous complete — alpha_ip={} beta_ip={}",
        alpha
            .local_identity_async()
            .await
            .ip
            .map(|ip| ip.to_string())
            .unwrap_or_else(|| "?".to_string()),
        beta.local_identity_async()
            .await
            .ip
            .map(|ip| ip.to_string())
            .unwrap_or_else(|| "?".to_string()),
    );

    NodePair {
        alpha,
        beta,
        alpha_hostname,
        beta_hostname,
        _alpha_state: alpha_state,
        _beta_state: beta_state,
    }
}

fn build_config(
    authkey: &str,
    opts: &PairOpts,
    hostname: &str,
    device_name: String,
    state_dir: &Path,
) -> TailscaleConfig {
    TailscaleConfig {
        binary_path: opts.sidecar_path.clone(),
        app_id: opts.app_id.clone(),
        device_id: ulid::Ulid::new().to_string(),
        device_name,
        hostname: hostname.to_string(),
        state_dir: state_dir.to_string_lossy().into_owned(),
        auth_key: Some(authkey.to_string()),
        ephemeral: Some(test_ephemeral()),
        tags: test_tags(),
    }
}

async fn rendezvous(
    alpha: &TailscaleProvider,
    beta: &TailscaleProvider,
    alpha_hostname: &str,
    beta_hostname: &str,
    timeout_dur: Duration,
) {
    let deadline = tokio::time::Instant::now() + timeout_dur;
    let mut attempts = 0_u32;
    loop {
        attempts += 1;
        let alpha_peers = alpha.peers().await;
        let beta_peers = beta.peers().await;

        let alpha_sees_beta = alpha_peers.iter().any(|p| p.hostname == beta_hostname);
        let beta_sees_alpha = beta_peers.iter().any(|p| p.hostname == alpha_hostname);

        if alpha_sees_beta && beta_sees_alpha {
            return;
        }

        if tokio::time::Instant::now() >= deadline {
            eprintln!("[pair] rendezvous diagnostic after {attempts} polls:");
            eprintln!(
                "  alpha ({alpha_hostname}) sees {} peer(s): {:?}",
                alpha_peers.len(),
                alpha_peers.iter().map(|p| &p.hostname).collect::<Vec<_>>()
            );
            eprintln!(
                "  beta ({beta_hostname}) sees {} peer(s): {:?}",
                beta_peers.len(),
                beta_peers.iter().map(|p| &p.hostname).collect::<Vec<_>>()
            );
            panic!(
                "pair rendezvous timeout after {timeout_dur:?}: \
                 alpha_sees_beta={alpha_sees_beta} \
                 beta_sees_alpha={beta_sees_alpha}"
            );
        }

        tokio::time::sleep(Duration::from_millis(500)).await;
    }
}

// =============================================================================
// Two-node Node-level pair (RFC 019 §7, §9)
// =============================================================================

/// Two full truffle Nodes on the same tailnet, wired through to Layer 7.
/// Each owns its own TailscaleProvider, WebSocket transport, session, and
/// envelope router.
///
/// Use this when the test exercises the Node API (SyncedStore, file transfer,
/// request/reply). For Layer-3-only tests, use [`NodePair`] instead.
pub struct TrufflePair {
    pub alpha: Arc<Node<TailscaleProvider>>,
    pub beta: Arc<Node<TailscaleProvider>>,
    pub alpha_device_name: String,
    pub beta_device_name: String,
    pub alpha_device_id: String,
    pub beta_device_id: String,
    _alpha_state: tempfile::TempDir,
    _beta_state: tempfile::TempDir,
}

impl TrufflePair {
    /// Gracefully stop both nodes. Drop is also safe (kill_on_drop +
    /// TempDir cleanup), but explicit stop gives deterministic teardown.
    pub async fn stop(self) {
        self.alpha.stop().await;
        self.beta.stop().await;
    }
}

/// Create a TrufflePair with default options.
pub async fn make_truffle_pair(authkey: &str) -> TrufflePair {
    make_truffle_pair_with(authkey, PairOpts::default()).await
}

/// Create a TrufflePair with custom options. Uses WS ports 9417/9418 by
/// default — each Node listens on its own tailnet IP so there is no port
/// conflict between the two.
pub async fn make_truffle_pair_with(authkey: &str, opts: PairOpts) -> TrufflePair {
    assert_sidecar_exists(&opts.sidecar_path);

    let run_id = uuid::Uuid::new_v4().to_string();
    let short_id: String = run_id.chars().take(8).collect();

    let alpha_state =
        tempfile::TempDir::with_prefix("truffle-test-alpha-").expect("create alpha tempdir");
    let beta_state =
        tempfile::TempDir::with_prefix("truffle-test-beta-").expect("create beta tempdir");

    let alpha_name = format!("alpha-{short_id}");
    let beta_name = format!("beta-{short_id}");

    eprintln!(
        "[truffle-pair] building alpha={alpha_name} beta={beta_name} \
         (authkey={})",
        redact_authkey(authkey)
    );

    // Both sides MUST use the same ws_port: a Node's WS transport dials
    // `peer_ip:self_port` when connecting, so mismatched ports mean the
    // dialer hits a closed port. Each Node listens on its own Tailscale
    // IP, so sharing the port is safe.
    let alpha_fut = NodeBuilder::default()
        .app_id(opts.app_id.clone())
        .expect("app_id should parse")
        .device_name(alpha_name.clone())
        .sidecar_path(opts.sidecar_path.clone())
        .state_dir(alpha_state.path().to_str().expect("utf8 path"))
        .auth_key(authkey)
        .ephemeral(true)
        .ws_port(9417)
        .build();
    let beta_fut = NodeBuilder::default()
        .app_id(opts.app_id.clone())
        .expect("app_id should parse")
        .device_name(beta_name.clone())
        .sidecar_path(opts.sidecar_path.clone())
        .state_dir(beta_state.path().to_str().expect("utf8 path"))
        .auth_key(authkey)
        .ephemeral(true)
        .ws_port(9417)
        .build();

    let (alpha_res, beta_res) = tokio::join!(alpha_fut, beta_fut);
    let alpha = Arc::new(alpha_res.expect("alpha Node build"));
    let beta = Arc::new(beta_res.expect("beta Node build"));

    let alpha_id = alpha.local_info().device_id;
    let beta_id = beta.local_info().device_id;

    rendezvous_nodes(
        &alpha,
        &beta,
        &alpha_name,
        &beta_name,
        opts.rendezvous_timeout,
    )
    .await;

    // Layer-3 peers are visible, but the Session layer hasn't received the
    // other side's hello yet — so `resolve_peer_id(<ULID>)` would still fail.
    // Force a WS + hello exchange so tests can address each other by ULID.
    warm_up_pair(
        &alpha,
        &beta,
        &alpha_name,
        &beta_name,
        opts.rendezvous_timeout,
    )
    .await;

    eprintln!(
        "[truffle-pair] warm-up complete — alpha_device_id={alpha_id} beta_device_id={beta_id}"
    );

    TrufflePair {
        alpha,
        beta,
        alpha_device_name: alpha_name,
        beta_device_name: beta_name,
        alpha_device_id: alpha_id,
        beta_device_id: beta_id,
        _alpha_state: alpha_state,
        _beta_state: beta_state,
    }
}

async fn rendezvous_nodes(
    alpha: &Arc<Node<TailscaleProvider>>,
    beta: &Arc<Node<TailscaleProvider>>,
    alpha_name: &str,
    beta_name: &str,
    timeout_dur: Duration,
) {
    let deadline = tokio::time::Instant::now() + timeout_dur;
    loop {
        let alpha_peers = alpha.peers().await;
        let beta_peers = beta.peers().await;

        let alpha_sees_beta = alpha_peers
            .iter()
            .any(|p| p.name.contains(beta_name) || p.device_name.contains(beta_name));
        let beta_sees_alpha = beta_peers
            .iter()
            .any(|p| p.name.contains(alpha_name) || p.device_name.contains(alpha_name));

        if alpha_sees_beta && beta_sees_alpha {
            return;
        }

        if tokio::time::Instant::now() >= deadline {
            eprintln!("[truffle-pair] rendezvous diagnostic:");
            eprintln!(
                "  alpha ({alpha_name}) sees {} peer(s): {:?}",
                alpha_peers.len(),
                alpha_peers
                    .iter()
                    .map(|p| format!("{} ({})", p.name, p.device_name))
                    .collect::<Vec<_>>()
            );
            eprintln!(
                "  beta ({beta_name}) sees {} peer(s): {:?}",
                beta_peers.len(),
                beta_peers
                    .iter()
                    .map(|p| format!("{} ({})", p.name, p.device_name))
                    .collect::<Vec<_>>()
            );
            panic!(
                "truffle-pair rendezvous timeout after {timeout_dur:?}: \
                 alpha_sees_beta={alpha_sees_beta} beta_sees_alpha={beta_sees_alpha}"
            );
        }

        tokio::time::sleep(Duration::from_millis(500)).await;
    }
}

/// Exchange a dummy message each direction and wait until both sides have
/// a live WS to the other — at which point the hello handshake has run and
/// the peer registry carries the real ULID device_id.
async fn warm_up_pair(
    alpha: &Arc<Node<TailscaleProvider>>,
    beta: &Arc<Node<TailscaleProvider>>,
    alpha_name: &str,
    beta_name: &str,
    timeout_dur: Duration,
) {
    // Find the tailscale_id of each peer from the other's Layer-3 view.
    let beta_ts_id = alpha
        .peers()
        .await
        .into_iter()
        .find(|p| p.name.contains(beta_name) || p.device_name.contains(beta_name))
        .map(|p| p.tailscale_id)
        .expect("beta must be in alpha's peer list after rendezvous");
    let alpha_ts_id = beta
        .peers()
        .await
        .into_iter()
        .find(|p| p.name.contains(alpha_name) || p.device_name.contains(alpha_name))
        .map(|p| p.tailscale_id)
        .expect("alpha must be in beta's peer list after rendezvous");

    // Fire warm-up messages. These go out on the `_pair_warmup` namespace,
    // which applications don't subscribe to — the receiver drops them, but
    // the Session layer still performs the WS connect + hello exchange.
    let _ = alpha
        .send_typed(
            &beta_ts_id,
            "_pair_warmup",
            "ping",
            &serde_json::Value::Null,
        )
        .await;
    let _ = beta
        .send_typed(
            &alpha_ts_id,
            "_pair_warmup",
            "ping",
            &serde_json::Value::Null,
        )
        .await;

    // Wait until both sides see the other as ws_connected.
    let deadline = tokio::time::Instant::now() + timeout_dur;
    loop {
        let a_ok = alpha
            .peers()
            .await
            .iter()
            .any(|p| p.tailscale_id == beta_ts_id && p.ws_connected);
        let b_ok = beta
            .peers()
            .await
            .iter()
            .any(|p| p.tailscale_id == alpha_ts_id && p.ws_connected);
        if a_ok && b_ok {
            return;
        }
        if tokio::time::Instant::now() >= deadline {
            eprintln!(
                "[truffle-pair] warm-up timeout: a_ok={a_ok} b_ok={b_ok} \
                 (ws connection didn't establish in {timeout_dur:?})"
            );
            return; // fall through — tests that need it will surface clearer errors
        }
        tokio::time::sleep(Duration::from_millis(250)).await;
    }
}

/// Poll `predicate` until it returns `Some(T)` or the deadline passes.
/// Returns `None` on timeout. Useful for "wait until converged" patterns
/// in integration tests.
pub async fn wait_for<T, F, Fut>(timeout: Duration, mut predicate: F) -> Option<T>
where
    F: FnMut() -> Fut,
    Fut: std::future::Future<Output = Option<T>>,
{
    let deadline = tokio::time::Instant::now() + timeout;
    loop {
        if let Some(v) = predicate().await {
            return Some(v);
        }
        if tokio::time::Instant::now() >= deadline {
            return None;
        }
        tokio::time::sleep(Duration::from_millis(100)).await;
    }
}

fn assert_sidecar_exists(path: &Path) {
    if !path.exists() {
        panic!(
            "test-sidecar binary not found at {}.\n\
             \n\
             truffle-core's build.rs builds this automatically when Go 1.22+ \
             is on PATH. Possible causes:\n\
               - `go` is not installed — install from https://go.dev/dl/\n\
               - `go build` failed (check cargo warnings from the previous build)\n\
               - The packages/sidecar-slim/ directory is missing\n\
             \n\
             Fallback: cd packages/sidecar-slim && go build -o {} .",
            path.display(),
            path.display()
        );
    }
}