canic 0.74.6

Canic — a canister orchestration and management toolkit for the Internet Computer
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
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
use std::{
    fmt::Write as _,
    fs,
    path::{Path, PathBuf},
    process::{Command, Output},
    time::{SystemTime, UNIX_EPOCH},
};

const REQUIRED_METHODS: &[&str] = &[
    "BlobsAreLive",
    "BlobsToDelete",
    "ConfirmBlobDeletion",
    "CreateCertificate",
    "UpdateGatewayPrincipals",
    "FundFromProjectCycles",
];

const REQUIRED_BILLING_METHODS: &[&str] = &["balance", "top-up", "gateway-principal-list"];

const REQUIRED_COMMON_GATEWAY_METHOD_FIELDS: &[&str] = &[
    "Source repository or local source identifier",
    "Source commit SHA",
    "Source file path",
    "Mode",
    "Candid signature",
    "Request DTO shape",
    "Response DTO shape",
    "Unauthorized behavior",
    "Production-vs-local differences",
];

const TOKO_SOURCE_COMMIT_SHA: &str = "abcdef0123456789abcdef0123456789abcdef01";

fn workspace_root() -> PathBuf {
    Path::new(env!("CARGO_MANIFEST_DIR"))
        .parent()
        .expect("crate directory should have a parent")
        .parent()
        .expect("workspace root should exist")
        .to_path_buf()
}

fn unique_temp_repo(name: &str) -> PathBuf {
    let nanos = SystemTime::now()
        .duration_since(UNIX_EPOCH)
        .expect("time should be after epoch")
        .as_nanos();
    std::env::temp_dir().join(format!("canic-{name}-{}-{nanos}", std::process::id()))
}

fn write_file(root: &Path, relative: &str, contents: &str) {
    let path = root.join(relative);
    if let Some(parent) = path.parent() {
        fs::create_dir_all(parent).expect("parent directory should be created");
    }
    fs::write(&path, contents).unwrap_or_else(|err| panic!("failed to write {relative}: {err}"));
}

fn create_temp_workspace(name: &str) -> PathBuf {
    let root = unique_temp_repo(name);
    fs::create_dir_all(&root).expect("temp workspace should be created");
    write_file(&root, "Cargo.toml", "[workspace]\n");
    fs::create_dir_all(root.join("crates")).expect("crates directory should be created");
    fs::create_dir_all(root.join("canisters")).expect("canisters directory should be created");
    fs::create_dir_all(root.join("fleets")).expect("fleets directory should be created");
    root
}

fn run_gate(root: &Path, inventory: &Path) -> Output {
    let script = workspace_root().join("scripts/ci/check-blob-storage-inventory-gate.sh");
    Command::new("bash")
        .arg(script)
        .current_dir(root)
        .env("BLOB_STORAGE_INVENTORY", inventory)
        .output()
        .expect("blob-storage inventory gate should run")
}

fn run_gate_without_ripgrep(root: &Path, inventory: &Path) -> Output {
    let script = workspace_root().join("scripts/ci/check-blob-storage-inventory-gate.sh");
    Command::new("/bin/bash")
        .arg(script)
        .current_dir(root)
        .env("BLOB_STORAGE_INVENTORY", inventory)
        .env("PATH", "")
        .output()
        .expect("blob-storage inventory gate should run")
}

fn run_billing_gate(root: &Path, inventory: &Path) -> Output {
    let script = workspace_root().join(format!(
        "scripts/ci/check-blob-storage-{}{}-inventory-gate.sh",
        "ca", "shier"
    ));
    Command::new("bash")
        .arg(script)
        .current_dir(root)
        .env("BLOB_STORAGE_CASHIER_INVENTORY", inventory)
        .output()
        .expect("blob-storage billing inventory gate should run")
}

fn run_billing_gate_without_ripgrep(root: &Path, inventory: &Path) -> Output {
    let script = workspace_root().join(format!(
        "scripts/ci/check-blob-storage-{}{}-inventory-gate.sh",
        "ca", "shier"
    ));
    Command::new("/bin/bash")
        .arg(script)
        .current_dir(root)
        .env("BLOB_STORAGE_CASHIER_INVENTORY", inventory)
        .env("PATH", "")
        .output()
        .expect("blob-storage billing inventory gate should run")
}

