New AST check scans handler render functions that build site settings (getSiteSettings + doc["site_settings"]) and fails if they don't also set siteSettings["toolbar"], so admin-toolbar injection can't silently regress when a new public page type is added. - toolbar.go: AST scanner; exempts renderListingPage (auto SEO pages) and renderVersionPreview (carries its own preview banner). - check_toolbar.go: registration at Seq 280 (ID "28"). - registry_test.go: +1 expected check; golden fixtures regenerated. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
45 lines
1.4 KiB
Go
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",
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|