2021-08-23 09:14:53 -04:00
|
|
|
//go:build linux
|
2020-09-28 08:58:32 -04:00
|
|
|
// +build linux
|
|
|
|
|
|
|
|
package oci
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2021-08-24 06:10:50 -04:00
|
|
|
"os"
|
2020-09-28 08:58:32 -04:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/docker/docker/profiles/seccomp"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSeccompLoadProfile(t *testing.T) {
|
|
|
|
profiles := []string{"default.json", "default-old-format.json", "example.json"}
|
|
|
|
|
|
|
|
for _, p := range profiles {
|
|
|
|
t.Run(p, func(t *testing.T) {
|
2021-08-24 06:10:50 -04:00
|
|
|
f, err := os.ReadFile("fixtures/" + p)
|
2020-09-28 08:58:32 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rs := DefaultLinuxSpec()
|
|
|
|
if _, err := seccomp.LoadProfile(string(f), &rs); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSeccompLoadDefaultProfile(t *testing.T) {
|
|
|
|
b, err := json.Marshal(seccomp.DefaultProfile())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
rs := DefaultLinuxSpec()
|
|
|
|
if _, err := seccomp.LoadProfile(string(b), &rs); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|