memstead-cli 0.8.0

Command-line interface for Memstead — query and mutate typed entity graphs from the shell. Default build produces the full `memstead` binary (multi-mem, git-backed); `--no-default-features` builds the lean folder-only surface.
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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
#![cfg(feature = "mem-repo")]
// `memstead install` is mem-repo-only; the lean build has no install to
// exercise, so the whole binary is skipped under
// `--no-default-features`.

//! A published mem installs on the strength of the schema it carries.
//!
//! Every archive embeds the schema it pins. These tests pin the
//! consequence: a mem published under a vocabulary the installing
//! workspace has never seen installs, mounts, and reads — offline, with
//! no prior `memstead schema install` — because the install stages the
//! archive's own schema package into the storage the pin resolver
//! reads.
//!
//! The two tiers must never collapse into one another, so both
//! polarities are asserted against the SAME package content: authoring
//! (`schema validate` / `schema install`) refuses a retired key loudly
//! so the author can act, while the same bytes sealed inside an archive
//! install and keep their written meaning — the installing user is not
//! the author and cannot fix a third party's sealed package.

use std::fs;
use std::path::{Path, PathBuf};
use std::sync::{Mutex, OnceLock};

use assert_cmd::Command;
use tempfile::TempDir;

/// Serializes the `MEMSTEAD_MEM_CACHE` env override across tests in
/// this binary — env mutation is process-global.
fn cache_guard() -> std::sync::MutexGuard<'static, ()> {
    static LOCK: OnceLock<Mutex<()>> = OnceLock::new();
    // A panicking test poisons the lock; the guarded state is the
    // process env, which the next test overwrites anyway — so recover
    // rather than cascade one real failure into five fake ones.
    LOCK.get_or_init(|| Mutex::new(()))
        .lock()
        .unwrap_or_else(|e| e.into_inner())
}

/// The binary under test, with the operator role set: these fixtures
/// create mems, and mem creation is allowlist-gated in agent mode.
fn memstead() -> Command {
    let mut cmd = Command::cargo_bin("memstead").expect("memstead binary must be built by cargo");
    cmd.env("MEMSTEAD_OPERATOR_MODE", "1");
    cmd
}

fn run_ok(root: &Path, cache: &Path, args: &[&str]) -> Vec<u8> {
    memstead()
        .current_dir(root)
        .env("MEMSTEAD_MEM_CACHE", cache)
        .args(args)
        .assert()
        .success()
        .get_output()
        .stdout
        .clone()
}

/// The schema's manifest. `fieldnotes` is deliberately not a built-in:
/// resolving it in the receiver workspace is only possible from what
/// the archive carries.
const MANIFEST: &str = r#"name: fieldnotes
version: 0.1.0
description: A third-party vocabulary the installing workspace has never seen.
when_to_use: In the embedded-schema install tests.
types:
  - note
relationships:
  mode: strict
  definitions:
    - name: FOLLOWS
      description: Sequential ordering between notes
      default_weight: 2.0
    - name: _default
      description: Fallback weight for unknown relationships
      default_weight: 1.0
community:
  resolution: 1.0
  seed: 42
"#;

/// The type file in the CURRENT schema language. `retired_key_variant`
/// below is the same content with `no_self_loop_relationships:`
/// spelled as the key it was renamed from, so both tiers can be
/// asserted against one package.
const NOTE_TYPE: &str = r#"name: note
description: One field note.
when_to_use: For anything observed in the field.
sections:
  - key: body
    heading: Body
    required: true
    search_weight: 10.0
    catch_all: true
    write_rules:
      - One paragraph of observation.
metadata_fields:
  - key: observer
    description: Who wrote the note down.
    field_type: string
    required: true
title_weight: 100.0
text_fields:
  - body
hierarchy_relationship: FOLLOWS
no_self_loop_relationships:
  - FOLLOWS
updatable_fields:
  - title
  - body
health_required_fields:
  - body
staleness_threshold_days: 90
write_rules:
  - Keep it short.
"#;

/// The same type file spelled with the self-loop key retired on
/// 2026-08-08. An author writing this today is told to rename it; a
/// publisher who sealed it before the rename cannot be reached, so the
/// sealed copy keeps loading with its written meaning.
fn retired_selfloop_variant() -> String {
    NOTE_TYPE.replace("no_self_loop_relationships:", "propagating_relationships:")
}

