2014-09-05 21:35:55 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2015-04-06 13:21:18 +00:00
|
|
|
"strings"
|
2019-09-09 21:06:12 +00:00
|
|
|
"testing"
|
2014-09-05 21:35:55 +00:00
|
|
|
|
2016-09-06 18:18:12 +00:00
|
|
|
"github.com/docker/docker/api/types"
|
2017-05-24 03:56:26 +00:00
|
|
|
"github.com/docker/docker/client"
|
2023-07-27 11:13:00 +00:00
|
|
|
"github.com/docker/docker/integration-cli/cli"
|
2023-07-14 18:02:38 +00:00
|
|
|
"github.com/docker/docker/testutil"
|
2020-02-07 13:39:24 +00:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
is "gotest.tools/v3/assert/cmp"
|
2015-04-18 16:46:47 +00:00
|
|
|
)
|
2015-02-20 06:56:02 +00:00
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerAPISuite) TestInspectAPIContainerResponse(c *testing.T) {
|
2023-07-27 11:13:00 +00:00
|
|
|
out := cli.DockerCmd(c, "run", "-d", "busybox", "true").Stdout()
|
2015-04-06 13:21:18 +00:00
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
2023-07-27 11:13:00 +00:00
|
|
|
|
2022-01-20 12:43:42 +00:00
|
|
|
keysBase := []string{
|
|
|
|
"Id", "State", "Created", "Path", "Args", "Config", "Image", "NetworkSettings",
|
|
|
|
"ResolvConfPath", "HostnamePath", "HostsPath", "LogPath", "Name", "Driver", "MountLabel", "ProcessLabel", "GraphDriver",
|
2024-01-22 00:03:07 +00:00
|
|
|
"Mounts",
|
2022-01-20 12:43:42 +00:00
|
|
|
}
|
2015-06-03 19:21:38 +00:00
|
|
|
|
2024-01-22 00:03:07 +00:00
|
|
|
cases := []struct {
|
2015-06-03 19:21:38 +00:00
|
|
|
version string
|
|
|
|
keys []string
|
2024-01-22 00:03:07 +00:00
|
|
|
}{
|
|
|
|
{version: "v1.24", keys: keysBase},
|
2016-01-27 03:40:56 +00:00
|
|
|
}
|
2015-06-03 19:21:38 +00:00
|
|
|
for _, cs := range cases {
|
2015-10-30 18:57:15 +00:00
|
|
|
body := getInspectBody(c, cs.version, cleanedContainerID)
|
2014-09-05 21:35:55 +00:00
|
|
|
|
2015-06-03 19:21:38 +00:00
|
|
|
var inspectJSON map[string]interface{}
|
2015-11-24 17:24:27 +00:00
|
|
|
err := json.Unmarshal(body, &inspectJSON)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err, "Unable to unmarshal body for version %s", cs.version)
|
2014-09-05 21:35:55 +00:00
|
|
|
|
2015-06-03 19:21:38 +00:00
|
|
|
for _, key := range cs.keys {
|
2015-11-24 17:24:27 +00:00
|
|
|
_, ok := inspectJSON[key]
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Check(c, ok, "%s does not exist in response for version %s", key, cs.version)
|
2015-06-03 19:21:38 +00:00
|
|
|
}
|
2014-09-05 21:35:55 +00:00
|
|
|
|
2022-09-23 20:22:32 +00:00
|
|
|
// Issue #6830: type not properly converted to JSON/back
|
2015-11-24 17:24:27 +00:00
|
|
|
_, ok := inspectJSON["Path"].(bool)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Assert(c, !ok, "Path of `true` should not be converted to boolean `true` via JSON marshalling")
|
2014-09-05 21:35:55 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-24 17:57:39 +00:00
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerAPISuite) TestInspectAPIContainerVolumeDriver(c *testing.T) {
|
2023-07-27 11:13:00 +00:00
|
|
|
out := cli.DockerCmd(c, "run", "-d", "--volume-driver", "local", "busybox", "true").Stdout()
|
2015-08-24 17:57:39 +00:00
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
|
2016-10-31 17:15:43 +00:00
|
|
|
body := getInspectBody(c, "v1.25", cleanedContainerID)
|
2015-08-24 17:57:39 +00:00
|
|
|
|
|
|
|
var inspectJSON map[string]interface{}
|
2015-11-24 17:24:27 +00:00
|
|
|
err := json.Unmarshal(body, &inspectJSON)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err, "Unable to unmarshal body for version 1.25")
|
2015-08-24 17:57:39 +00:00
|
|
|
|
|
|
|
config, ok := inspectJSON["Config"]
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Assert(c, ok, "Unable to find 'Config'")
|
2015-08-24 17:57:39 +00:00
|
|
|
cfg := config.(map[string]interface{})
|
2015-11-24 17:24:27 +00:00
|
|
|
_, ok = cfg["VolumeDriver"]
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Assert(c, !ok, "API version 1.25 expected to not include VolumeDriver in 'Config'")
|
2015-08-24 17:57:39 +00:00
|
|
|
|
|
|
|
config, ok = inspectJSON["HostConfig"]
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Assert(c, ok, "Unable to find 'HostConfig'")
|
2015-08-24 17:57:39 +00:00
|
|
|
cfg = config.(map[string]interface{})
|
2015-11-24 17:24:27 +00:00
|
|
|
_, ok = cfg["VolumeDriver"]
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Assert(c, ok, "API version 1.25 expected to include VolumeDriver in 'HostConfig'")
|
2015-08-24 17:57:39 +00:00
|
|
|
}
|
2015-05-13 13:23:36 +00:00
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerAPISuite) TestInspectAPIImageResponse(c *testing.T) {
|
2023-07-27 11:13:00 +00:00
|
|
|
cli.DockerCmd(c, "tag", "busybox:latest", "busybox:mytag")
|
2023-04-03 11:00:29 +00:00
|
|
|
apiClient, err := client.NewClientWithOpts(client.FromEnv)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err)
|
2023-04-03 11:00:29 +00:00
|
|
|
defer apiClient.Close()
|
2015-05-13 13:23:36 +00:00
|
|
|
|
2023-07-14 18:02:38 +00:00
|
|
|
imageJSON, _, err := apiClient.ImageInspectWithRaw(testutil.GetContext(c), "busybox")
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err)
|
2015-05-13 13:23:36 +00:00
|
|
|
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Check(c, len(imageJSON.RepoTags) == 2)
|
2018-03-13 19:28:34 +00:00
|
|
|
assert.Check(c, is.Contains(imageJSON.RepoTags, "busybox:latest"))
|
|
|
|
assert.Check(c, is.Contains(imageJSON.RepoTags, "busybox:mytag"))
|
2015-05-13 13:23:36 +00:00
|
|
|
}
|
2015-10-19 17:07:44 +00:00
|
|
|
|
2024-01-21 19:32:02 +00:00
|
|
|
// Inspect for API v1.21 and up; see
|
|
|
|
//
|
|
|
|
// - https://github.com/moby/moby/issues/17131
|
|
|
|
// - https://github.com/moby/moby/issues/17139
|
|
|
|
// - https://github.com/moby/moby/issues/17173
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerAPISuite) TestInspectAPIBridgeNetworkSettings121(c *testing.T) {
|
2016-01-27 03:40:56 +00:00
|
|
|
// Windows doesn't have any bridge network settings
|
2016-01-08 21:49:43 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2023-07-27 11:13:00 +00:00
|
|
|
out := cli.DockerCmd(c, "run", "-d", "busybox", "top").Stdout()
|
2015-11-03 17:12:19 +00:00
|
|
|
containerID := strings.TrimSpace(out)
|
2023-07-27 11:13:00 +00:00
|
|
|
cli.WaitRun(c, containerID)
|
2015-10-30 18:57:15 +00:00
|
|
|
|
2024-01-21 19:32:02 +00:00
|
|
|
body := getInspectBody(c, "", containerID)
|
2015-10-30 18:57:15 +00:00
|
|
|
|
|
|
|
var inspectJSON types.ContainerJSON
|
|
|
|
err := json.Unmarshal(body, &inspectJSON)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err)
|
2015-10-30 18:57:15 +00:00
|
|
|
|
|
|
|
settings := inspectJSON.NetworkSettings
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Assert(c, len(settings.IPAddress) != 0)
|
|
|
|
assert.Assert(c, settings.Networks["bridge"] != nil)
|
|
|
|
assert.Equal(c, settings.IPAddress, settings.Networks["bridge"].IPAddress)
|
2015-10-30 18:57:15 +00:00
|
|
|
}
|