krab_cli 0.4.0

The `krab` CLI: dev workflow, generators, governance, and release operations for the Krab framework
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
use anyhow::{Context, Result};
use serde::Serialize;
use std::collections::hash_map::DefaultHasher;
use std::fs;
use std::hash::{Hash, Hasher};
use std::path::{Path, PathBuf};

use crate::ServiceType;

pub(crate) fn dispatch_topology_action(
    action: &crate::TopologyAction,
    diagnostics: bool,
    json: bool,
) -> Result<()> {
    match action {
        crate::TopologyAction::Doctor => run_topology_doctor(diagnostics, json),
        crate::TopologyAction::Split {
            domain,
            protocols,
            register,
            dry_run,
        } => run_topology_split(domain, protocols, *register, *dry_run),
    }
}

pub(crate) fn protocol_label(service_type: &ServiceType) -> &'static str {
    match service_type {
        ServiceType::Rest => "rest",
        ServiceType::Graphql => "graphql",
        ServiceType::Rpc => "rpc",
        ServiceType::Grpc => "grpc",
    }
}

pub(crate) fn collect_rust_files_under(path: &Path, out: &mut Vec<PathBuf>) -> Result<()> {
    if !path.exists() {
        return Ok(());
    }

    for entry in fs::read_dir(path).with_context(|| format!("Failed to read directory {path:?}"))? {
        let entry = entry?;
        let file_path = entry.path();
        if file_path.is_dir() {
            collect_rust_files_under(&file_path, out)?;
            continue;
        }

        if file_path.extension().and_then(|v| v.to_str()) == Some("rs") {
            out.push(file_path);
        }
    }

    Ok(())
}

/// Identifiers for the sub-checks that can be skipped when a project does not
/// contain the artifact they inspect. Kept as constants so the diagnostics
/// printer and `krab doctor` can ask "did this one actually run?" without
/// string-matching prose.
pub(crate) const CHECK_SERVICE_SOURCE_SCAN: &str = "service-source-scan";
pub(crate) const CHECK_CONTRACT_PAYLOAD_DERIVES: &str = "contract-payload-derives";
pub(crate) const CHECK_ORCHESTRATOR_SERVICE_CONFIG: &str = "orchestrator-service-config";