/// The same type file spelled with the retired metadata-polarity key.
/// `optional: false` is the pre-flip way of writing `required: true`,
/// so a sealed copy must still resolve `observer` as required.
///
/// Pass `optional` to pick the polarity. BOTH are needed to prove the
/// key is read rather than dropped: an unmarked package resolves an
/// ABSENT key to required, so the `false` case alone passes whether
/// the key was honoured or silently discarded. Only the `true` case —
/// where honouring the key flips `observer` to optional — can tell the
/// two apart.
fn retired_optional_variant(optional: bool) -> String {
    let out = NOTE_TYPE.replace(
        "    field_type: string\n    required: true\n",
        &format!("    field_type: string\n    optional: {optional}\n"),
    );
    assert_ne!(out, NOTE_TYPE, "the polarity variant must actually differ");
    out
}

/// Write an authoring package directory carrying `note_type` as its
/// only type.
fn write_package(dir: &Path, note_type: &str) {
    fs::create_dir_all(dir.join("types")).unwrap();
    fs::write(dir.join("schema.yaml"), MANIFEST).unwrap();
    fs::write(dir.join("types").join("note.yaml"), note_type).unwrap();
}

/// Build a publisher workspace holding one mem pinned to
/// `fieldnotes@0.1.0` with a single entity, and export it. Returns the
/// archive path. The schema is installed here and ONLY here — the
/// receiver never sees the authoring package.
fn publish_fieldnotes_archive(root: &Path, cache: &Path) -> PathBuf {
    run_ok(root, cache, &["mem-repo", "init", "."]);
    let pkg = root.join("fieldnotes-pkg");
    write_package(&pkg, NOTE_TYPE);
    run_ok(root, cache, &["schema", "install", pkg.to_str().unwrap()]);
    run_ok(
        root,
        cache,
        &[
            "mem",
            "init",
            "field-log",
            "--schema",
            "fieldnotes@0.1.0",
            "--no-gitignore",
        ],
    );
    run_ok(
        root,
        cache,
        &[
            "create",
            "--mem",
            "field-log",
            "--title",
            "Morning Count",
            "--type",
            "note",
            "--section",
            "body=Eleven herons on the east bank, just after first light.",
            "--metadata",
            "observer=A. Ranger",
        ],
    );

    let archive = root.join("field-log.mem");
    run_ok(
        root,
        cache,
        &[
            "export",
            "--format",
            "mem",
            "--mem",
            "field-log",
            "-o",
            archive.to_str().unwrap(),
        ],
    );
    assert!(archive.is_file(), "export must produce the archive");
    archive
}

/// A receiver workspace: mem-repo shaped, one default-schema mem, and
/// no knowledge whatsoever of `fieldnotes`.
fn fresh_receiver(root: &Path, cache: &Path) {
    run_ok(root, cache, &["mem-repo", "init", "."]);
    run_ok(root, cache, &["mem", "init", "notes", "--no-gitignore"]);
}

/// The archive member holding the embedded type file.
const NOTE_MEMBER: &str = ".memstead/schema/types/note.yaml";
/// The archive member whose presence declares the package's
/// metadata-polarity generation.
const MARKER_MEMBER: &str = ".memstead/schema/schema-format.json";

/// Rewrite an archive, replacing one member's bytes and optionally
/// dropping others; every remaining member is copied through
/// byte-identical. This is how a genuinely pre-rename published
/// archive is reproduced: the publisher is unreachable, so the bytes
/// are what they are.
fn repack(src: &Path, dest: &Path, member: &str, new_bytes: &[u8], drop: &[&str]) {
    use std::io::{Read as _, Write as _};
    let mut archive = zip::ZipArchive::new(fs::File::open(src).unwrap()).unwrap();
    let mut writer = zip::ZipWriter::new(fs::File::create(dest).unwrap());
    let opts = zip::write::SimpleFileOptions::default();
    let mut replaced = false;
    for i in 0..archive.len() {
        let mut entry = archive.by_index(i).unwrap();
        let name = entry.name().to_string();
        let mut bytes = Vec::new();
        entry.read_to_end(&mut bytes).unwrap();
        if drop.contains(&name.as_str()) {
            continue;
        }
        writer.start_file(&name, opts).unwrap();
        if name == member {
            writer.write_all(new_bytes).unwrap();
            replaced = true;
        } else {
            writer.write_all(&bytes).unwrap();
        }
    }
    writer.finish().unwrap();
    assert!(replaced, "archive must carry the member {member}");
}

