mnem-cli 0.1.7

Command-line interface for mnem - Git for AI Agent Knowledge.
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
//! Integration tests for `mnem export` / `mnem import`.
//!
//! Uses `assert_cmd` to drive the built `mnem` binary against
//! temporary repos. Each test is end-to-end: init a repo, write some
//! content, export to a CAR, import into a second repo, confirm the
//! imported side sees the same blocks.

use std::path::Path;
use std::process::Command;
use std::sync::Arc;

use assert_cmd::prelude::*;
use bytes::Bytes;
use mnem_backend_redb::open_or_init;
use mnem_core::id::NodeId;
use mnem_core::objects::Node;
use mnem_core::objects::node::{Dtype, Embedding};
use mnem_core::repo::ReadonlyRepo;
use mnem_core::sparse::SparseEmbed;
use mnem_core::store::{Blockstore, OpHeadsStore};
use tempfile::TempDir;

/// Run `mnem <args>...` from inside `repo` as cwd, plus `-R <repo>`
/// so commands that honour the flag pick the right directory. Two
/// different mechanisms because `mnem init` takes an optional
/// positional path, while most other commands use `-R`.
fn mnem(repo: &Path, args: &[&str]) -> Command {
    let mut cmd = Command::cargo_bin("mnem").expect("built mnem binary");
    cmd.current_dir(repo);
    cmd.arg("-R").arg(repo);
    for a in args {
        cmd.arg(a);
    }
    cmd
}

#[test]
fn freshly_initialized_repo_exports_successfully() {
    // `mnem init` always seeds a Meta anchor node (seed_anchor_node),
    // so a freshly-initialised repo always has a head commit and
    // `mnem export` must succeed rather than returning an error.
    let dir = TempDir::new().unwrap();
    // `init` takes an explicit positional path (it ignores `-R`).
    mnem(dir.path(), &["init", dir.path().to_str().unwrap()])
        .assert()
        .success();

    let car = dir.path().join("out.car");
    let out = mnem(dir.path(), &["export", car.to_str().unwrap()])
        .assert()
        .success();
    let stdout = String::from_utf8_lossy(&out.get_output().stdout).to_string();
    assert!(
        stdout.contains("exported") && stdout.contains("blocks"),
        "expected export confirmation, got: {stdout}"
    );
}

#[test]
fn export_then_import_round_trip() {
    // Build repo A, add a node to give it a head commit, export the
    // head, import into a fresh repo B, and assert the import stats
    // line matches the export stats line (same block count + bytes).
    let src = TempDir::new().unwrap();
    mnem(src.path(), &["init", src.path().to_str().unwrap()])
        .assert()
        .success();
    mnem(
        src.path(),
        &[
            "add",
            "node",
            "--summary",
            "roundtrip payload",
            "--prop",
            "kind=doc",
        ],
    )
    .assert()
    .success();

    let car = src.path().join("snapshot.car");
    let export_out = mnem(
        src.path(),
        &["export", car.to_str().unwrap(), "--from", "HEAD"],
    )
    .assert()
    .success();
    let export_stdout = String::from_utf8_lossy(&export_out.get_output().stdout).to_string();
    assert!(
        export_stdout.starts_with("exported "),
        "export stdout: {export_stdout}"
    );
    assert!(car.exists(), "CAR file must be produced on disk");
    let car_size = std::fs::metadata(&car).unwrap().len();
    assert!(car_size > 0, "CAR must be non-empty");

    // Parse the block count out of the stdout line for cross-check.
    // Format: "exported N blocks, M bytes to <path>".
    let exported_n = export_stdout
        .split_whitespace()
        .nth(1)
        .and_then(|s| s.parse::<u64>().ok())
        .unwrap_or_else(|| panic!("could not parse block count from: {export_stdout}"));
    assert!(
        exported_n >= 4,
        "a committed repo has commit+view+op+trees, got {exported_n}"
    );

    // Fresh destination.
    let dst = TempDir::new().unwrap();
    mnem(dst.path(), &["init", dst.path().to_str().unwrap()])
        .assert()
        .success();

    let import_out = mnem(dst.path(), &["import", car.to_str().unwrap()])
        .assert()
        .success();
    let import_stdout = String::from_utf8_lossy(&import_out.get_output().stdout).to_string();
    assert!(
        import_stdout.starts_with("imported "),
        "import stdout: {import_stdout}"
    );
    let imported_n = import_stdout
        .split_whitespace()
        .nth(1)
        .and_then(|s| s.parse::<u64>().ok())
        .unwrap_or_else(|| panic!("could not parse block count from: {import_stdout}"));
    assert_eq!(
        exported_n, imported_n,
        "block counts must match across export / import"
    );
}