/// A sub-check that did not run, and why.
///
/// Recorded rather than swallowed: a check that never executed must not be
/// reported the same way as a check that executed and found nothing, or the
/// output tells the reader their project is covered when it is not.
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct SkippedTopologyCheck {
    pub(crate) check: &'static str,
    pub(crate) reason: String,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct TopologyDoctorReport {
    pub(crate) checked_rust_files: usize,
    pub(crate) contract_path: PathBuf,
    pub(crate) violations: Vec<String>,
    /// Sub-checks that were not applicable to this project. Empty inside the
    /// framework workspace, where every inspected path exists.
    pub(crate) skipped: Vec<SkippedTopologyCheck>,
}

impl TopologyDoctorReport {
    /// Whether the named sub-check actually executed.
    pub(crate) fn ran(&self, check: &str) -> bool {
        !self.skipped.iter().any(|entry| entry.check == check)
    }
}

/// Resolve a repository-relative path against a project root.
///
/// The `.` (or empty) root deliberately yields the bare relative path rather
/// than `./foo`, so running from the process CWD prints exactly the paths the
/// report has always printed โ€” diagnostics text and violation strings are read
/// by humans and matched by CI logs.
fn resolve_project_path(root: &Path, relative: &str) -> PathBuf {
    if root.as_os_str().is_empty() || root == Path::new(".") {
        PathBuf::from(relative)
    } else {
        root.join(relative)
    }
}

pub(crate) fn topology_doctor_report() -> Result<TopologyDoctorReport> {
    topology_doctor_report_at(Path::new("."))
}

/// Build the topology report for a project rooted at `root`.
///
/// Root-parameterised so the tests can point it at a `tempfile::TempDir`
/// instead of mutating the process-global CWD.
///
/// Every path this touches (`services/`, the `krab_core` contract source,
/// `krab.toml`) is specific to a Krab *framework* checkout. A project produced
/// by `krab new` has none of them. Absence used to be a hard `Err`, which made
/// `krab doctor` and `krab topology doctor` exit 1 with a bare "Failed reading
/// crates/framework/krab_core/src/service_contract.rs" in every generated
/// project โ€” a framework-repo assumption presented to users as their bug. A
/// missing artifact is now a recorded skip; an artifact that is present and
/// wrong is still a violation.
pub(crate) fn topology_doctor_report_at(root: &Path) -> Result<TopologyDoctorReport> {
    let mut violations: Vec<String> = Vec::new();
    let mut skipped: Vec<SkippedTopologyCheck> = Vec::new();

    let services_dir = resolve_project_path(root, "services");
    let mut rust_files = Vec::new();
    if services_dir.exists() {
        collect_rust_files_under(&services_dir, &mut rust_files)?;
    } else {
        skipped.push(SkippedTopologyCheck {
            check: CHECK_SERVICE_SOURCE_SCAN,
            reason: format!(
                "no `{}` directory; cross-service import and ServiceEndpoint scans not applicable",
                services_dir.display()
            ),
        });
    }

    for file in &rust_files {
        let owner = owning_service_name(file);
        // A source file we listed but cannot read is a finding about this
        // project, not a reason to abandon the whole report.
        let raw = match fs::read_to_string(file) {
            Ok(raw) => raw,
            Err(err) => {
                violations.push(format!(
                    "{}: could not be read for boundary analysis: {err}",
                    file.display()
                ));
                continue;
            }
        };

        for (line_idx, line) in raw.lines().enumerate() {
            if let Some(target) = parse_direct_service_import(line) {
                if owner
                    .as_ref()
                    .map(|service| service != &target)
                    .unwrap_or(true)
                {
                    violations.push(format!(
                        "{}:{} direct cross-service import `{}` bypasses contract boundary",
                        file.display(),
                        line_idx + 1,
                        target
                    ));
                }
            }
        }

        collect_service_endpoint_block_violations(file, &raw, &mut violations);
    }

    let contract_path =
        resolve_project_path(root, "crates/framework/krab_core/src/service_contract.rs");
    if contract_path.exists() {
        match fs::read_to_string(&contract_path) {
            Ok(contract_raw) => {
                for issue in detect_contract_payload_violations(&contract_raw) {
                    violations.push(format!("{}: {issue}", contract_path.display()));
                }
            }
            Err(err) => violations.push(format!(
                "{}: could not be read for contract payload analysis: {err}",
                contract_path.display()
            )),
        }
    } else {
        skipped.push(SkippedTopologyCheck {
            check: CHECK_CONTRACT_PAYLOAD_DERIVES,
            reason: format!(
                "`{}` is not present; this file only exists in a Krab framework checkout",
                contract_path.display()
            ),
        });
    }

    let service_config_path = resolve_project_path(root, "krab.toml");
    if service_config_path.exists() {
        match fs::read_to_string(&service_config_path) {
            Ok(service_config_raw) => {
                for issue in detect_service_config_violations(&service_config_raw) {
                    violations.push(format!("{}: {issue}", service_config_path.display()));
                }
            }
            Err(err) => violations.push(format!(
                "{}: could not be read for orchestrator policy analysis: {err}",
                service_config_path.display()
            )),
        }
    } else {
        skipped.push(SkippedTopologyCheck {
            check: CHECK_ORCHESTRATOR_SERVICE_CONFIG,
            reason: format!(
                "no `{}`; orchestrator health/restart policy not applicable",
                service_config_path.display()
            ),
        });
    }

    // Also runs under `krab release check` (via doctor.rs). Safe there: with
    // `KRAB_RUNTIME_TOPOLOGY`/`KRAB_RUNTIME_ENDPOINTS_JSON` unset, the strict
    // parser returns the monolith default and reports no violation โ€” it only
    // fires when those vars are set to values the services would swallow.
    if let Some(issue) = runtime_topology_env_violation() {
        violations.push(issue);
    }

    Ok(TopologyDoctorReport {
        checked_rust_files: rust_files.len(),
        contract_path,
        violations,
        skipped,
    })
}

/// Validate the runtime topology environment with the strict parser.
///
/// Returns a violation string when `KRAB_RUNTIME_TOPOLOGY` /
/// `KRAB_RUNTIME_ENDPOINTS_JSON` are set to values the services would
/// silently swallow at runtime (unrecognized topology, unparseable endpoint
/// JSON, or distributed mode with an empty endpoint map).
fn runtime_topology_env_violation() -> Option<String> {
    match krab_core::service_contract::TopologyRuntime::from_env_checked() {
        Ok(_) => None,
        Err(err) => Some(format!("runtime topology environment invalid: {err:#}")),
    }
}

/// A sub-check that did not run, in `--json` form.
#[derive(Debug, Serialize)]
struct SkippedTopologyCheckJson<'a> {
    check: &'a str,
    reason: &'a str,
}

/// The `--json` shape of `krab topology doctor`.
///
/// `checked_rust_files` and `contract_path` are `null` when their sub-check did
/// not run, mirroring the human output's rule that a skipped check is never
/// reported as if it had produced a result.
#[derive(Debug, Serialize)]
struct TopologyDoctorJson<'a> {
    success: bool,
    checked_rust_files: Option<usize>,
    contract_path: Option<String>,
    violations: &'a [String],
    skipped: Vec<SkippedTopologyCheckJson<'a>>,
}

