mirror of
https://github.com/TecharoHQ/anubis.git
synced 2025-11-29 09:00:21 +08:00
* fix(data): add services folder to embedded filesystem Also includes a regression test to ensure this does not happen again. Assisted-By: GLM 4.6 via Claude Code * docs: update CHANGELOG Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net>
38 lines
920 B
Go
38 lines
920 B
Go
package data
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
// TestBotPoliciesEmbed ensures all YAML files in the directory tree
|
|
// are accessible in the embedded BotPolicies filesystem.
|
|
func TestBotPoliciesEmbed(t *testing.T) {
|
|
yamlFiles, err := filepath.Glob("./**/*.yaml")
|
|
if err != nil {
|
|
t.Fatalf("Failed to glob YAML files: %v", err)
|
|
}
|
|
|
|
if len(yamlFiles) == 0 {
|
|
t.Fatal("No YAML files found in directory tree")
|
|
}
|
|
|
|
t.Logf("Found %d YAML files to verify", len(yamlFiles))
|
|
|
|
for _, filePath := range yamlFiles {
|
|
embeddedPath := strings.TrimPrefix(filePath, "./")
|
|
|
|
t.Run(embeddedPath, func(t *testing.T) {
|
|
content, err := BotPolicies.ReadFile(embeddedPath)
|
|
if err != nil {
|
|
t.Errorf("Failed to read %s from embedded filesystem: %v", embeddedPath, err)
|
|
return
|
|
}
|
|
|
|
if len(content) == 0 {
|
|
t.Errorf("File %s exists in embedded filesystem but is empty", embeddedPath)
|
|
}
|
|
})
|
|
}
|
|
}
|