mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9f0b3f5609
full diff: https://github.com/gotestyourself/gotest.tools/compare/v2.3.0...v3.0.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
32 lines
745 B
Go
32 lines
745 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/client"
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func (s *DockerSuite) TestInfoSecurityOptions(c *testing.T) {
|
|
testRequires(c, testEnv.IsLocalDaemon, DaemonIsLinux)
|
|
if !seccompEnabled() && !Apparmor() {
|
|
c.Skip("test requires Seccomp and/or AppArmor")
|
|
}
|
|
|
|
cli, err := client.NewClientWithOpts(client.FromEnv)
|
|
assert.NilError(c, err)
|
|
defer cli.Close()
|
|
info, err := cli.Info(context.Background())
|
|
assert.NilError(c, err)
|
|
|
|
if Apparmor() {
|
|
assert.Check(c, is.Contains(info.SecurityOptions, "name=apparmor"))
|
|
}
|
|
if seccompEnabled() {
|
|
assert.Check(c, is.Contains(info.SecurityOptions, "name=seccomp,profile=default"))
|
|
}
|
|
}
|