2018-01-31 16:28:09 -05:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
2018-04-14 12:52:02 -04:00
|
|
|
"github.com/docker/docker/integration/internal/container"
|
2018-04-10 10:29:48 -04:00
|
|
|
"github.com/docker/docker/internal/test/daemon"
|
2018-01-31 16:28:09 -05:00
|
|
|
|
|
|
|
"github.com/gotestyourself/gotestyourself/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
// hasSystemd checks whether the host was booted with systemd as its init
|
|
|
|
// system. Stolen from
|
|
|
|
// https://github.com/coreos/go-systemd/blob/176f85496f4e/util/util.go#L68
|
|
|
|
func hasSystemd() bool {
|
|
|
|
fi, err := os.Lstat("/run/systemd/system")
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return fi.IsDir()
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestCgroupDriverSystemdMemoryLimit checks that container
|
|
|
|
// memory limit can be set when using systemd cgroupdriver.
|
|
|
|
// https://github.com/moby/moby/issues/35123
|
|
|
|
func TestCgroupDriverSystemdMemoryLimit(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
if !hasSystemd() {
|
|
|
|
t.Skip("systemd not available")
|
|
|
|
}
|
|
|
|
|
2018-04-10 10:29:48 -04:00
|
|
|
d := daemon.New(t)
|
2018-01-31 16:28:09 -05:00
|
|
|
client, err := d.NewClient()
|
|
|
|
assert.NilError(t, err)
|
|
|
|
d.StartWithBusybox(t, "--exec-opt", "native.cgroupdriver=systemd", "--iptables=false")
|
|
|
|
defer d.Stop(t)
|
|
|
|
|
|
|
|
const mem = 64 * 1024 * 1024 // 64 MB
|
|
|
|
|
|
|
|
ctx := context.Background()
|
2018-04-14 12:52:02 -04:00
|
|
|
ctrID := container.Create(t, ctx, client, func(c *container.TestContainerConfig) {
|
|
|
|
c.HostConfig.Resources.Memory = mem
|
|
|
|
})
|
|
|
|
defer client.ContainerRemove(ctx, ctrID, types.ContainerRemoveOptions{Force: true})
|
2018-01-31 16:28:09 -05:00
|
|
|
|
2018-04-14 12:52:02 -04:00
|
|
|
err = client.ContainerStart(ctx, ctrID, types.ContainerStartOptions{})
|
2018-01-31 16:28:09 -05:00
|
|
|
assert.NilError(t, err)
|
|
|
|
|
2018-04-14 12:52:02 -04:00
|
|
|
s, err := client.ContainerInspect(ctx, ctrID)
|
2018-01-31 16:28:09 -05:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Equal(t, s.HostConfig.Memory, mem)
|
|
|
|
}
|