fn run_topology_doctor(diagnostics: bool, json: bool) -> Result<()> {
    if !json {
        println!("๐Ÿฉบ Running topology doctor...");
    }

    // Single source of truth: the same report `krab release check` consumes,
    // so the two paths cannot drift in which checks they run.
    let report = topology_doctor_report()?;

    if json {
        println!(
            "{}",
            serde_json::to_string_pretty(&TopologyDoctorJson {
                success: report.violations.is_empty(),
                checked_rust_files: report
                    .ran(CHECK_SERVICE_SOURCE_SCAN)
                    .then_some(report.checked_rust_files),
                contract_path: report
                    .ran(CHECK_CONTRACT_PAYLOAD_DERIVES)
                    .then(|| report.contract_path.display().to_string()),
                violations: &report.violations,
                skipped: report
                    .skipped
                    .iter()
                    .map(|entry| SkippedTopologyCheckJson {
                        check: entry.check,
                        reason: entry.reason.as_str(),
                    })
                    .collect(),
            })?
        );

        // `--json` changes only what is printed, never the exit status.
        if !report.violations.is_empty() {
            anyhow::bail!("topology doctor failed");
        }
        return Ok(());
    }

    if diagnostics {
        // Only claim a check ran when it ran. The skipped list below carries
        // the rest, so nothing silently disappears from the output.
        if report.ran(CHECK_SERVICE_SOURCE_SCAN) {
            println!("   > checked Rust files: {}", report.checked_rust_files);
        }
        if report.ran(CHECK_CONTRACT_PAYLOAD_DERIVES) {
            println!(
                "   > checked contract payload serialization derives in {}",
                report.contract_path.display()
            );
        }
        if report.ran(CHECK_ORCHESTRATOR_SERVICE_CONFIG) {
            println!("   > checked orchestrator service health/restart policy in krab.toml");
        }
        println!(
            "   > checked runtime topology env (KRAB_RUNTIME_TOPOLOGY, KRAB_RUNTIME_ENDPOINTS_JSON) with strict parsing"
        );

        if !report.skipped.is_empty() {
            println!("   > skipped (not applicable to this project):");
            for entry in &report.skipped {
                println!("      - {}: {}", entry.check, entry.reason);
            }
        }
    }

    if report.violations.is_empty() {
        if report.skipped.is_empty() {
            println!("โœ… topology doctor passed");
        } else {
            // Never print an unqualified pass when part of the suite never
            // ran โ€” a skipped check is not a green check.
            println!(
                "โœ… topology doctor passed ({} check(s) skipped as not applicable)",
                report.skipped.len()
            );
        }
        return Ok(());
    }

    eprintln!(
        "โŒ topology doctor found {} issue(s):",
        report.violations.len()
    );
    for issue in &report.violations {
        eprintln!(" - {issue}");
    }
    anyhow::bail!("topology doctor failed")
}