/// Prove that embedding sidecar blocks are included in the CAR file and
/// survive a full export / import round-trip.
///
/// The test seeds a source repo with a node + embedding directly via the
/// Rust API (no external embedder needed), exports to a CAR, imports into a
/// fresh repo, then re-opens the destination repo via the Rust API and
/// asserts that `embedding_for` returns the original vector. This is the
/// critical unverified invariant from the G16 audit: a CAR that silently
/// drops sidecar blocks would let an import succeed with zero embedding
/// vectors.
#[test]
fn sidecar_blocks_round_trip_through_car() {
    // ---- source repo: init via CLI ----
    let src = TempDir::new().unwrap();
    mnem(src.path(), &["init", src.path().to_str().unwrap()])
        .assert()
        .success();

    // ---- seed a node + embedding via Rust API ----
    let model = "test:sidecar-model";
    let dim: u32 = 4;

    // Build a small f32 embedding vector.
    let vector: Vec<f32> = (0..dim).map(|i| (i + 1) as f32 / dim as f32).collect();
    let mut vector_bytes = Vec::with_capacity(dim as usize * 4);
    for v in &vector {
        vector_bytes.extend_from_slice(&v.to_le_bytes());
    }
    let emb = Embedding {
        model: model.to_string(),
        dtype: Dtype::F32,
        dim,
        vector: Bytes::from(vector_bytes),
    };

    let node_cid = {
        let db_path = src.path().join(".mnem").join("repo.redb");
        let (bs, ohs, _db) = open_or_init(&db_path).expect("open src redb");
        let bs_arc: Arc<dyn Blockstore> = bs;
        let ohs_arc: Arc<dyn OpHeadsStore> = ohs;
        let repo = ReadonlyRepo::open(bs_arc, ohs_arc).expect("open src repo");

        let node = Node::new(NodeId::new_v7(), "TestDoc").with_summary("sidecar round-trip test");
        let mut tx = repo.start_transaction();
        let cid = tx.add_node(&node).expect("add node");
        tx.set_embedding(cid.clone(), model.to_string(), emb.clone())
            .expect("set embedding");
        tx.commit("test-author", "add node with sidecar embedding")
            .expect("commit");
        cid
    };

    // ---- export src to CAR ----
    let car = src.path().join("sidecar.car");
    mnem(
        src.path(),
        &["export", car.to_str().unwrap(), "--from", "HEAD"],
    )
    .assert()
    .success();
    assert!(car.exists(), "CAR file must exist after export");
    assert!(
        std::fs::metadata(&car).unwrap().len() > 0,
        "CAR must be non-empty"
    );

    // ---- destination repo: import into a fresh directory (no prior init).
    //
    // We deliberately skip `mnem init` here. The import command auto-creates
    // `.mnem/` and calls `ReadonlyRepo::init` internally. If we ran `mnem init`
    // first, we would have TWO disconnected op-heads (the init one + the
    // imported one), causing `ReadonlyRepo::open` to fail with NoCommonAncestor
    // when we try to verify the embedding after import.
    let dst = TempDir::new().unwrap();
    // Create the parent directory; `mnem import` will create `.mnem/` itself.
    std::fs::create_dir_all(dst.path()).unwrap();
    mnem(dst.path(), &["import", car.to_str().unwrap()])
        .assert()
        .success();

    // ---- verify embedding survived the round-trip via Rust API ----
    // After import, the op-heads store has exactly one head. We use
    // `load_at` with the single op-head to avoid the multi-head merge path.
    let db_path = dst.path().join(".mnem").join("repo.redb");
    let (bs, ohs, _db) = open_or_init(&db_path).expect("open dst redb");
    let bs_arc: Arc<dyn Blockstore> = bs;
    let ohs_arc: Arc<dyn OpHeadsStore> = ohs;
    // Take the latest (and only) op-head directly so we don't trigger the
    // multi-head merge path (which requires a common ancestor).
    let heads = ohs_arc.current().expect("get op heads");
    assert!(
        !heads.is_empty(),
        "dst op-heads must be non-empty after import"
    );
    let latest_op = heads.into_iter().last().unwrap();
    let repo = ReadonlyRepo::load_at(bs_arc, ohs_arc, latest_op).expect("load dst repo");

    let got = repo
        .embedding_for(&node_cid, model)
        .expect("embedding_for must not error");

    assert!(
        got.is_some(),
        "embedding sidecar block must be present in the destination repo after CAR import; \
         got None -- sidecar blocks are likely missing from the CAR file"
    );

    let got_emb = got.unwrap();
    assert_eq!(got_emb.model, model, "model string must match");
    assert_eq!(got_emb.dim, dim, "dim must match");
    assert_eq!(got_emb.dtype, Dtype::F32, "dtype must match");
    assert_eq!(
        got_emb.vector, emb.vector,
        "vector bytes must be byte-identical after round-trip"
    );
}

