2014-09-05 17:35:55 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"os/exec"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2014-09-19 04:43:07 -04:00
|
|
|
func TestInspectApiContainerResponse(t *testing.T) {
|
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 {
|
|
|
|
t.Fatalf("failed to create a container: %s, %v", out, err)
|
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
|
|
|
|
cleanedContainerID := stripTrailingCharacters(out)
|
|
|
|
|
|
|
|
// test on json marshal version
|
|
|
|
// and latest version
|
|
|
|
testVersions := []string{"v1.11", "latest"}
|
|
|
|
|
|
|
|
for _, testVersion := range testVersions {
|
|
|
|
endpoint := "/containers/" + cleanedContainerID + "/json"
|
|
|
|
if testVersion != "latest" {
|
|
|
|
endpoint = "/" + testVersion + endpoint
|
|
|
|
}
|
2014-12-01 12:16:49 -05:00
|
|
|
body, err := sockRequest("GET", endpoint, nil)
|
2014-09-05 17:35:55 -04:00
|
|
|
if err != nil {
|
2014-10-06 10:26:55 -04:00
|
|
|
t.Fatalf("sockRequest failed for %s version: %v", testVersion, err)
|
2014-09-05 17:35:55 -04:00
|
|
|
}
|
|
|
|
|
2014-10-06 10:26:55 -04:00
|
|
|
var inspectJSON map[string]interface{}
|
|
|
|
if err = json.Unmarshal(body, &inspectJSON); err != nil {
|
2014-09-05 17:35:55 -04:00
|
|
|
t.Fatalf("unable to unmarshal body for %s version: %v", testVersion, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
keys := []string{"State", "Created", "Path", "Args", "Config", "Image", "NetworkSettings", "ResolvConfPath", "HostnamePath", "HostsPath", "Name", "Driver", "ExecDriver", "MountLabel", "ProcessLabel", "Volumes", "VolumesRW"}
|
|
|
|
|
|
|
|
if testVersion == "v1.11" {
|
|
|
|
keys = append(keys, "ID")
|
|
|
|
} else {
|
|
|
|
keys = append(keys, "Id")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, key := range keys {
|
2014-10-06 10:26:55 -04:00
|
|
|
if _, ok := inspectJSON[key]; !ok {
|
2014-09-05 17:35:55 -04:00
|
|
|
t.Fatalf("%s does not exist in reponse for %s version", key, testVersion)
|
|
|
|
}
|
|
|
|
}
|
2014-09-15 19:35:07 -04:00
|
|
|
//Issue #6830: type not properly converted to JSON/back
|
2014-10-06 10:26:55 -04:00
|
|
|
if _, ok := inspectJSON["Path"].(bool); ok {
|
2014-09-15 19:35:07 -04:00
|
|
|
t.Fatalf("Path of `true` should not be converted to boolean `true` via JSON marshalling")
|
|
|
|
}
|
2014-09-05 17:35:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
deleteAllContainers()
|
|
|
|
|
|
|
|
logDone("container json - check keys in container json response")
|
|
|
|
}
|