fn run_topology_split(
    domain: &str,
    protocols: &Option<Vec<ServiceType>>,
    register: bool,
    dry_run: bool,
) -> Result<()> {
    let slug = normalize_domain_slug(domain)?;
    let service_crate = format!("service_{}_split", slug);
    let service_key = format!("{}_split", slug);
    let crate_dir = PathBuf::from("services").join(&service_crate);

    if crate_dir.exists() {
        anyhow::bail!(
            "Split service scaffold already exists at {}",
            crate_dir.display()
        );
    }

    let selected_protocols = resolved_split_protocols(protocols);
    let mut adapter_modules = String::new();
    let mut adapter_files: Vec<(PathBuf, String)> = Vec::new();
    for protocol in &selected_protocols {
        let label = protocol_label(protocol);
        adapter_modules.push_str(&format!("pub mod {label};\n"));
        adapter_files.push((
            crate_dir.join(format!("src/adapters/{label}.rs")),
            format!(
                "use axum::{{routing::get, Json, Router}};\nuse serde_json::json;\n\npub fn mount_{label}_routes() -> Router {{\n    Router::new().route(\"/internal/{label}/capabilities\", get(capabilities))\n}}\n\nasync fn capabilities() -> Json<serde_json::Value> {{\n    Json(json!({{\n        \"adapter\": \"{label}\",\n        \"contract\": \"{slug}\",\n        \"mode\": \"local\",\n        \"remote_ready\": false\n    }}))\n}}\n"
            ),
        ));
    }

    let mut hasher = DefaultHasher::new();
    service_crate.hash(&mut hasher);
    let port = 3200 + (hasher.finish() % 300) as u16;

    let cargo_toml = format!(
        "[package]\nname = \"{service_crate}\"\nversion = \"0.1.0\"\nedition = \"2021\"\n\n[dependencies]\nanyhow.workspace = true\naxum.workspace = true\ntokio.workspace = true\ntracing.workspace = true\ntracing-subscriber.workspace = true\nserde.workspace = true\nserde_json.workspace = true\n"
    );

    let main_rs = format!(
        "use anyhow::Result;\nuse axum::{{routing::get, Json, Router}};\nuse serde_json::json;\nuse std::net::SocketAddr;\n\nasync fn health() -> Json<serde_json::Value> {{\n    Json(json!({{\"status\": \"ok\", \"service\": \"{service_crate}\"}}))\n}}\n\nasync fn ready() -> Json<serde_json::Value> {{\n    Json(json!({{\"status\": \"ready\", \"service\": \"{service_crate}\"}}))\n}}\n\n#[tokio::main]\nasync fn main() -> Result<()> {{\n    tracing_subscriber::fmt::init();\n    let app = Router::new()\n        .route(\"/health\", get(health))\n        .route(\"/ready\", get(ready));\n\n    let addr = SocketAddr::from(([127, 0, 0, 1], {port}));\n    println!(\"{service_crate} listening on {{}}\", addr);\n\n    let listener = tokio::net::TcpListener::bind(addr).await?;\n    axum::serve(listener, app).await?;\n    Ok(())\n}}\n"
    );

    let readme = format!(
        "# {service_crate}\n\nGenerated by `krab topology split {slug}`.\n\n## Included scaffold\n- health/readiness endpoints\n- protocol adapter capability routes\n- domain skeleton\n- contract conformance placeholder tests\n\n## Next actions\n1. Move `{slug}` domain logic behind contract traits in `krab_core`.\n2. Implement local and remote adapters for each enabled protocol.\n3. Keep transport adapters thin and run the same contract tests against each adapter.\n4. Wire topology selection through runtime config and CI matrix.\n"
    );

    let test_rs = split_contract_conformance_test(&slug);

    let mut planned_files: Vec<(PathBuf, String)> = vec![
        (crate_dir.join("Cargo.toml"), cargo_toml),
        (crate_dir.join("README.md"), readme),
        (crate_dir.join("src/main.rs"), main_rs),
        (
            crate_dir.join("src/domain/mod.rs"),
            "pub mod models;\npub mod service;\n".to_string(),
        ),
        (
            crate_dir.join("src/domain/models.rs"),
            "#[derive(Debug, Clone)]\npub struct DomainModel {\n    pub id: String,\n}\n"
                .to_string(),
        ),
        (
            crate_dir.join("src/domain/service.rs"),
            "pub trait DomainService: Send + Sync {}\n".to_string(),
        ),
        (crate_dir.join("src/adapters/mod.rs"), adapter_modules),
        (crate_dir.join("tests/contract_conformance.rs"), test_rs),
    ];
    planned_files.extend(adapter_files);

    if dry_run {
        println!("๐Ÿงช Dry-run split scaffold for domain '{slug}':");
        for (path, _) in &planned_files {
            println!("   > {}", path.display());
        }
        if register {
            println!(
                "   > would register workspace member `services/{service_crate}` and service key `{service_key}`"
            );
        }
        return Ok(());
    }

    for (path, _) in &planned_files {
        if path.exists() {
            anyhow::bail!("Refusing to overwrite existing file {}", path.display());
        }
    }

    for (path, content) in &planned_files {
        if let Some(parent) = path.parent() {
            fs::create_dir_all(parent)
                .with_context(|| format!("Failed to create directory {}", parent.display()))?;
        }
        fs::write(path, content).with_context(|| format!("Failed writing {}", path.display()))?;
    }

    if register {
        register_workspace_member(&format!("services/{service_crate}"))?;
        register_krab_service(&service_key, &service_crate, port)?;
    }

    println!(
        "โœ… Split topology scaffold generated at {}",
        crate_dir.display()
    );
    Ok(())
}

fn normalize_domain_slug(domain: &str) -> Result<String> {
    let slug = domain.trim().to_ascii_lowercase().replace('-', "_");
    if slug.is_empty() {
        anyhow::bail!("domain must not be empty");
    }
    if !slug
        .chars()
        .all(|c| c.is_ascii_lowercase() || c.is_ascii_digit() || c == '_')
    {
        anyhow::bail!("domain must contain only lowercase letters, digits, underscore or hyphen");
    }
    Ok(slug)
}

