2014-09-05 17:35:55 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2015-04-20 17:03:56 -04:00
|
|
|
"net/http"
|
2014-09-05 17:35:55 -04:00
|
|
|
"os/exec"
|
2015-04-06 09:21:18 -04:00
|
|
|
"strings"
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
"github.com/go-check/check"
|
|
|
|
)
|
2015-02-20 01:56:02 -05:00
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestInspectApiContainerResponse(c *check.C) {
|
2014-09-05 17:35:55 -04:00
|
|
|
runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "true")
|
|
|
|
out, _, err := runCommandWithOutput(runCmd)
|
2014-10-14 16:06:06 -04:00
|
|
|
if err != nil {
|
2015-04-18 12:46:47 -04:00
|
|
|
c.Fatalf("failed to create a container: %s, %v", out, err)
|
2014-10-14 16:06:06 -04:00
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-04-06 09:21:18 -04:00
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-05-11 17:53:52 -04:00
|
|
|
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)
|
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-05-11 17:53:52 -04:00
|
|
|
keys := []string{"State", "Created", "Path", "Args", "Config", "Image", "NetworkSettings", "ResolvConfPath", "HostnamePath", "HostsPath", "LogPath", "Name", "Driver", "ExecDriver", "MountLabel", "ProcessLabel", "Volumes", "VolumesRW"}
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-05-11 17:53:52 -04:00
|
|
|
keys = append(keys, "Id")
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-05-11 17:53:52 -04:00
|
|
|
for _, key := range keys {
|
|
|
|
if _, ok := inspectJSON[key]; !ok {
|
|
|
|
c.Fatalf("%s does not exist in response for latest version", key)
|
2014-09-15 19:35:07 -04:00
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
}
|
2015-05-11 17:53:52 -04:00
|
|
|
//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")
|
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
}
|