2014-09-05 17:35:55 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2015-06-03 15:21:38 -04:00
|
|
|
"fmt"
|
2015-04-20 17:03:56 -04:00
|
|
|
"net/http"
|
2015-04-06 09:21:18 -04:00
|
|
|
"strings"
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-05-13 09:23:36 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/pkg/stringutils"
|
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) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-14 02:35:36 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "busybox", "true")
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-04-06 09:21:18 -04:00
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
2015-06-03 15:21:38 -04:00
|
|
|
keysBase := []string{"Id", "State", "Created", "Path", "Args", "Config", "Image", "NetworkSettings",
|
|
|
|
"ResolvConfPath", "HostnamePath", "HostsPath", "LogPath", "Name", "Driver", "ExecDriver", "MountLabel", "ProcessLabel", "GraphDriver"}
|
|
|
|
|
|
|
|
cases := []struct {
|
|
|
|
version string
|
|
|
|
keys []string
|
|
|
|
}{
|
|
|
|
{"1.20", append(keysBase, "Mounts")},
|
|
|
|
{"1.19", append(keysBase, "Volumes", "VolumesRW")},
|
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-06-03 15:21:38 -04:00
|
|
|
for _, cs := range cases {
|
|
|
|
endpoint := fmt.Sprintf("/v%s/containers/%s/json", cs.version, cleanedContainerID)
|
2015-05-11 17:53:52 -04:00
|
|
|
|
2015-06-03 15:21:38 -04:00
|
|
|
status, body, err := sockRequest("GET", endpoint, nil)
|
|
|
|
c.Assert(err, check.IsNil)
|
2015-10-19 13:07:44 -04:00
|
|
|
c.Assert(status, check.Equals, http.StatusOK)
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-06-03 15:21:38 -04:00
|
|
|
var inspectJSON map[string]interface{}
|
|
|
|
if err = json.Unmarshal(body, &inspectJSON); err != nil {
|
|
|
|
c.Fatalf("unable to unmarshal body for version %s: %v", cs.version, err)
|
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-06-03 15:21:38 -04:00
|
|
|
for _, key := range cs.keys {
|
|
|
|
if _, ok := inspectJSON[key]; !ok {
|
|
|
|
c.Fatalf("%s does not exist in response for version %s", key, cs.version)
|
|
|
|
}
|
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
|
2015-06-03 15:21:38 -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-15 19:35:07 -04:00
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
}
|
|
|
|
}
|
2015-08-24 13:57:39 -04:00
|
|
|
|
|
|
|
func (s *DockerSuite) TestInspectApiContainerVolumeDriverLegacy(c *check.C) {
|
|
|
|
out, _ := dockerCmd(c, "run", "-d", "busybox", "true")
|
|
|
|
|
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
|
|
|
|
cases := []string{"1.19", "1.20"}
|
|
|
|
for _, version := range cases {
|
|
|
|
endpoint := fmt.Sprintf("/v%s/containers/%s/json", version, cleanedContainerID)
|
|
|
|
status, body, err := sockRequest("GET", endpoint, nil)
|
|
|
|
c.Assert(err, check.IsNil)
|
2015-10-19 13:07:44 -04:00
|
|
|
c.Assert(status, check.Equals, http.StatusOK)
|
2015-08-24 13:57:39 -04:00
|
|
|
|
|
|
|
var inspectJSON map[string]interface{}
|
|
|
|
if err = json.Unmarshal(body, &inspectJSON); err != nil {
|
|
|
|
c.Fatalf("unable to unmarshal body for version %s: %v", version, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
config, ok := inspectJSON["Config"]
|
|
|
|
if !ok {
|
|
|
|
c.Fatal("Unable to find 'Config'")
|
|
|
|
}
|
|
|
|
cfg := config.(map[string]interface{})
|
|
|
|
if _, ok := cfg["VolumeDriver"]; !ok {
|
|
|
|
c.Fatalf("Api version %s expected to include VolumeDriver in 'Config'", version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerSuite) TestInspectApiContainerVolumeDriver(c *check.C) {
|
|
|
|
out, _ := dockerCmd(c, "run", "-d", "busybox", "true")
|
|
|
|
|
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
|
|
|
|
endpoint := fmt.Sprintf("/v1.21/containers/%s/json", cleanedContainerID)
|
|
|
|
status, body, err := sockRequest("GET", endpoint, nil)
|
|
|
|
c.Assert(err, check.IsNil)
|
2015-10-19 13:07:44 -04:00
|
|
|
c.Assert(status, check.Equals, http.StatusOK)
|
2015-08-24 13:57:39 -04:00
|
|
|
|
|
|
|
var inspectJSON map[string]interface{}
|
|
|
|
if err = json.Unmarshal(body, &inspectJSON); err != nil {
|
|
|
|
c.Fatalf("unable to unmarshal body for version 1.21: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
config, ok := inspectJSON["Config"]
|
|
|
|
if !ok {
|
|
|
|
c.Fatal("Unable to find 'Config'")
|
|
|
|
}
|
|
|
|
cfg := config.(map[string]interface{})
|
|
|
|
if _, ok := cfg["VolumeDriver"]; ok {
|
|
|
|
c.Fatal("Api version 1.21 expected to not include VolumeDriver in 'Config'")
|
|
|
|
}
|
|
|
|
|
|
|
|
config, ok = inspectJSON["HostConfig"]
|
|
|
|
if !ok {
|
|
|
|
c.Fatal("Unable to find 'HostConfig'")
|
|
|
|
}
|
|
|
|
cfg = config.(map[string]interface{})
|
|
|
|
if _, ok := cfg["VolumeDriver"]; !ok {
|
|
|
|
c.Fatal("Api version 1.21 expected to include VolumeDriver in 'HostConfig'")
|
|
|
|
}
|
|
|
|
}
|
2015-05-13 09:23:36 -04:00
|
|
|
|
|
|
|
func (s *DockerSuite) TestInspectApiImageResponse(c *check.C) {
|
|
|
|
dockerCmd(c, "tag", "busybox:latest", "busybox:mytag")
|
|
|
|
|
|
|
|
endpoint := "/images/busybox/json"
|
|
|
|
status, body, err := sockRequest("GET", endpoint, nil)
|
|
|
|
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusOK)
|
|
|
|
|
|
|
|
var imageJSON types.ImageInspect
|
|
|
|
if err = json.Unmarshal(body, &imageJSON); err != nil {
|
|
|
|
c.Fatalf("unable to unmarshal body for latest version: %v", err)
|
|
|
|
}
|
|
|
|
|
2015-10-22 06:34:12 -04:00
|
|
|
c.Assert(len(imageJSON.RepoTags), check.Equals, 2)
|
2015-05-13 09:23:36 -04:00
|
|
|
|
2015-10-22 06:34:12 -04:00
|
|
|
c.Assert(stringutils.InSlice(imageJSON.RepoTags, "busybox:latest"), check.Equals, true)
|
|
|
|
c.Assert(stringutils.InSlice(imageJSON.RepoTags, "busybox:mytag"), check.Equals, true)
|
2015-05-13 09:23:36 -04:00
|
|
|
}
|
2015-10-19 13:07:44 -04:00
|
|
|
|
|
|
|
// #17131, #17139, #17173
|
|
|
|
func (s *DockerSuite) TestInspectApiEmptyFieldsInConfigPre121(c *check.C) {
|
|
|
|
out, _ := dockerCmd(c, "run", "-d", "busybox", "true")
|
|
|
|
|
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
|
|
|
|
cases := []string{"1.19", "1.20"}
|
|
|
|
for _, version := range cases {
|
|
|
|
endpoint := fmt.Sprintf("/v%s/containers/%s/json", version, cleanedContainerID)
|
|
|
|
status, body, err := sockRequest("GET", endpoint, nil)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusOK)
|
|
|
|
|
|
|
|
var inspectJSON map[string]interface{}
|
|
|
|
if err = json.Unmarshal(body, &inspectJSON); err != nil {
|
|
|
|
c.Fatalf("unable to unmarshal body for version %s: %v", version, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
config, ok := inspectJSON["Config"]
|
|
|
|
if !ok {
|
|
|
|
c.Fatal("Unable to find 'Config'")
|
|
|
|
}
|
|
|
|
cfg := config.(map[string]interface{})
|
|
|
|
for _, f := range []string{"MacAddress", "NetworkDisabled", "ExposedPorts"} {
|
|
|
|
if _, ok := cfg[f]; !ok {
|
|
|
|
c.Fatalf("Api version %s expected to include %s in 'Config'", version, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|