/// Read the schemas the receiver workspace now resolves from its own
/// local storage (the mem-repo's `__MEMSTEAD:schemas/` ref) — the
/// source the pin resolver consults, so what is readable here is what
/// a mount can be registered against.
fn staged_schemas(root: &Path) -> Vec<std::sync::Arc<memstead_schema::Schema>> {
    match memstead_git_branch::mem_repo_schemas::load_schemas_from_ref(root).unwrap() {
        memstead_git_branch::mem_repo_schemas::LoadOutcome::Schemas(s) => s,
        _ => Vec::new(),
    }
}

/// AC1 — a mem published under a schema the installing workspace has
/// never seen installs, mounts, and its entities are readable. No
/// network, no prior `schema install` in the receiver.
#[test]
fn archive_under_an_unknown_schema_installs_mounts_and_reads() {
    let _guard = cache_guard();
    let sender = TempDir::new().unwrap();
    let receiver = TempDir::new().unwrap();
    let cache = TempDir::new().unwrap();

    let archive = publish_fieldnotes_archive(sender.path(), cache.path());
    fresh_receiver(receiver.path(), cache.path());

    // Nothing named `fieldnotes` exists in the receiver before install.
    assert!(
        !staged_schemas(receiver.path())
            .iter()
            .any(|s| s.manifest.name == "fieldnotes"),
        "receiver must start with no knowledge of the publisher's schema"
    );

    run_ok(
        receiver.path(),
        cache.path(),
        &["install", archive.to_str().unwrap()],
    );

    // The mount is registered AND the entity reads back through it.
    let out = run_ok(
        receiver.path(),
        cache.path(),
        &["--json", "entity", "field-log--morning-count"],
    );
    let entity: serde_json::Value = serde_json::from_slice(&out).unwrap();
    assert_eq!(entity["type"], "note", "got: {entity}");
    assert!(
        entity.to_string().contains("Eleven herons"),
        "the installed mem's content must be readable: {entity}"
    );
}

/// AC2 — an archive whose embedded schema uses the retired
/// `propagating_relationships` key installs, and the key's written
/// meaning survives into the loaded schema.
#[test]
fn archive_with_a_retired_selfloop_key_installs_and_keeps_its_meaning() {
    let _guard = cache_guard();
    let sender = TempDir::new().unwrap();
    let receiver = TempDir::new().unwrap();
    let cache = TempDir::new().unwrap();

    let archive = publish_fieldnotes_archive(sender.path(), cache.path());
    let retired = sender.path().join("field-log-retired.mem");
    repack(
        &archive,
        &retired,
        NOTE_MEMBER,
        retired_selfloop_variant().as_bytes(),
        &[],
    );

    fresh_receiver(receiver.path(), cache.path());
    run_ok(
        receiver.path(),
        cache.path(),
        &["install", retired.to_str().unwrap()],
    );

    let staged = staged_schemas(receiver.path());
    let fieldnotes = staged
        .iter()
        .find(|s| s.manifest.name == "fieldnotes")
        .unwrap_or_else(|| panic!("staged schemas: {}", staged.len()));
    let note = fieldnotes.types.get("note").expect("type `note` must load");
    assert_eq!(
        note.no_self_loop_relationships,
        vec!["FOLLOWS".to_string()],
        "the retired key's written meaning must survive the rename"
    );

    // And the mem itself reads.
    let out = run_ok(
        receiver.path(),
        cache.path(),
        &["--json", "entity", "field-log--morning-count"],
    );
    let entity: serde_json::Value = serde_json::from_slice(&out).unwrap();
    assert_eq!(entity["type"], "note", "got: {entity}");
}

/// AC2, other retired key — a pre-flip archive writes `optional:`
/// where the current language writes `required:`. Such a package
/// carries no format marker (the marker and the polarity flip landed
/// together), so it reads under the generation it was sealed in.
///
/// BOTH polarities run, and the `true` case is the one that carries
/// the proof: an unmarked package resolves an ABSENT required/optional
/// key to required, so `optional: false` → required would hold equally
/// if the key were silently dropped. `optional: true` → optional can
/// only happen if the key was actually read and inverted.
#[test]
fn archive_with_a_retired_polarity_key_installs_and_keeps_its_meaning() {
    let _guard = cache_guard();
    let cache = TempDir::new().unwrap();

    for (optional, expect_required) in [(false, true), (true, false)] {
        let sender = TempDir::new().unwrap();
        let receiver = TempDir::new().unwrap();

        let archive = publish_fieldnotes_archive(sender.path(), cache.path());
        let preflip = sender.path().join("field-log-preflip.mem");
        repack(
            &archive,
            &preflip,
            NOTE_MEMBER,
            retired_optional_variant(optional).as_bytes(),
            &[MARKER_MEMBER],
        );

        fresh_receiver(receiver.path(), cache.path());
        run_ok(
            receiver.path(),
            cache.path(),
            &["install", preflip.to_str().unwrap()],
        );

        let staged = staged_schemas(receiver.path());
        let fieldnotes = staged
            .iter()
            .find(|s| s.manifest.name == "fieldnotes")
            .unwrap_or_else(|| panic!("staged schemas: {}", staged.len()));
        let note = fieldnotes.types.get("note").expect("type `note` must load");
        let observer = note
            .metadata_fields
            .iter()
            .find(|f| f.key == "observer")
            .expect("metadata field `observer` must load");
        assert_eq!(
            observer.required_resolved, expect_required,
            "`optional: {optional}` must invert to required={expect_required} — \
             the written meaning must survive the retirement"
        );
    }
}