/// The contract-conformance test emitted into a generated split service.
///
/// `#[ignore]`d deliberately, and it must stay that way until it asserts
/// something real.
///
/// It previously ran, and passed unconditionally: it built a literal array and
/// asserted that the array contained one of the literals it had just been built
/// from. A green check beside the words "contract conformance" told users their
/// local-vs-remote adapter parity was covered when nothing was being compared at
/// all โ€” worse than no test, because it answered the question before anyone
/// asked it. `#[ignore]` with a reason states the gap; the `panic!` body means
/// that anyone who runs it with `--ignored`, expecting real coverage, is told
/// plainly that there is none.
fn split_contract_conformance_test(slug: &str) -> String {
    format!(
        "// Placeholder. `cargo test` reports this as ignored, which is accurate:\n\
         // local-vs-remote contract conformance for `{slug}` is NOT yet covered.\n\
         //\n\
         // To make it real, assert that the local and remote adapters agree โ€”\n\
         // drive both through the same inputs and compare the responses:\n\
         //\n\
         //   let local  = {slug}_local_adapter().handle(request.clone()).await?;\n\
         //   let remote = {slug}_remote_adapter().handle(request).await?;\n\
         //   assert_eq!(local, remote);\n\
         //\n\
         // Then delete the #[ignore].\n\
         #[test]\n\
         #[ignore = \"local-vs-remote contract conformance for {slug} is not implemented yet\"]\n\
         fn contract_conformance_for_{slug}_split() {{\n    \
             panic!(\n        \
                 \"contract conformance for {slug} is not implemented: the local and \\\n         \
                  remote adapters are never compared. See the comment above.\"\n    \
             );\n\
         }}\n"
    )
}

fn resolved_split_protocols(protocols: &Option<Vec<ServiceType>>) -> Vec<ServiceType> {
    let mut selected = protocols.clone().unwrap_or_else(|| vec![ServiceType::Rest]);
    if selected.is_empty() {
        selected.push(ServiceType::Rest);
    }
    let mut deduped = Vec::new();
    for protocol in selected {
        if !deduped.contains(&protocol) {
            deduped.push(protocol);
        }
    }
    deduped
}

fn register_workspace_member(member: &str) -> Result<()> {
    let workspace = PathBuf::from("Cargo.toml");
    let mut raw = fs::read_to_string(&workspace)
        .with_context(|| format!("Failed reading {}", workspace.display()))?;
    let quoted = format!("\"{}\"", member.replace('\\', "/"));
    if raw.contains(&quoted) {
        return Ok(());
    }

    let members_pos = raw
        .find("members = [")
        .context("workspace Cargo.toml missing members array")?;
    let list_start = raw[members_pos..]
        .find('[')
        .map(|idx| members_pos + idx)
        .context("workspace members array opening bracket not found")?;
    let list_end = raw[list_start..]
        .find(']')
        .map(|idx| list_start + idx)
        .context("workspace members array closing bracket not found")?;

    let insertion = format!("    {},\n", quoted);
    raw.insert_str(list_end, &insertion);
    fs::write(&workspace, raw)
        .with_context(|| format!("Failed writing {}", workspace.display()))?;
    println!("๐Ÿงฉ Registered workspace member: {}", member);
    Ok(())
}

fn register_krab_service(service_key: &str, service_crate: &str, port: u16) -> Result<()> {
    let config_path = PathBuf::from("krab.toml");
    let mut raw = fs::read_to_string(&config_path)
        .with_context(|| format!("Failed reading {}", config_path.display()))?;
    let header = format!("[services.{service_key}]");
    if raw.contains(&header) {
        return Ok(());
    }

    if !raw.ends_with('\n') {
        raw.push('\n');
    }

    raw.push_str(&format!(
        "\n{header}\ncommand = \"cargo\"\nargs = [\"run\", \"--bin\", \"{service_crate}\"]\nenv = {{ RUST_LOG = \"info\" }}\n\n[services.{service_key}.restart_policy]\non_exit = true\nbackoff_ms = 700\nmax_attempts = 8\n\n[services.{service_key}.healthcheck]\nurl = \"http://127.0.0.1:{port}/ready\"\ntimeout_ms = 1500\nretries = 12\ninterval_ms = 300\n"
    ));

    fs::write(&config_path, raw)
        .with_context(|| format!("Failed writing {}", config_path.display()))?;
    println!("๐Ÿงฉ Registered orchestrator entry: services.{service_key}");
    Ok(())
}

fn owning_service_name(path: &Path) -> Option<String> {
    let normalized = path.to_string_lossy().replace('\\', "/");
    let parts: Vec<&str> = normalized.split('/').collect();
    for index in 0..parts.len().saturating_sub(1) {
        if parts[index] == "services" && parts[index + 1].starts_with("service_") {
            return Some(parts[index + 1].to_string());
        }
    }
    None
}