fn output_text(output: &Output) -> String {
    format!(
        "{}{}",
        String::from_utf8_lossy(&output.stdout),
        String::from_utf8_lossy(&output.stderr)
    )
}

fn incomplete_inventory() -> String {
    "# Blob Storage Gateway Protocol Inventory\n\nStatus: **Incomplete - implementation blocked**\n"
        .to_string()
}

fn gateway_method_name(suffix: &str) -> String {
    format!("_immutableObject{}rage{suffix}", "Sto")
}

fn blob_storage_feature_name() -> String {
    format!("blob-{}", "storage")
}

fn complete_inventory_with_toko_section(toko_section: &str) -> String {
    let mut inventory =
        "# Blob Storage Gateway Protocol Inventory\n\nStatus: **Complete**\n".to_string();
    for suffix in REQUIRED_METHODS {
        let method = gateway_method_name(suffix);
        let method_section = complete_gateway_method_section(suffix);
        write!(&mut inventory, "\n### `{method}`\n\n{method_section}")
            .expect("writing to String should not fail");
    }
    inventory.push_str("\n## Compatibility Notes\n\n### Toko\n\n");
    inventory.push_str(toko_section);
    inventory
}

fn complete_inventory_missing_method(omitted_suffix: &str) -> String {
    let mut inventory =
        "# Blob Storage Gateway Protocol Inventory\n\nStatus: **Complete**\n".to_string();
    for suffix in REQUIRED_METHODS {
        if *suffix == omitted_suffix {
            continue;
        }
        let method = gateway_method_name(suffix);
        let method_section = complete_gateway_method_section(suffix);
        write!(&mut inventory, "\n### `{method}`\n\n{method_section}")
            .expect("writing to String should not fail");
    }
    inventory.push_str("\n## Compatibility Notes\n\n### Toko\n\n");
    inventory.push_str(&complete_toko_section());
    inventory
}

fn complete_inventory_without_toko_section() -> String {
    let mut inventory =
        "# Blob Storage Gateway Protocol Inventory\n\nStatus: **Complete**\n".to_string();
    for suffix in REQUIRED_METHODS {
        let method = gateway_method_name(suffix);
        let method_section = complete_gateway_method_section(suffix);
        write!(&mut inventory, "\n### `{method}`\n\n{method_section}")
            .expect("writing to String should not fail");
    }
    inventory
}

fn complete_inventory_with_method_section(method_suffix: &str, method_section: &str) -> String {
    let mut inventory =
        "# Blob Storage Gateway Protocol Inventory\n\nStatus: **Complete**\n".to_string();
    let target_method = gateway_method_name(method_suffix);
    for suffix in REQUIRED_METHODS {
        let method = gateway_method_name(suffix);
        if method == target_method {
            write!(&mut inventory, "\n### `{method}`\n\n{method_section}\n")
                .expect("writing to String should not fail");
        } else {
            let method_section = complete_gateway_method_section(suffix);
            write!(&mut inventory, "\n### `{method}`\n\n{method_section}")
                .expect("writing to String should not fail");
        }
    }
    inventory.push_str("\n## Compatibility Notes\n\n### Toko\n\n");
    inventory.push_str(&complete_toko_section());
    inventory
}

fn complete_toko_section() -> String {
    let blob_root_hash = format!("{}{}{}", "Blob", "Root", "Hash");
    format!(
        "\
Status: **Complete**

- Local source identifier: sibling checkout ../toko
- Source commit SHA: {TOKO_SOURCE_COMMIT_SHA}
- Mapping from Toko blob identity into Canic `{blob_root_hash}`: accepted empty-state adoption path
- Migration/read-through strategy: no existing state migration required for this release
"
    )
}

fn complete_gateway_method_section(method_suffix: &str) -> String {
    let mut section = "Status: **Complete**\n".to_string();
    for field in REQUIRED_COMMON_GATEWAY_METHOD_FIELDS {
        write_gateway_field(&mut section, field);
    }
    write_gateway_method_specific_fields(&mut section, method_suffix);
    section
}

