Static safety/lint runner for the BlockNinja codebase. ~25 invariant
checks across Go and frontend sources. Was at git.dev.alexdunmow.com:block/ninja
in backend/cmd/check-safety/ until the 2026-06-06 consolidation moved
the BlockNinja repos under a shared ~/src/blockninja/ parent.
This repo is the standalone extraction:
- Own go.mod (git.dev.alexdunmow.com/block/check-safety, go 1.26.4)
- Vendored internal/{helpers,theme} from CMS (Go's internal/ rule
blocks cross-module imports; vendoring is the workaround)
- CLI contract unchanged: `check-safety <target-dir> [--flags]`
- CMS Makefile shells into ../check-safety for safety-check /
install-safety-checker targets
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
54 lines
1.6 KiB
Go
54 lines
1.6 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
func init() {
|
|
register(Check{
|
|
Seq: 31,
|
|
ID: "3b",
|
|
Title: "Orchestrator backend tests",
|
|
Run: func(ctx *ScanContext, rep *Reporter) {
|
|
// Check 3b: Orchestrator backend tests
|
|
fmt.Println("=== Check 3b: Orchestrator backend tests ===")
|
|
var orchestratorTestTargets []goTestTarget
|
|
if ctx.orchestratorOnly {
|
|
orchestratorTestTargets = discoverOrchestratorTestTargetsFromRoot(orchestratorRepoRoot())
|
|
} else {
|
|
orchestratorTestTargets = discoverOrchestratorTestTargets(ctx.repoRoot, ctx.backendDir, ctx.includeCoreTargets)
|
|
}
|
|
if len(orchestratorTestTargets) > 0 {
|
|
completedOrchestratorTargets, orchestratorFailures, orchestratorErr := runGoTestTargets(orchestratorTestTargets)
|
|
if orchestratorErr != nil {
|
|
fmt.Printf(" ERROR: failed to run orchestrator tests: %v\n", orchestratorErr)
|
|
os.Exit(2)
|
|
}
|
|
if len(orchestratorFailures) > 0 {
|
|
fmt.Printf(" FAIL: %d orchestrator test target(s) failed:\n", len(orchestratorFailures))
|
|
for _, failure := range orchestratorFailures {
|
|
fmt.Printf(" [%s] %s\n", failure.stage, failure.target)
|
|
if failure.output != "" {
|
|
for line := range strings.SplitSeq(failure.output, "\n") {
|
|
fmt.Printf(" %s\n", line)
|
|
}
|
|
}
|
|
}
|
|
rep.Fail()
|
|
} else {
|
|
fmt.Printf(" OK: Orchestrator tests clean for %d target(s)\n", len(completedOrchestratorTargets))
|
|
for _, target := range completedOrchestratorTargets {
|
|
fmt.Printf(" - %s\n", target)
|
|
}
|
|
}
|
|
} else {
|
|
fmt.Println(" SKIP: orchestrator backend not found or not part of this scan")
|
|
}
|
|
|
|
fmt.Println()
|
|
},
|
|
})
|
|
}
|