/// Prove that sparse-embedding sidecar blocks (G17) survive a full
/// CAR export / import round-trip.
///
/// Analogous to `sidecar_blocks_round_trip_through_car` for the dense
/// (G16) embedding sidecar: seeds a source repo with two nodes, each
/// with two sparse embeddings under different vocab_ids, exports to a
/// CAR, imports into a fresh repo, then verifies:
///
/// - exported block count == imported block count (sparse Prolly-tree
///   blocks are present in the CAR, not silently dropped)
/// - `Commit.sparse` is `Some` in the destination (sidecar root CID
///   survived the import)
/// - all four sparse embeddings survive individually (`sparse_for`)
/// - `sparse_vocabs_for` lists exactly the two seeded vocab_ids per node
/// - an unseeded vocab_id returns `None` (lookup isolation)
/// - all indices and values are bit-identical after round-trip
///
/// A CAR that silently dropped sparse Prolly-tree blocks would let the
/// import succeed but return `None` on `sparse_for` lookup.
#[test]
fn sparse_sidecar_blocks_round_trip_through_car() {
    // ---- source repo: init via CLI ----
    let src = TempDir::new().unwrap();
    mnem(src.path(), &["init", src.path().to_str().unwrap()])
        .assert()
        .success();

    // Two vocab_ids to verify multi-entry SparseBucket serialization
    // survives the CAR boundary.
    let vocab_a = "test:splade-sparse";
    let vocab_b = "test:bge-m3-sparse";

    let se_a1 = SparseEmbed::new(
        vec![10, 20, 30, 100],
        vec![0.9, 0.5, 0.1, 0.3],
        vocab_a,
    )
    .expect("valid SparseEmbed node1 vocab_a");
    let se_b1 = SparseEmbed::new(
        vec![5, 15, 42],
        vec![0.8, 0.4, 0.2],
        vocab_b,
    )
    .expect("valid SparseEmbed node1 vocab_b");
    let se_a2 = SparseEmbed::new(
        vec![3, 7, 11, 200],
        vec![0.6, 0.3, 0.7, 0.1],
        vocab_a,
    )
    .expect("valid SparseEmbed node2 vocab_a");
    let se_b2 = SparseEmbed::new(
        vec![1, 50, 99],
        vec![0.5, 0.9, 0.4],
        vocab_b,
    )
    .expect("valid SparseEmbed node2 vocab_b");

    // Two nodes give the sparse Prolly tree multiple entries, exercising
    // the multi-bucket serialization path through the CAR boundary.
    let (node1_cid, node2_cid) = {
        let db_path = src.path().join(".mnem").join("repo.redb");
        let (bs, ohs, _db) = open_or_init(&db_path).expect("open src redb");
        let bs_arc: Arc<dyn Blockstore> = bs;
        let ohs_arc: Arc<dyn OpHeadsStore> = ohs;
        let repo = ReadonlyRepo::open(bs_arc, ohs_arc).expect("open src repo");

        let n1 = Node::new(NodeId::new_v7(), "TestDoc")
            .with_summary("sparse sidecar round-trip node 1");
        let n2 = Node::new(NodeId::new_v7(), "TestDoc")
            .with_summary("sparse sidecar round-trip node 2");
        let mut tx = repo.start_transaction();
        let cid1 = tx.add_node(&n1).expect("add node1");
        let cid2 = tx.add_node(&n2).expect("add node2");
        tx.set_sparse_embedding(cid1.clone(), vocab_a.to_string(), se_a1.clone())
            .expect("set node1 vocab_a");
        tx.set_sparse_embedding(cid1.clone(), vocab_b.to_string(), se_b1.clone())
            .expect("set node1 vocab_b");
        tx.set_sparse_embedding(cid2.clone(), vocab_a.to_string(), se_a2.clone())
            .expect("set node2 vocab_a");
        tx.set_sparse_embedding(cid2.clone(), vocab_b.to_string(), se_b2.clone())
            .expect("set node2 vocab_b");
        tx.commit("test-author", "add two nodes with sparse sidecar")
            .expect("commit");
        (cid1, cid2)
    };

    // ---- export src to CAR and capture block count ----
    let car = src.path().join("sparse-sidecar.car");
    let export_out = mnem(
        src.path(),
        &["export", car.to_str().unwrap(), "--from", "HEAD"],
    )
    .assert()
    .success();
    let export_stdout = String::from_utf8_lossy(&export_out.get_output().stdout).to_string();
    let exported_n = export_stdout
        .split_whitespace()
        .nth(1)
        .and_then(|s| s.parse::<u64>().ok())
        .unwrap_or_else(|| panic!("could not parse block count from: {export_stdout}"));
    assert!(
        car.exists(),
        "CAR file must exist after export"
    );
    assert!(
        exported_n > 4,
        "sparse sidecar must add Prolly-tree blocks beyond the base commit graph; \
         got {exported_n} blocks"
    );

    // ---- destination repo: import into fresh directory (no prior init) ----
    //
    // Skipping `mnem init` so the import is the sole op-head writer.
    // A prior `mnem init` would leave two disconnected op-heads,
    // causing ReadonlyRepo::open to fail with NoCommonAncestor.
    let dst = TempDir::new().unwrap();
    let import_out = mnem(dst.path(), &["import", car.to_str().unwrap()])
        .assert()
        .success();
    let import_stdout = String::from_utf8_lossy(&import_out.get_output().stdout).to_string();
    let imported_n = import_stdout
        .split_whitespace()
        .nth(1)
        .and_then(|s| s.parse::<u64>().ok())
        .unwrap_or_else(|| panic!("could not parse block count from: {import_stdout}"));

    // Block count must match exactly: every block the exporter walked
    // (including sparse Prolly-tree blocks) must arrive at the destination.
    assert_eq!(
        exported_n, imported_n,
        "all CAR blocks exported ({exported_n}) must be imported ({imported_n}); \
         a mismatch means sparse Prolly-tree blocks were silently dropped by the exporter"
    );

    // ---- verify sparse sidecar survived the round-trip ----
    let db_path = dst.path().join(".mnem").join("repo.redb");
    let (bs, ohs, _db) = open_or_init(&db_path).expect("open dst redb");
    let bs_arc: Arc<dyn Blockstore> = bs;
    let ohs_arc: Arc<dyn OpHeadsStore> = ohs;
    let heads = ohs_arc.current().expect("get op heads");
    assert!(
        !heads.is_empty(),
        "dst op-heads must be non-empty after import"
    );
    let latest_op = heads.into_iter().last().unwrap();
    let repo = ReadonlyRepo::load_at(bs_arc, ohs_arc, latest_op).expect("load dst repo");

    // Commit.sparse must be Some - the sidecar root CID pointer survived.
    let commit = repo.head_commit().expect("dst must have a head commit");
    assert!(
        commit.sparse.is_some(),
        "Commit.sparse must be Some after CAR round-trip; \
         the sidecar root CID was likely dropped during export or import"
    );

    // All four sparse embeddings (two nodes × two vocab_ids) must survive
    // byte-identically.
    let cases: &[(&mnem_core::id::Cid, &str, &SparseEmbed)] = &[
        (&node1_cid, vocab_a, &se_a1),
        (&node1_cid, vocab_b, &se_b1),
        (&node2_cid, vocab_a, &se_a2),
        (&node2_cid, vocab_b, &se_b2),
    ];
    for (node_cid, vocab_id, se) in cases {
        let got = repo
            .sparse_for(node_cid, vocab_id)
            .expect("sparse_for must not error");
        assert!(
            got.is_some(),
            "sparse sidecar block must survive CAR export/import \
             for node_cid={node_cid} vocab_id={vocab_id}; \
             got None - sparse Prolly-tree blocks are likely missing from the CAR"
        );
        let got_se = got.unwrap();
        assert_eq!(got_se.vocab_id, *vocab_id, "vocab_id field must match");
        assert_eq!(
            got_se.indices, se.indices,
            "indices must be identical after round-trip (vocab_id={vocab_id})"
        );
        assert_eq!(
            got_se.values.len(),
            se.values.len(),
            "values length must match (vocab_id={vocab_id})"
        );
        for (i, (got_v, exp_v)) in got_se.values.iter().zip(se.values.iter()).enumerate() {
            assert_eq!(
                got_v.to_bits(),
                exp_v.to_bits(),
                "values[{i}] must be bit-identical after round-trip \
                 (vocab_id={vocab_id}): got {got_v}, expected {exp_v}"
            );
        }
    }

    // sparse_vocabs_for must list exactly the two seeded vocab_ids per node.
    for node_cid in [&node1_cid, &node2_cid] {
        let mut vocabs = repo
            .sparse_vocabs_for(node_cid)
            .expect("sparse_vocabs_for must not error");
        vocabs.sort();
        let mut expected = vec![vocab_a.to_string(), vocab_b.to_string()];
        expected.sort();
        assert_eq!(
            vocabs, expected,
            "sparse_vocabs_for must return exactly the two seeded vocab_ids \
             after round-trip (node_cid={node_cid})"
        );
    }

    // An unseeded vocab_id must return None (lookup isolation).
    let absent = repo
        .sparse_for(&node1_cid, "test:never-seeded")
        .expect("sparse_for for absent vocab must not error");
    assert!(
        absent.is_none(),
        "sparse_for for an unseeded vocab_id must return None after round-trip"
    );
}