fn write_gateway_field(section: &mut String, field: &str) {
    writeln!(section, "\n- {field}: {}", gateway_field_value(field))
        .expect("writing to String should not fail");
}

fn gateway_field_value(field: &str) -> &'static str {
    match field {
        "Source repository or local source identifier" => "https://example.invalid/gateway",
        "Source commit SHA" => "0123456789abcdef0123456789abcdef01234567",
        "Source file path" => "src/gateway.rs",
        "Mode" => "query",
        "Candid signature" => "(vec blob) -> (vec bool) query",
        "Request DTO shape" => "record { hashes : vec blob }",
        "Response DTO shape" => "vec bool",
        "Production-vs-local differences" => "no behavior differences recorded",
        _ => "captured behavior from upstream source",
    }
}

fn write_gateway_method_specific_fields(section: &mut String, method_suffix: &str) {
    match method_suffix {
        "BlobsAreLive" => write_gateway_fields(
            section,
            &[
                "Malformed input behavior",
                "Batch ordering semantics",
                "Duplicate-input semantics",
                "Absent-hash behavior",
                "Maximum batch size",
            ],
        ),
        "BlobsToDelete" => write_gateway_fields(
            section,
            &[
                "Result ordering",
                "Maximum batch size",
                "Repeat-return behavior until confirmation",
                "Empty pending-deletion behavior",
            ],
        ),
        "ConfirmBlobDeletion" => write_gateway_fields(
            section,
            &[
                "Unknown blob behavior",
                "Live-but-not-pending behavior",
                "Already-confirmed behavior",
                "Idempotency semantics",
            ],
        ),
        "CreateCertificate" => write_gateway_fields(
            section,
            &[
                "Certificate material source",
                "Mutation-before-certificate behavior",
                "Rollback or no-rollback behavior",
                "Repeated create behavior",
                "Metadata conflict/enrichment behavior",
                "Malformed request behavior",
            ],
        ),
        "UpdateGatewayPrincipals" => {
            write_gateway_field(section, &format!("{}{} dependency", "Ca", "shier"));
        }
        "FundFromProjectCycles" => write_gateway_fields(
            section,
            &[
                "Cycle attachment requirements",
                "Funding success/failure behavior",
            ],
        ),
        _ => panic!("unknown gateway method suffix"),
    }
}

fn write_gateway_fields(section: &mut String, fields: &[&str]) {
    for field in fields {
        write_gateway_field(section, field);
    }
}

fn billing_method_name(method: &str) -> String {
    match method {
        "balance" => format!("account_{}_get_v1", "balance"),
        "top-up" => format!("account_{}_up_v1", "top"),
        "gateway-principal-list" => format!("storage_gateway_principal_{}_v1", "list"),
        _ => panic!("unknown billing method"),
    }
}

fn billing_protocol_name() -> String {
    format!("{}{}", "Ca", "shier")
}

fn billing_feature_name() -> String {
    format!("blob-storage-{}{}", "bill", "ing")
}

fn incomplete_billing_inventory() -> String {
    format!(
        "# Blob Storage {} Protocol Inventory\n\nStatus: **Incomplete - implementation blocked**\n",
        billing_protocol_name()
    )
}

fn complete_billing_inventory_with_optional_section(optional_section: &str) -> String {
    let mut inventory = format!(
        "# Blob Storage {} Protocol Inventory\n\nStatus: **Complete**\n",
        billing_protocol_name()
    );
    for method in REQUIRED_BILLING_METHODS {
        let method = billing_method_name(method);
        let method_section = complete_billing_method_section(&method);
        write!(&mut inventory, "\n### `{method}`\n\n{method_section}\n")
            .expect("writing to String should not fail");
    }
    write!(
        &mut inventory,
        "\n## Optional {} Methods\n\n",
        billing_protocol_name()
    )
    .expect("writing to String should not fail");
    inventory.push_str(optional_section);
    inventory
}

fn complete_billing_method_section(method: &str) -> String {
    let mut section = "Status: **Complete**\n".to_string();
    if method == billing_method_name("gateway-principal-list") {
        section.push_str(
            "\n- Empty-list behavior: empty lists are malformed and preserve previous gateway state\n",
        );
        for field in [
            "Duplicate-principal behavior",
            "Anonymous-principal behavior",
            "Management-canister-principal behavior",
            "Malformed response behavior expected from Canic wrappers",
        ] {
            writeln!(
                &mut section,
                "\n- {field}: captured behavior from upstream source"
            )
            .expect("writing to String should not fail");
        }
    }
    section
}