/// AC3 — both polarities, one package, both retired keys. Authoring
/// refuses each retired key by name so the author can fix it; the same
/// content sealed in an archive installs. If the two tiers were ever
/// collapsed, one half of this test would fail.
#[test]
fn authoring_refuses_what_a_sealed_archive_still_admits() {
    let _guard = cache_guard();
    let sender = TempDir::new().unwrap();
    let cache = TempDir::new().unwrap();

    // --- Authoring half: the package directory refuses, loudly, for
    // BOTH retired keys and BOTH authoring verbs. ---
    let ws = sender.path();
    run_ok(ws, cache.path(), &["mem-repo", "init", "."]);

    let cases: [(&str, String, &str, &str); 2] = [
        (
            "selfloop",
            retired_selfloop_variant(),
            "propagating_relationships",
            "no_self_loop_relationships",
        ),
        (
            "polarity",
            retired_optional_variant(false),
            "optional",
            "required: true",
        ),
    ];
    for (label, content, retired_key, current_key) in &cases {
        let pkg = ws.join(format!("retired-{label}-pkg"));
        write_package(&pkg, content);
        for verb in ["validate", "install"] {
            let out = memstead()
                .current_dir(ws)
                .env("MEMSTEAD_MEM_CACHE", cache.path())
                .args(["--json", "schema", verb, pkg.to_str().unwrap()])
                .assert()
                .failure()
                .get_output()
                .stdout
                .clone();
            let envelope: serde_json::Value = serde_json::from_slice(&out).unwrap();
            let rendered = envelope.to_string();
            assert!(
                rendered.contains(retired_key),
                "`schema {verb}` must name the offending retired key \
                 `{retired_key}` — got: {rendered}"
            );
            assert!(
                rendered.contains(current_key),
                "`schema {verb}` must name the current spelling \
                 `{current_key}` so the author can act — got: {rendered}"
            );
        }
    }

    // --- Sealed half: the same content inside an archive installs.
    // Each sealed case gets its own receiver so neither can borrow the
    // other's staged schema. ---
    let publisher = TempDir::new().unwrap();
    let archive = publish_fieldnotes_archive(publisher.path(), cache.path());
    for (label, content, _, _) in &cases {
        let sealed = publisher.path().join(format!("sealed-{label}.mem"));
        // The polarity case reproduces a genuinely pre-flip package:
        // no format marker, because the marker postdates the flip.
        let drop: &[&str] = if *label == "polarity" {
            &[MARKER_MEMBER]
        } else {
            &[]
        };
        repack(&archive, &sealed, NOTE_MEMBER, content.as_bytes(), drop);

        let receiver = TempDir::new().unwrap();
        fresh_receiver(receiver.path(), cache.path());
        run_ok(
            receiver.path(),
            cache.path(),
            &["install", sealed.to_str().unwrap()],
        );
    }
}

