mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ac24cabd9d
Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle)
23 lines
636 B
Go
23 lines
636 B
Go
package main
|
|
|
|
import (
|
|
"os/exec"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestInspectImage(t *testing.T) {
|
|
imageTest := "scratch"
|
|
imageTestID := "511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158"
|
|
imagesCmd := exec.Command(dockerBinary, "inspect", "--format='{{.Id}}'", imageTest)
|
|
out, exitCode, err := runCommandWithOutput(imagesCmd)
|
|
if exitCode != 0 || err != nil {
|
|
t.Fatalf("failed to inspect image: %s, %v", out, err)
|
|
}
|
|
|
|
if id := strings.TrimSuffix(out, "\n"); id != imageTestID {
|
|
t.Fatalf("Expected id: %s for image: %s but received id: %s", imageTestID, imageTest, id)
|
|
}
|
|
|
|
logDone("inspect - inspect an image")
|
|
}
|