fn complete_billing_inventory_missing_method(omitted_method: &str) -> String {
    let mut inventory = format!(
        "# Blob Storage {} Protocol Inventory\n\nStatus: **Complete**\n",
        billing_protocol_name()
    );
    for method in REQUIRED_BILLING_METHODS {
        if *method == omitted_method {
            continue;
        }
        let method = billing_method_name(method);
        let method_section = complete_billing_method_section(&method);
        write!(&mut inventory, "\n### `{method}`\n\n{method_section}\n")
            .expect("writing to String should not fail");
    }
    write!(
        &mut inventory,
        "\n## Optional {} Methods\n\nStatus: **Complete**\n\n- None required.\n",
        billing_protocol_name()
    )
    .expect("writing to String should not fail");
    inventory
}

fn complete_billing_inventory_with_method_section(
    method_name: &str,
    method_section: &str,
) -> String {
    let mut inventory = format!(
        "# Blob Storage {} Protocol Inventory\n\nStatus: **Complete**\n",
        billing_protocol_name()
    );
    for method in REQUIRED_BILLING_METHODS {
        let method = billing_method_name(method);
        if method == method_name {
            write!(&mut inventory, "\n### `{method}`\n\n{method_section}\n")
                .expect("writing to String should not fail");
        } else {
            let method_section = complete_billing_method_section(&method);
            write!(&mut inventory, "\n### `{method}`\n\n{method_section}\n")
                .expect("writing to String should not fail");
        }
    }
    write!(
        &mut inventory,
        "\n## Optional {} Methods\n\nStatus: **Complete**\n\n- None required.\n",
        billing_protocol_name()
    )
    .expect("writing to String should not fail");
    inventory
}