/// AC4 — an archive whose embedded schema genuinely cannot be loaded
/// refuses under its own code, quotes the loader, does not send the
/// user off to obtain a package the archive contains, and leaves
/// neither a mount nor a staged schema behind.
#[test]
fn unloadable_embedded_schema_refuses_and_leaves_nothing_behind() {
    let _guard = cache_guard();
    let sender = TempDir::new().unwrap();
    let receiver = TempDir::new().unwrap();
    let cache = TempDir::new().unwrap();

    let archive = publish_fieldnotes_archive(sender.path(), cache.path());
    let broken = sender.path().join("broken.mem");
    repack(
        &archive,
        &broken,
        NOTE_MEMBER,
        b"name: note\nsections: [ this is not: valid: yaml\n",
        &[],
    );

    fresh_receiver(receiver.path(), cache.path());
    let out = memstead()
        .current_dir(receiver.path())
        .env("MEMSTEAD_MEM_CACHE", cache.path())
        .args(["--json", "install", broken.to_str().unwrap()])
        .assert()
        .failure()
        .get_output()
        .stdout
        .clone();
    let envelope: serde_json::Value = serde_json::from_slice(&out).unwrap();

    let code = envelope["code"].as_str().unwrap_or_default();
    assert_ne!(code, "SCHEMA_NOT_FOUND", "got: {envelope}");
    assert_ne!(code, "INTERNAL", "got: {envelope}");
    assert_eq!(code, "EMBEDDED_SCHEMA_INVALID", "got: {envelope}");

    let message = envelope["message"].as_str().unwrap_or_default();
    assert!(
        message.contains("note.yaml") || message.contains("parse"),
        "the refusal must quote the loader's own diagnosis: {message}"
    );
    assert!(
        !message.contains("memstead schema install"),
        "the package is inside the archive — never advise obtaining it: {message}"
    );

    // Nothing mounted, nothing staged.
    memstead()
        .current_dir(receiver.path())
        .env("MEMSTEAD_MEM_CACHE", cache.path())
        .args(["--json", "entity", "field-log--morning-count"])
        .assert()
        .failure();
    assert!(
        !staged_schemas(receiver.path())
            .iter()
            .any(|s| s.manifest.name == "fieldnotes"),
        "a refused install must leave no staged schema"
    );
}

/// AC5 — installing the same mem twice is a no-op on the second run,
/// and two mems pinning the same schema install in either order.
#[test]
fn reinstall_is_a_noop_and_a_shared_schema_installs_in_either_order() {
    let _guard = cache_guard();
    let sender = TempDir::new().unwrap();
    let cache = TempDir::new().unwrap();

    // One publisher workspace, two mems on the same schema.
    let ws = sender.path();
    run_ok(ws, cache.path(), &["mem-repo", "init", "."]);
    let pkg = ws.join("fieldnotes-pkg");
    write_package(&pkg, NOTE_TYPE);
    run_ok(
        ws,
        cache.path(),
        &["schema", "install", pkg.to_str().unwrap()],
    );

    let mut archives = Vec::new();
    for mem in ["field-log", "tide-log"] {
        run_ok(
            ws,
            cache.path(),
            &[
                "mem",
                "init",
                mem,
                "--schema",
                "fieldnotes@0.1.0",
                "--no-gitignore",
            ],
        );
        run_ok(
            ws,
            cache.path(),
            &[
                "create",
                "--mem",
                mem,
                "--title",
                "First Entry",
                "--type",
                "note",
                "--section",
                "body=Something worth writing down.",
                "--metadata",
                "observer=A. Ranger",
            ],
        );
        let archive = ws.join(format!("{mem}.mem"));
        run_ok(
            ws,
            cache.path(),
            &[
                "export",
                "--format",
                "mem",
                "--mem",
                mem,
                "-o",
                archive.to_str().unwrap(),
            ],
        );
        archives.push(archive);
    }

    // Both orders, each in its own receiver.
    for order in [[0usize, 1usize], [1, 0]] {
        let receiver = TempDir::new().unwrap();
        fresh_receiver(receiver.path(), cache.path());
        for i in order {
            run_ok(
                receiver.path(),
                cache.path(),
                &["install", archives[i].to_str().unwrap()],
            );
        }
        // Both read back, whichever went first.
        for mem in ["field-log", "tide-log"] {
            run_ok(
                receiver.path(),
                cache.path(),
                &["--json", "entity", &format!("{mem}--first-entry")],
            );
        }
        // Exactly one staged copy of the shared schema.
        let staged = staged_schemas(receiver.path());
        assert_eq!(
            staged
                .iter()
                .filter(|s| s.manifest.name == "fieldnotes")
                .count(),
            1,
            "two mems sharing a schema stage it once"
        );
    }

    // Re-installing the same archive is a no-op on the mount side.
    let receiver = TempDir::new().unwrap();
    fresh_receiver(receiver.path(), cache.path());
    run_ok(
        receiver.path(),
        cache.path(),
        &["install", archives[0].to_str().unwrap()],
    );
    let out = memstead()
        .current_dir(receiver.path())
        .env("MEMSTEAD_MEM_CACHE", cache.path())
        .args(["--json", "install", archives[0].to_str().unwrap()])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();
    let payload: serde_json::Value = serde_json::from_slice(&out).unwrap();
    assert_eq!(payload["mount"], "already_registered", "got: {payload}");
    assert_eq!(payload["copied_to_cache"], false, "got: {payload}");
}