fn parse_direct_service_import(line: &str) -> Option<String> {
    let trimmed = line.trim_start();
    for prefix in ["use ", "pub use ", "extern crate "] {
        if let Some(rest) = trimmed.strip_prefix(prefix) {
            let token = rest
                .split(|c: char| c == ':' || c == ';' || c.is_whitespace())
                .next()
                .unwrap_or_default();
            if token.starts_with("service_") {
                return Some(token.to_string());
            }
        }
    }
    None
}

fn collect_service_endpoint_block_violations(file: &Path, raw: &str, violations: &mut Vec<String>) {
    let lines: Vec<&str> = raw.lines().collect();
    let mut idx = 0usize;

    while idx < lines.len() {
        if !lines[idx].contains("ServiceEndpoint {") {
            idx += 1;
            continue;
        }

        let start_line = idx + 1;
        let mut block = String::new();
        let mut brace_depth = 0i32;

        while idx < lines.len() {
            let line = lines[idx];
            block.push_str(line);
            block.push('\n');

            brace_depth += line.chars().filter(|c| *c == '{').count() as i32;
            brace_depth -= line.chars().filter(|c| *c == '}').count() as i32;

            if brace_depth <= 0 {
                break;
            }

            idx += 1;
        }

        let uses_defaults = block.contains("..ServiceEndpoint::default()");
        let has_timeout = block.contains("timeout_ms");
        let has_retries = block.contains("max_retries");
        if !uses_defaults && (!has_timeout || !has_retries) {
            let mut missing = Vec::new();
            if !has_timeout {
                missing.push("timeout_ms");
            }
            if !has_retries {
                missing.push("max_retries");
            }
            violations.push(format!(
                "{}:{} ServiceEndpoint block missing {}",
                file.display(),
                start_line,
                missing.join(" and ")
            ));
        }

        idx += 1;
    }
}

fn detect_contract_payload_violations(raw: &str) -> Vec<String> {
    let lines: Vec<&str> = raw.lines().collect();
    let mut violations = Vec::new();

    for (idx, line) in lines.iter().enumerate() {
        let trimmed = line.trim_start();
        if !trimmed.starts_with("pub struct ") {
            continue;
        }

        let name = trimmed
            .trim_start_matches("pub struct ")
            .split(|c: char| c == '{' || c.is_whitespace())
            .next()
            .unwrap_or("UnknownContractStruct");

        let derive_window_start = idx.saturating_sub(3);
        let derive_window = &lines[derive_window_start..=idx];
        let has_serialize = derive_window
            .iter()
            .any(|entry| entry.contains("Serialize"));
        let has_deserialize = derive_window
            .iter()
            .any(|entry| entry.contains("Deserialize"));

        if !has_serialize || !has_deserialize {
            violations.push(format!(
                "line {} struct `{}` missing #[derive(Serialize, Deserialize)]",
                idx + 1,
                name
            ));
        }
    }

    violations
}

fn detect_service_config_violations(raw: &str) -> Vec<String> {
    let parsed: toml::Value = match toml::from_str(raw) {
        Ok(value) => value,
        Err(err) => return vec![format!("invalid krab.toml: {err}")],
    };

    let Some(services) = parsed.get("services").and_then(toml::Value::as_table) else {
        return Vec::new();
    };

    let mut violations = Vec::new();
    for (name, service) in services {
        let Some(service_table) = service.as_table() else {
            violations.push(format!("services.{name} must be a table"));
            continue;
        };

        let Some(healthcheck) = service_table
            .get("healthcheck")
            .and_then(toml::Value::as_table)
        else {
            violations.push(format!(
                "services.{name} missing [services.{name}.healthcheck]"
            ));
            continue;
        };

        match healthcheck.get("url").and_then(toml::Value::as_str) {
            Some(url) if url.ends_with("/ready") => {}
            Some(url) => violations.push(format!(
                "services.{name}.healthcheck.url should target /ready, got `{url}`"
            )),
            None => violations.push(format!("services.{name}.healthcheck.url missing")),
        }

        for field in ["timeout_ms", "retries", "interval_ms"] {
            if !healthcheck.contains_key(field) {
                violations.push(format!("services.{name}.healthcheck.{field} missing"));
            }
        }

        let Some(restart_policy) = service_table
            .get("restart_policy")
            .and_then(toml::Value::as_table)
        else {
            violations.push(format!(
                "services.{name} missing [services.{name}.restart_policy]"
            ));
            continue;
        };

        for field in ["on_exit", "backoff_ms", "max_attempts"] {
            if !restart_policy.contains_key(field) {
                violations.push(format!("services.{name}.restart_policy.{field} missing"));
            }
        }
    }

    violations
}

