mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5c295460da
- integration-cli/docker_cli_attach_test.go - integration-cli/docker_cli_attach_unix_test.go - integration-cli/docker_cli_build_test.go - integration-cli/docker_cli_build_unix_test.go - integration-cli/docker_cli_by_digest_test.go - integration-cli/docker_cli_commit_test.go - integration-cli/docker_cli_config_test.go - integration-cli/docker_cli_cp_test.go - integration-cli/docker_cli_create_test.go - integration-cli/docker_cli_pause_test.go - integration-cli/docker_cli_port_test.go - integration-cli/docker_cli_port_unix_test.go - integration-cli/docker_cli_proxy_test.go - integration-cli/docker_cli_ps_test.go - integration-cli/docker_cli_pull_test.go - integration-cli/docker_cli_push_test.go - docker_api_attach_test.go - docker_api_containers_test.go - docker_api_events_test.go - docker_api_exec_resize_test.go - docker_api_exec_test.go - docker_api_images_test.go - docker_api_info_test.go Signed-off-by: Vincent Demeester <vincent@sbr.pm>
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func (s *DockerSuite) TestInspectApiContainerResponse(c *check.C) {
|
|
out, _ := dockerCmd(c, "run", "-d", "busybox", "true")
|
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
endpoint := "/containers/" + cleanedContainerID + "/json"
|
|
status, body, err := sockRequest("GET", endpoint, nil)
|
|
c.Assert(status, check.Equals, http.StatusOK)
|
|
c.Assert(err, check.IsNil)
|
|
|
|
var inspectJSON map[string]interface{}
|
|
if err = json.Unmarshal(body, &inspectJSON); err != nil {
|
|
c.Fatalf("unable to unmarshal body for latest version: %v", err)
|
|
}
|
|
|
|
keys := []string{"State", "Created", "Path", "Args", "Config", "Image", "NetworkSettings", "ResolvConfPath", "HostnamePath", "HostsPath", "LogPath", "Name", "Driver", "ExecDriver", "MountLabel", "ProcessLabel", "Volumes", "VolumesRW", "GraphDriver"}
|
|
|
|
keys = append(keys, "Id")
|
|
|
|
for _, key := range keys {
|
|
if _, ok := inspectJSON[key]; !ok {
|
|
c.Fatalf("%s does not exist in response for latest version", key)
|
|
}
|
|
}
|
|
//Issue #6830: type not properly converted to JSON/back
|
|
if _, ok := inspectJSON["Path"].(bool); ok {
|
|
c.Fatalf("Path of `true` should not be converted to boolean `true` via JSON marshalling")
|
|
}
|
|
}
|