Files
LearnGO/go/pkg/mod/github.com/cilium/ebpf@v0.11.0/internal/testutils/feature.go
T
2024-09-19 21:38:24 -04:00

140 lines
3.1 KiB
Go

package testutils
import (
"errors"
"os"
"strings"
"testing"
"github.com/cilium/ebpf/internal"
)
const (
ignoreKernelVersionEnvVar = "EBPF_TEST_IGNORE_KERNEL_VERSION"
)
func CheckFeatureTest(t *testing.T, fn func() error) {
checkFeatureTestError(t, fn())
}
func checkFeatureTestError(t *testing.T, err error) {
if err == nil {
return
}
var ufe *internal.UnsupportedFeatureError
if errors.As(err, &ufe) {
if ignoreKernelVersionCheck(t.Name()) {
t.Skipf("Ignoring error due to %s: %s", ignoreKernelVersionEnvVar, ufe.Error())
} else {
checkKernelVersion(t, ufe)
}
} else {
t.Error("Feature test failed:", err)
}
}
func CheckFeatureMatrix[K comparable](t *testing.T, fm internal.FeatureMatrix[K]) {
t.Helper()
for key, ft := range fm {
t.Run(ft.Name, func(t *testing.T) {
checkFeatureTestError(t, fm.Result(key))
})
}
}
func SkipIfNotSupported(tb testing.TB, err error) {
tb.Helper()
if err == internal.ErrNotSupported {
tb.Fatal("Unwrapped ErrNotSupported")
}
var ufe *internal.UnsupportedFeatureError
if errors.As(err, &ufe) {
checkKernelVersion(tb, ufe)
tb.Skip(ufe.Error())
}
if errors.Is(err, internal.ErrNotSupported) {
tb.Skip(err.Error())
}
}
func checkKernelVersion(tb testing.TB, ufe *internal.UnsupportedFeatureError) {
if ufe.MinimumVersion.Unspecified() {
return
}
if !isKernelLessThan(tb, ufe.MinimumVersion) {
tb.Helper()
tb.Fatalf("Feature '%s' isn't supported even though kernel is newer than %s",
ufe.Name, ufe.MinimumVersion)
}
}
func SkipOnOldKernel(tb testing.TB, minVersion, feature string) {
tb.Helper()
if IsKernelLessThan(tb, minVersion) {
tb.Skipf("Test requires at least kernel %s (due to missing %s)", minVersion, feature)
}
}
func IsKernelLessThan(tb testing.TB, minVersion string) bool {
tb.Helper()
minv, err := internal.NewVersion(minVersion)
if err != nil {
tb.Fatalf("Invalid version %s: %s", minVersion, err)
}
return isKernelLessThan(tb, minv)
}
func isKernelLessThan(tb testing.TB, minv internal.Version) bool {
tb.Helper()
if max := os.Getenv("CI_MAX_KERNEL_VERSION"); max != "" {
maxv, err := internal.NewVersion(max)
if err != nil {
tb.Fatalf("Invalid version %q in CI_MAX_KERNEL_VERSION: %s", max, err)
}
if maxv.Less(minv) {
tb.Fatalf("Test for %s will never execute on CI since %s is the most recent kernel", minv, maxv)
}
}
return kernelVersion(tb).Less(minv)
}
func kernelVersion(tb testing.TB) internal.Version {
tb.Helper()
v, err := internal.KernelVersion()
if err != nil {
tb.Fatal(err)
}
return v
}
// ignoreKernelVersionCheck checks if test name should be ignored for kernel version check by checking against environment var EBPF_TEST_IGNORE_KERNEL_VERSION.
// EBPF_TEST_IGNORE_KERNEL_VERSION is a comma (,) separated list of test names for which kernel version check should be ignored.
//
// eg: EBPF_TEST_IGNORE_KERNEL_VERSION=TestABC,TestXYZ
func ignoreKernelVersionCheck(tName string) bool {
tNames := os.Getenv(ignoreKernelVersionEnvVar)
if tNames == "" {
return false
}
ignored := strings.Split(tNames, ",")
for _, n := range ignored {
if strings.TrimSpace(n) == tName {
return true
}
}
return false
}