#[cfg(test)]
mod tests {
    use super::{
        detect_service_config_violations, parse_direct_service_import,
        runtime_topology_env_violation, split_contract_conformance_test, topology_doctor_report_at,
        CHECK_CONTRACT_PAYLOAD_DERIVES, CHECK_ORCHESTRATOR_SERVICE_CONFIG,
        CHECK_SERVICE_SOURCE_SCAN,
    };
    use std::fs;
    use std::path::Path;

    fn clear_topology_env() {
        std::env::remove_var("KRAB_RUNTIME_TOPOLOGY");
        std::env::remove_var("KRAB_RUNTIME_ENDPOINTS_JSON");
    }

    fn write_contract_file(root: &Path, body: &str) {
        let path = root.join("crates/framework/krab_core/src");
        fs::create_dir_all(&path).expect("create contract dir");
        fs::write(path.join("service_contract.rs"), body).expect("write contract file");
    }

    /// A project produced by `krab new` has no `services/`, no `krab.toml` in
    /// the framework's shape, and certainly no `krab_core` source tree. This
    /// used to return `Err("Failed reading
    /// crates/framework/krab_core/src/service_contract.rs")`, which made
    /// `krab doctor` and `krab topology doctor` exit 1 in every generated
    /// project.
    #[test]
    #[serial_test::serial]
    fn topology_report_skips_framework_only_paths_instead_of_erroring() {
        clear_topology_env();
        let root = tempfile::tempdir().expect("tempdir");

        let report = topology_doctor_report_at(root.path())
            .expect("a project without framework paths must still produce a report");

        assert!(report.violations.is_empty(), "{:?}", report.violations);
        assert_eq!(report.checked_rust_files, 0);

        let skipped: Vec<&str> = report.skipped.iter().map(|entry| entry.check).collect();
        assert!(skipped.contains(&CHECK_SERVICE_SOURCE_SCAN), "{skipped:?}");
        assert!(
            skipped.contains(&CHECK_CONTRACT_PAYLOAD_DERIVES),
            "{skipped:?}"
        );
        assert!(
            skipped.contains(&CHECK_ORCHESTRATOR_SERVICE_CONFIG),
            "{skipped:?}"
        );
        assert!(!report.ran(CHECK_CONTRACT_PAYLOAD_DERIVES));
    }

    /// Tolerating an absent contract file must not tolerate a broken one: the
    /// skip is about applicability, not about lowering the bar.
    #[test]
    #[serial_test::serial]
    fn topology_report_still_flags_a_present_but_violating_contract_file() {
        clear_topology_env();
        let root = tempfile::tempdir().expect("tempdir");
        write_contract_file(
            root.path(),
            "pub struct ContractPayload {\n    pub id: String,\n}\n",
        );

        let report = topology_doctor_report_at(root.path()).expect("report");

        assert!(report.ran(CHECK_CONTRACT_PAYLOAD_DERIVES));
        assert!(
            report.violations.iter().any(|issue| issue
                .contains("`ContractPayload` missing #[derive(Serialize, Deserialize)]")),
            "{:?}",
            report.violations
        );
    }

    /// The same rule for the derives-are-present case: a readable, conforming
    /// contract file is a real pass, not a skip.
    #[test]
    #[serial_test::serial]
    fn topology_report_accepts_a_present_and_conforming_contract_file() {
        clear_topology_env();
        let root = tempfile::tempdir().expect("tempdir");
        write_contract_file(
            root.path(),
            "#[derive(Debug, Serialize, Deserialize)]\npub struct ContractPayload {\n    pub id: String,\n}\n",
        );

        let report = topology_doctor_report_at(root.path()).expect("report");

        assert!(report.ran(CHECK_CONTRACT_PAYLOAD_DERIVES));
        assert!(report.violations.is_empty(), "{:?}", report.violations);
    }

    /// A present `krab.toml` is checked as before โ€” absence is the only thing
    /// that became a skip.
    #[test]
    #[serial_test::serial]
    fn topology_report_still_flags_a_present_but_violating_krab_toml() {
        clear_topology_env();
        let root = tempfile::tempdir().expect("tempdir");
        fs::write(
            root.path().join("krab.toml"),
            "[services.frontend]\ncommand = \"cargo\"\n",
        )
        .expect("write krab.toml");

        let report = topology_doctor_report_at(root.path()).expect("report");

        assert!(report.ran(CHECK_ORCHESTRATOR_SERVICE_CONFIG));
        assert!(
            report
                .violations
                .iter()
                .any(|issue| issue.contains("missing [services.frontend.healthcheck]")),
            "{:?}",
            report.violations
        );
    }

