integration-cli/docker_api_inspect_unix_test.go
8c63ce4f
 // +build !windows
 
 package main
 
 import (
 	"encoding/json"
 	"fmt"
 	"net/http"
 
d53a9bcb
 	"github.com/docker/docker/pkg/integration/checker"
8c63ce4f
 	"github.com/go-check/check"
 )
 
 // #16665
 func (s *DockerSuite) TestInspectApiCpusetInConfigPre120(c *check.C) {
 	testRequires(c, DaemonIsLinux)
 	testRequires(c, cgroupCpuset)
 
 	name := "cpusetinconfig-pre120"
a9afebae
 	dockerCmd(c, "run", "--name", name, "--cpuset-cpus", "0", "busybox", "true")
8c63ce4f
 
 	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{}
d53a9bcb
 	err = json.Unmarshal(body, &inspectJSON)
 	c.Assert(err, checker.IsNil, check.Commentf("unable to unmarshal body for version 1.19"))
8c63ce4f
 
 	config, ok := inspectJSON["Config"]
d53a9bcb
 	c.Assert(ok, checker.True, check.Commentf("Unable to find 'Config'"))
8c63ce4f
 	cfg := config.(map[string]interface{})
d53a9bcb
 	_, ok = cfg["Cpuset"]
 	c.Assert(ok, checker.True, check.Commentf("Api version 1.19 expected to include Cpuset in 'Config'"))
8c63ce4f
 }