2015-10-13 03:09:05 -04:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2015-11-23 22:01:23 -05:00
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
2015-10-13 03:09:05 -04:00
|
|
|
"github.com/go-check/check"
|
|
|
|
)
|
|
|
|
|
|
|
|
// #16665
|
|
|
|
func (s *DockerSuite) TestInspectApiCpusetInConfigPre120(c *check.C) {
|
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
testRequires(c, cgroupCpuset)
|
|
|
|
|
|
|
|
name := "cpusetinconfig-pre120"
|
2015-11-15 17:00:39 -05:00
|
|
|
dockerCmd(c, "run", "--name", name, "--cpuset-cpus", "0", "busybox", "true")
|
2015-10-13 03:09:05 -04:00
|
|
|
|
|
|
|
status, body, err := sockRequest("GET", fmt.Sprintf("/v1.19/containers/%s/json", name), nil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusOK)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
var inspectJSON map[string]interface{}
|
2015-11-23 22:01:23 -05:00
|
|
|
err = json.Unmarshal(body, &inspectJSON)
|
|
|
|
c.Assert(err, checker.IsNil, check.Commentf("unable to unmarshal body for version 1.19"))
|
2015-10-13 03:09:05 -04:00
|
|
|
|
|
|
|
config, ok := inspectJSON["Config"]
|
2015-11-23 22:01:23 -05:00
|
|
|
c.Assert(ok, checker.True, check.Commentf("Unable to find 'Config'"))
|
2015-10-13 03:09:05 -04:00
|
|
|
cfg := config.(map[string]interface{})
|
2015-11-23 22:01:23 -05:00
|
|
|
_, ok = cfg["Cpuset"]
|
|
|
|
c.Assert(ok, checker.True, check.Commentf("Api version 1.19 expected to include Cpuset in 'Config'"))
|
2015-10-13 03:09:05 -04:00
|
|
|
}
|