bc-envelope-cli 0.35.0

Gordian Envelope Command Line Tool.
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
mod common;
use anyhow::Result;
use common::*;
use indoc::indoc;

#[test]
fn test_walk_basic() -> Result<()> {
    // The output should contain all node digests space-separated
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["walk", ALICE_KNOWS_BOB_EXAMPLE],
        indoc!(r#"
            ur:digest/hdcxbwmwcwfdkecauerfvsdirpwpfhfgtalfmulesnstvlrpoyfzuyenamdpmdcfutdlstyaqzrk ur:digest/hdcxbwrlfpmwnsemrovtnssrtnotcfgshdvezcjedlbbtypatiwtecoxjnjnhtcafhbysptsnsnl ur:digest/hdcxkstbiywmmygsasktnbfwhtrppkclwdcmmugejesokejlbnftrdwspsmdcechbboerhzebtws ur:digest/hdcxldgouyhyadimzmpaeourhfsectvaskspdlotaxidiatbgydejnbwgskbhfrtwlwzneroatds ur:digest/hdcxuykitdcegyinqzlrlgdrcwsbbkihcemtchsntabdpldtbzjepkwsrkdrlernykrddpjtgdfh
        "#)
    )?;

    Ok(())
}

#[test]
fn test_walk_matching_elided() -> Result<()> {
    // Create an envelope with an elided assertion
    let knows_assertion =
        run_cli(&["assertion", "at", "0", ALICE_KNOWS_BOB_EXAMPLE])?;
    let assertion_digest = run_cli(&["digest", &knows_assertion])?;
    let elided = run_cli(&[
        "elide",
        "removing",
        &assertion_digest,
        ALICE_KNOWS_BOB_EXAMPLE,
    ])?;

    // Verify the elided format
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &elided],
        indoc!(r#"
            "Alice" [
                ELIDED
            ]
        "#)
    )?;

    // Find elided nodes
    #[rustfmt::skip]
    run_cli_expect(
        &["walk", &elided, "matching", "--elided"],
        "ur:digest/hdcxkstbiywmmygsasktnbfwhtrppkclwdcmmugejesokejlbnftrdwspsmdcechbboerhzebtws\n"
    )?;

    Ok(())
}

#[test]
fn test_walk_unelide() -> Result<()> {
    // Create an envelope with an elided assertion
    let knows_assertion =
        run_cli(&["assertion", "at", "0", ALICE_KNOWS_BOB_EXAMPLE])?;
    let assertion_digest = run_cli(&["digest", &knows_assertion])?;
    let elided = run_cli(&[
        "elide",
        "removing",
        &assertion_digest,
        ALICE_KNOWS_BOB_EXAMPLE,
    ])?;

    // Unelide it back using the original assertion
    let unelided = run_cli(&["walk", &elided, "unelide", &knows_assertion])?;

    // Should be equivalent to original
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &unelided],
        indoc!(r#"
            "Alice" [
                "knows": "Bob"
            ]
        "#)
    )?;

    Ok(())
}

#[test]
fn test_walk_decrypt() -> Result<()> {
    let key = run_cli(&["generate", "key"])?;
    let encrypted =
        run_cli(&["encrypt", "--key", &key, ALICE_KNOWS_BOB_EXAMPLE])?;

    // Verify encryption (subject is encrypted, assertions remain)
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &encrypted],
        indoc!(r#"
            ENCRYPTED [
                "knows": "Bob"
            ]
        "#)
    )?;

    // Decrypt using walk
    let decrypted = run_cli(&["walk", &encrypted, "decrypt", &key])?;

    // Should be equivalent to original
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &decrypted],
        indoc!(r#"
            "Alice" [
                "knows": "Bob"
            ]
        "#)
    )?;

    Ok(())
}

#[test]
fn test_walk_decompress() -> Result<()> {
    let compressed = run_cli(&["compress", ALICE_KNOWS_BOB_EXAMPLE])?;

    // Verify compression
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &compressed],
        "COMPRESSED\n"
    )?;

    // Decompress using walk
    let decompressed = run_cli(&["walk", &compressed, "decompress"])?;

    // Should be equivalent to original
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &decompressed],
        indoc!(r#"
            "Alice" [
                "knows": "Bob"
            ]
        "#)
    )?;

    Ok(())
}

#[test]
fn test_walk_with_target() -> Result<()> {
    let digest = run_cli(&["digest", ALICE_KNOWS_BOB_EXAMPLE])?;

    // Walk with target filter - should return just that digest
    #[rustfmt::skip]
    run_cli_expect(
        &["walk", "--target", &digest, ALICE_KNOWS_BOB_EXAMPLE],
        "ur:digest/hdcxldgouyhyadimzmpaeourhfsectvaskspdlotaxidiatbgydejnbwgskbhfrtwlwzneroatds\n"
    )?;

    Ok(())
}