    /// The generated test must never again assert something that cannot fail.
    ///
    /// The original body was
    /// `assert!(["local_adapter", "remote_adapter", "payload_serialization"]
    ///     .contains(&"payload_serialization"))` โ€” a literal array asserted to
    /// contain a literal it was built from. It reported green forever under a
    /// name claiming contract coverage.
    #[test]
    fn generated_conformance_test_is_ignored_and_not_tautological() {
        let generated = split_contract_conformance_test("billing");

        assert!(
            generated.contains("#[ignore = \""),
            "the placeholder must be #[ignore]d with a reason, not silently green:\n{generated}"
        );
        assert!(
            generated.contains("panic!("),
            "running it with --ignored must fail loudly rather than pass:\n{generated}"
        );
        assert!(
            !generated.contains("required_contract_checks"),
            "the self-satisfying array assertion is back:\n{generated}"
        );
        assert!(
            !generated.contains("assert!("),
            "an assert! here is almost certainly tautological again:\n{generated}"
        );
    }

    #[test]
    fn generated_conformance_test_names_the_domain_everywhere_it_should() {
        let generated = split_contract_conformance_test("billing");

        assert!(generated.contains("fn contract_conformance_for_billing_split()"));
        assert!(generated.contains("local-vs-remote contract conformance for billing"));
        // The worked example tells the reader what "make it real" means.
        assert!(generated.contains("assert_eq!(local, remote);"));
    }

    #[test]
    fn topology_doctor_allows_ready_probe_and_restart_policy() {
        let violations = detect_service_config_violations(
            r#"
[services.frontend]
command = "cargo"
args = ["run", "--bin", "service_frontend"]

[services.frontend.restart_policy]
on_exit = true
backoff_ms = 700
max_attempts = 8

[services.frontend.healthcheck]
url = "http://127.0.0.1:3000/ready"
timeout_ms = 1500
retries = 12
interval_ms = 300
"#,
        );

        assert!(violations.is_empty(), "{violations:?}");
    }

    #[test]
    fn topology_doctor_flags_liveness_probe_used_for_readiness() {
        let violations = detect_service_config_violations(
            r#"
[services.frontend]
command = "cargo"
args = ["run", "--bin", "service_frontend"]

[services.frontend.restart_policy]
on_exit = true
backoff_ms = 700
max_attempts = 8

[services.frontend.healthcheck]
url = "http://127.0.0.1:3000/health"
timeout_ms = 1500
retries = 12
interval_ms = 300
"#,
        );

        assert!(
            violations
                .iter()
                .any(|issue| issue.contains("should target /ready")),
            "{violations:?}"
        );
    }

    #[test]
    fn topology_doctor_flags_missing_restart_policy() {
        let violations = detect_service_config_violations(
            r#"
[services.frontend]
command = "cargo"
args = ["run", "--bin", "service_frontend"]

[services.frontend.healthcheck]
url = "http://127.0.0.1:3000/ready"
timeout_ms = 1500
retries = 12
interval_ms = 300
"#,
        );

        assert!(
            violations
                .iter()
                .any(|issue| issue.contains("missing [services.frontend.restart_policy]")),
            "{violations:?}"
        );
    }

    // Serialized: these mutate process-global env vars.
    #[test]
    #[serial_test::serial]
    fn topology_doctor_passes_clean_runtime_topology_env() {
        clear_topology_env();
        assert_eq!(runtime_topology_env_violation(), None);
    }

    #[test]
    #[serial_test::serial]
    fn topology_doctor_flags_malformed_runtime_endpoints_json() {
        clear_topology_env();
        std::env::set_var("KRAB_RUNTIME_ENDPOINTS_JSON", "{not json");

        let violation =
            runtime_topology_env_violation().expect("malformed endpoints JSON must be flagged");
        assert!(
            violation.contains("invalid KRAB_RUNTIME_ENDPOINTS_JSON"),
            "{violation}"
        );
        clear_topology_env();
    }

    #[test]
    #[serial_test::serial]
    fn topology_doctor_flags_split_mode_with_empty_endpoint_map() {
        clear_topology_env();
        std::env::set_var("KRAB_RUNTIME_TOPOLOGY", "split");

        let violation =
            runtime_topology_env_violation().expect("split mode with no endpoints must be flagged");
        assert!(violation.contains("endpoint map is empty"), "{violation}");
        clear_topology_env();
    }

    #[test]
    fn direct_service_import_parser_detects_service_crates() {
        assert_eq!(
            parse_direct_service_import("use service_users::client::UsersClient;"),
            Some("service_users".to_string())
        );
        assert_eq!(parse_direct_service_import("use crate::domain;"), None);
    }
}