Files
releases/v1/capabilities/capabilities_test.go
T
Stephan Renatus b15601876e go: cleanup old build flags
Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com>
2026-02-12 08:42:05 +01:00

34 lines
771 B
Go

// Copyright 2021 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package capabilities_test
import (
"testing"
"github.com/open-policy-agent/opa/v1/capabilities"
"github.com/open-policy-agent/opa/v1/util"
)
func TestCapabilitiesEmbedded(t *testing.T) {
ents, err := capabilities.FS.ReadDir(".")
if err != nil {
t.Fatal(err)
}
if len(ents) == 0 {
t.Error("expected capabilities to be present")
}
for _, ent := range ents {
cont, err := capabilities.FS.ReadFile(ent.Name())
if err != nil {
t.Errorf("file %v: %v", ent.Name(), err)
}
var x any
err = util.UnmarshalJSON(cont, &x)
if err != nil {
t.Errorf("file %v: %v", ent.Name(), err)
}
}
}