check-safety/registry_test.go
Alex Dunmow b423f90e29 feat: no -buildmode=plugin check (disabled until WO-WZ-017)
Adds check 29: ported plugin repos must not carry a `-buildmode=plugin` build
target (the legacy .so compile the wasm migration retires). Lands DISABLED
behind a per-check const toggle (enableBuildmodePluginCheck=false) so it emits
no output and never fails while the fleet is still porting; WO-WZ-017 flips it
on. Scans plugin Makefiles/*.sh only. Unit-tested; golden snapshots unaffected.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-03 18:34:28 +08:00

45 lines
1.4 KiB
Go

package main
import (
"sort"
"testing"
)
// TestRegistryOrder locks the run order of all registered checks.
//
// main() runs checks sorted by Seq, so the Seq values ARE the contract for
// output order. The golden characterization test cannot guard every position:
// the plugin-discovery check ("10disc") prints nothing when no plugin roots are
// scanned (as in the golden fixtures), so a Seq mistake that reordered it past
// Check 10b would slip through golden silently. Assert the full canonical order
// here, and reject duplicate Seq values (which would make order nondeterministic).
func TestRegistryOrder(t *testing.T) {
want := []string{
"1", "2", "2b", "2c", "2d", "2e", "2f", "3", "3b", "4",
"5", "6", "7", "8", "9", "10", "10b", "10disc", "11", "12",
"13", "14", "15", "16", "17", "18", "19", "20", "21", "22",
"28", "29",
}
ordered := make([]Check, len(registry))
copy(ordered, registry)
sort.Slice(ordered, func(i, j int) bool { return ordered[i].Seq < ordered[j].Seq })
if len(ordered) != len(want) {
t.Fatalf("registry has %d checks, want %d", len(ordered), len(want))
}
for i, c := range ordered {
if c.ID != want[i] {
t.Errorf("position %d: got check %q (Seq %d), want %q", i, c.ID, c.Seq, want[i])
}
}
seen := map[int]string{}
for _, c := range registry {
if prev, ok := seen[c.Seq]; ok {
t.Errorf("duplicate Seq %d on checks %q and %q", c.Seq, prev, c.ID)
}
seen[c.Seq] = c.ID
}
}