#[test]
fn incomplete_inventory_allows_design_only_workspace() {
    let root = create_temp_workspace("blob-gate-clean");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(&inventory, incomplete_inventory()).expect("inventory should be written");

    let output = run_gate(&root, &inventory);

    assert!(
        output.status.success(),
        "gate should allow no implementation surface while inventory is incomplete\n{}",
        output_text(&output)
    );
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_inventory_missing_ripgrep_reports_setup_action() {
    let root = create_temp_workspace("blob-gate-missing-rg");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(&inventory, incomplete_inventory()).expect("inventory should be written");

    let output = run_gate_without_ripgrep(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should fail with a setup hint when ripgrep is unavailable"
    );
    assert!(text.contains("missing required tool: rg"));
    assert!(text.contains("make install-dev"));
    assert!(text.contains("make update-dev"));
    assert!(!text.contains("command not found"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_inventory_rejects_feature_metadata() {
    let root = create_temp_workspace("blob-gate-feature");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(&inventory, incomplete_inventory()).expect("inventory should be written");
    write_file(
        &root,
        "crates/example/Cargo.toml",
        &format!("[features]\n{} = []\n", blob_storage_feature_name()),
    );

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject blob-storage feature metadata while inventory is incomplete"
    );
    assert!(text.contains("feature or dependency metadata"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_inventory_rejects_source_path() {
    let root = create_temp_workspace("blob-gate-path");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(&inventory, incomplete_inventory()).expect("inventory should be written");
    write_file(
        &root,
        &format!("crates/example/src/{}_{}_client/mod.rs", "blob", "storage"),
        "pub fn marker() {}\n",
    );

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject blob-storage source paths while inventory is incomplete"
    );
    assert!(text.contains("source/module path"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_inventory_rejects_gateway_method_surface() {
    let root = create_temp_workspace("blob-gate-method");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(&inventory, incomplete_inventory()).expect("inventory should be written");
    write_file(
        &root,
        "crates/example/src/lib.rs",
        &format!(
            "pub const METHOD: &str = {:?};\n",
            gateway_method_name(REQUIRED_METHODS[0])
        ),
    );

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject gateway method literals while inventory is incomplete"
    );
    assert!(text.contains("gateway method literal"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_inventory_rejects_public_api_surface() {
    let root = create_temp_workspace("blob-gate-public-api");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(&inventory, incomplete_inventory()).expect("inventory should be written");
    write_file(
        &root,
        "crates/example/src/lib.rs",
        &format!("pub struct {}{}Api;\n", "Blob", "Storage"),
    );

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject public blob-storage API types while inventory is incomplete"
    );
    assert!(text.contains("internal blob-storage API/model type"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_inventory_rejects_billing_surface() {
    let root = create_temp_workspace("blob-gate-billing");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(&inventory, incomplete_inventory()).expect("inventory should be written");
    write_file(
        &root,
        "crates/example/src/lib.rs",
        &format!(
            "pub struct BillingClient;\npub fn get_{}{}() {{}}\n",
            "blob_storage_", "status"
        ),
    );

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject billing surface while inventory is incomplete"
    );
    assert!(text.contains(&format!(
        "blob-storage billing/{}{} implementation surface",
        "Ca", "shier"
    )));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_incomplete_method_status() {
    let root = create_temp_workspace("blob-gate-method-status");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(
        &inventory,
        complete_inventory_with_method_section(REQUIRED_METHODS[0], "Status: **Captured**\n"),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject a required gateway method that is not complete"
    );
    assert!(text.contains("method is not complete"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_unresolved_method_fields() {
    let root = create_temp_workspace("blob-gate-method-tbd");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(
        &inventory,
        complete_inventory_with_method_section(
            REQUIRED_METHODS[1],
            "Status: **Complete**\n\n- Deletion queue behavior: TBD\n",
        ),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject unresolved required gateway method fields"
    );
    assert!(text.contains("method still has TBD fields"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_placeholder_method_evidence() {
    let root = create_temp_workspace("blob-gate-method-placeholder");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    let method_section = complete_gateway_method_section(REQUIRED_METHODS[0]).replace(
        "- Source file path: src/gateway.rs",
        "- Source file path: placeholder",
    );
    fs::write(
        &inventory,
        complete_inventory_with_method_section(REQUIRED_METHODS[0], &method_section),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject placeholder method evidence"
    );
    assert!(text.contains("method still has placeholder evidence"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_invalid_source_commit_sha() {
    let root = create_temp_workspace("blob-gate-method-sha");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    let method_section = complete_gateway_method_section(REQUIRED_METHODS[0]).replace(
        "- Source commit SHA: 0123456789abcdef0123456789abcdef01234567",
        "- Source commit SHA: not-a-sha",
    );
    fs::write(
        &inventory,
        complete_inventory_with_method_section(REQUIRED_METHODS[0], &method_section),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject invalid method source commit SHA"
    );
    assert!(text.contains("method has invalid source commit SHA"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_skeletal_method_section() {
    let root = create_temp_workspace("blob-gate-method-skeletal");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(
        &inventory,
        complete_inventory_with_method_section(REQUIRED_METHODS[3], "Status: **Complete**\n"),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject method sections without required evidence fields"
    );
    assert!(text.contains("method missing required field"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_missing_method_section() {
    let root = create_temp_workspace("blob-gate-missing-method");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(
        &inventory,
        complete_inventory_missing_method(REQUIRED_METHODS[2]),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject a Complete inventory missing a gateway method"
    );
    assert!(text.contains("missing method section"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_unresolved_toko_fields() {
    let root = create_temp_workspace("blob-gate-complete-tbd");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(
        &inventory,
        complete_inventory_with_toko_section("Status: **Complete**\n\n- Mapping: TBD\n"),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject unresolved Toko fields in a Complete inventory"
    );
    assert!(text.contains("Toko compatibility notes still have TBD fields"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_missing_toko_evidence_fields() {
    let root = create_temp_workspace("blob-gate-complete-toko-missing-field");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(
        &inventory,
        complete_inventory_with_toko_section("Status: **Complete**\n\n- Mapping accepted.\n"),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject Toko compatibility notes without required evidence fields"
    );
    assert!(text.contains("Toko compatibility notes missing required field"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_invalid_toko_source_commit_sha() {
    let root = create_temp_workspace("blob-gate-complete-toko-sha");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    let toko_section = complete_toko_section().replace(
        &format!("- Source commit SHA: {TOKO_SOURCE_COMMIT_SHA}"),
        "- Source commit SHA: not-a-sha",
    );
    fs::write(
        &inventory,
        complete_inventory_with_toko_section(&toko_section),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject invalid Toko source commit SHA"
    );
    assert!(text.contains("Toko compatibility notes have invalid source commit SHA"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_rejects_missing_toko_section() {
    let root = create_temp_workspace("blob-gate-missing-toko");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(&inventory, complete_inventory_without_toko_section())
        .expect("inventory should be written");

    let output = run_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "gate should reject a Complete inventory without Toko compatibility notes"
    );
    assert!(text.contains("missing Toko compatibility section"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_inventory_allows_resolved_inventory() {
    let root = create_temp_workspace("blob-gate-complete");
    let inventory = root.join("BLOB_STORAGE_INVENTORY.md");
    fs::write(
        &inventory,
        complete_inventory_with_toko_section(&complete_toko_section()),
    )
    .expect("inventory should be written");

    let output = run_gate(&root, &inventory);

    assert!(
        output.status.success(),
        "gate should accept a resolved Complete gateway inventory\n{}",
        output_text(&output)
    );
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_billing_inventory_allows_design_only_workspace() {
    let root = create_temp_workspace("billing-gate-clean");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(&inventory, incomplete_billing_inventory()).expect("inventory should be written");

    let output = run_billing_gate(&root, &inventory);

    assert!(
        output.status.success(),
        "billing gate should allow no implementation surface while inventory is incomplete\n{}",
        output_text(&output)
    );
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_billing_inventory_missing_ripgrep_reports_setup_action() {
    let root = create_temp_workspace("billing-gate-missing-rg");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(&inventory, incomplete_billing_inventory()).expect("inventory should be written");

    let output = run_billing_gate_without_ripgrep(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should fail with a setup hint when ripgrep is unavailable"
    );
    assert!(text.contains("missing required tool: rg"));
    assert!(text.contains("make install-dev"));
    assert!(text.contains("make update-dev"));
    assert!(!text.contains("command not found"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_billing_inventory_rejects_method_surface() {
    let root = create_temp_workspace("billing-gate-method");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(&inventory, incomplete_billing_inventory()).expect("inventory should be written");
    write_file(
        &root,
        "crates/example/src/lib.rs",
        &format!(
            "pub const METHOD: &str = {:?};\n",
            billing_method_name(REQUIRED_BILLING_METHODS[0])
        ),
    );

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject method literals while inventory is incomplete"
    );
    assert!(text.contains(&format!(
        "forbidden blob-storage {}{} implementation surface",
        "Ca", "shier"
    )));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_billing_inventory_rejects_billing_endpoint_surface() {
    let root = create_temp_workspace("billing-gate-endpoint");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(&inventory, incomplete_billing_inventory()).expect("inventory should be written");
    write_file(
        &root,
        "crates/example/src/lib.rs",
        &format!("pub fn get_{}{}() {{}}\n", "blob_storage_", "status"),
    );

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject billing endpoint literals while inventory is incomplete"
    );
    assert!(text.contains("billing endpoint literal"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_billing_inventory_rejects_feature_metadata() {
    let root = create_temp_workspace("billing-gate-feature");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(&inventory, incomplete_billing_inventory()).expect("inventory should be written");
    write_file(
        &root,
        "crates/example/Cargo.toml",
        &format!("[features]\n{} = []\n", billing_feature_name()),
    );

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject feature metadata while inventory is incomplete"
    );
    assert!(text.contains("feature or dependency metadata"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_billing_inventory_rejects_source_path() {
    let root = create_temp_workspace("billing-gate-path");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(&inventory, incomplete_billing_inventory()).expect("inventory should be written");
    write_file(
        &root,
        &format!("crates/example/src/{}{}_client/mod.rs", "ca", "shier"),
        "pub fn marker() {}\n",
    );

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject source paths while inventory is incomplete"
    );
    assert!(text.contains("source/module path"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn incomplete_billing_inventory_rejects_public_billing_type() {
    let root = create_temp_workspace("billing-gate-public-type");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(&inventory, incomplete_billing_inventory()).expect("inventory should be written");
    write_file(
        &root,
        "crates/example/src/lib.rs",
        &format!("pub struct {}{}{}Config;\n", "Blob", "Storage", "Billing"),
    );

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject public billing types while inventory is incomplete"
    );
    assert!(text.contains("public"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_billing_inventory_rejects_unresolved_optional_fields() {
    let root = create_temp_workspace("billing-gate-complete-tbd");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(
        &inventory,
        complete_billing_inventory_with_optional_section(
            "Status: **Complete**\n\n- Optional methods: TBD\n",
        ),
    )
    .expect("inventory should be written");

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject unresolved optional-method fields"
    );
    assert!(text.contains("optional methods section still has TBD fields"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_billing_inventory_rejects_incomplete_method_status() {
    let root = create_temp_workspace("billing-gate-method-status");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    let method = billing_method_name(REQUIRED_BILLING_METHODS[0]);
    fs::write(
        &inventory,
        complete_billing_inventory_with_method_section(&method, "Status: **Snapshot captured**\n"),
    )
    .expect("inventory should be written");

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject a required method that is not complete"
    );
    assert!(text.contains("method is not complete"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_billing_inventory_rejects_unresolved_method_fields() {
    let root = create_temp_workspace("billing-gate-method-tbd");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    let method = billing_method_name(REQUIRED_BILLING_METHODS[2]);
    fs::write(
        &inventory,
        complete_billing_inventory_with_method_section(
            &method,
            "Status: **Complete**\n\n- Empty-list behavior: TBD\n",
        ),
    )
    .expect("inventory should be written");

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject unresolved required-method fields"
    );
    assert!(text.contains("method still has TBD fields"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_billing_inventory_rejects_missing_gateway_list_behavior_fields() {
    let root = create_temp_workspace("billing-gate-gateway-list-fields");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    let method = billing_method_name("gateway-principal-list");
    fs::write(
        &inventory,
        complete_billing_inventory_with_method_section(&method, "Status: **Complete**\n"),
    )
    .expect("inventory should be written");

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject gateway-list sections without behavior fields"
    );
    assert!(text.contains("method missing required field"));
    assert!(text.contains("Empty-list behavior"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_billing_inventory_rejects_unsafe_empty_gateway_list_behavior() {
    let root = create_temp_workspace("billing-gate-empty-list-contract");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    let method = billing_method_name("gateway-principal-list");
    let method_section = complete_billing_method_section(&method).replace(
        "empty lists are malformed and preserve previous gateway state",
        "empty lists are accepted and replace the previous gateway set",
    );
    fs::write(
        &inventory,
        complete_billing_inventory_with_method_section(&method, &method_section),
    )
    .expect("inventory should be written");

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject unsafe empty gateway-list behavior"
    );
    assert!(text.contains("invalid empty-list behavior"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_billing_inventory_rejects_missing_method_section() {
    let root = create_temp_workspace("billing-gate-missing-method");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(
        &inventory,
        complete_billing_inventory_missing_method(REQUIRED_BILLING_METHODS[1]),
    )
    .expect("inventory should be written");

    let output = run_billing_gate(&root, &inventory);
    let text = output_text(&output);

    assert!(
        !output.status.success(),
        "billing gate should reject a Complete inventory missing a required method"
    );
    assert!(text.contains("missing method section"));
    let _ = fs::remove_dir_all(root);
}

#[test]
fn complete_billing_inventory_allows_resolved_inventory() {
    let root = create_temp_workspace("billing-gate-complete");
    let inventory = root.join("BLOB_STORAGE_CASHIER_INVENTORY.md");
    fs::write(
        &inventory,
        complete_billing_inventory_with_optional_section(
            "Status: **Complete**\n\n- Discovered methods: three required methods only.\n",
        ),
    )
    .expect("inventory should be written");

    let output = run_billing_gate(&root, &inventory);

    assert!(
        output.status.success(),
        "billing gate should accept a resolved Complete inventory\n{}",
        output_text(&output)
    );
    let _ = fs::remove_dir_all(root);
}