#[test]
fn test_walk_replace_basic() -> Result<()> {
    // Create envelopes
    let bob = run_cli(&["subject", "type", "string", "Bob"])?;
    let charlie = run_cli(&["subject", "type", "string", "Charlie"])?;

    // Create an envelope with Bob referenced multiple times
    let envelope = run_cli(&[
        "assertion",
        "add",
        "pred-obj",
        "string",
        "likes",
        "envelope",
        &bob,
        ALICE_KNOWS_BOB_EXAMPLE,
    ])?;

    // Verify the before state
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &envelope],
        indoc!(r#"
            "Alice" [
                "knows": "Bob"
                "likes": "Bob"
            ]
        "#)
    )?;

    // Get Bob's digest
    let bob_digest = run_cli(&["digest", &bob])?;

    // Replace all instances of Bob with Charlie
    let modified = run_cli(&[
        "walk",
        "--target",
        &bob_digest,
        &envelope,
        "replace",
        &charlie,
    ])?;

    // Verify the after state
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &modified],
        indoc!(r#"
            "Alice" [
                "knows": "Charlie"
                "likes": "Charlie"
            ]
        "#)
    )?;

    Ok(())
}

#[test]
fn test_walk_replace_subject() -> Result<()> {
    let alice = run_cli(&["subject", "type", "string", "Alice"])?;
    let carol = run_cli(&["subject", "type", "string", "Carol"])?;

    // Verify the before state
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", ALICE_KNOWS_BOB_EXAMPLE],
        indoc!(r#"
            "Alice" [
                "knows": "Bob"
            ]
        "#)
    )?;

    // Get Alice's digest
    let alice_digest = run_cli(&["digest", &alice])?;

    // Replace the subject (Alice) with Carol
    let modified = run_cli(&[
        "walk",
        "--target",
        &alice_digest,
        ALICE_KNOWS_BOB_EXAMPLE,
        "replace",
        &carol,
    ])?;

    // Verify the after state
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &modified],
        indoc!(r#"
            "Carol" [
                "knows": "Bob"
            ]
        "#)
    )?;

    Ok(())
}

#[test]
fn test_walk_replace_elided() -> Result<()> {
    let bob = run_cli(&["subject", "type", "string", "Bob"])?;
    let charlie = run_cli(&["subject", "type", "string", "Charlie"])?;

    // Create an envelope with Bob referenced multiple times
    let envelope = run_cli(&[
        "assertion",
        "add",
        "pred-obj",
        "string",
        "likes",
        "envelope",
        &bob,
        ALICE_KNOWS_BOB_EXAMPLE,
    ])?;

    // Get Bob's digest
    let bob_digest = run_cli(&["digest", &bob])?;

    // Elide Bob
    let elided = run_cli(&["elide", "removing", &bob_digest, &envelope])?;

    // Verify the elided state
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &elided],
        indoc!(r#"
            "Alice" [
                "knows": ELIDED
                "likes": ELIDED
            ]
        "#)
    )?;

    // Replace the elided Bob with Charlie
    let modified = run_cli(&[
        "walk",
        "--target",
        &bob_digest,
        &elided,
        "replace",
        &charlie,
    ])?;

    // Verify the after state
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &modified],
        indoc!(r#"
            "Alice" [
                "knows": "Charlie"
                "likes": "Charlie"
            ]
        "#)
    )?;

    Ok(())
}

#[test]
fn test_walk_replace_multiple_targets() -> Result<()> {
    let bob = run_cli(&["subject", "type", "string", "Bob"])?;
    let carol_subj = run_cli(&["subject", "type", "string", "Carol"])?;
    let redacted = run_cli(&["subject", "type", "string", "REDACTED"])?;

    // Create an envelope with Bob and Carol
    let envelope = run_cli(&[
        "assertion",
        "add",
        "pred-obj",
        "string",
        "likes",
        "envelope",
        &carol_subj,
        ALICE_KNOWS_BOB_EXAMPLE,
    ])?;

    // Verify the before state
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &envelope],
        indoc!(r#"
            "Alice" [
                "knows": "Bob"
                "likes": "Carol"
            ]
        "#)
    )?;

    // Get Bob's and Carol's digests
    let bob_digest = run_cli(&["digest", &bob])?;
    let carol_digest = run_cli(&["digest", &carol_subj])?;

    // Combine the digests into a space-separated string for --target
    let targets = format!("{} {}", bob_digest.trim(), carol_digest.trim());

    // Replace both Bob and Carol with REDACTED
    let modified = run_cli(&[
        "walk", "--target", &targets, &envelope, "replace", &redacted,
    ])?;

    // Verify the after state
    // expected-text-output-rubric:
    #[rustfmt::skip]
    run_cli_expect(
        &["format", &modified],
        indoc!(r#"
            "Alice" [
                "knows": "REDACTED"
                "likes": "REDACTED"
            ]
        "#)
    )?;

    Ok(())
}

#[test]
fn test_walk_replace_requires_target() -> Result<()> {
    let charlie = run_cli(&["subject", "type", "string", "Charlie"])?;

    // Try to replace without specifying --target (should fail)
    let result =
        run_cli_raw(&["walk", ALICE_KNOWS_BOB_EXAMPLE, "replace", &charlie]);

    assert!(result.is_err());

    Ok(())
}