mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
48d8757700
os.Exec("bash", "-c", dockerBinary) ends up making a call like bash -c c:\...\docker.exe on windows msys shell, which does not work. This test makes use of exec.Command.Stdin to pass image back to docker import. - Upside: fixes the test on windows - Downside: cat/tee compatibility is no longer tested in this test case Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
package main
|
|
|
|
import (
|
|
"os/exec"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
// export an image and try to import it into a new one
|
|
func TestExportContainerAndImportImage(t *testing.T) {
|
|
runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "true")
|
|
out, _, err := runCommandWithOutput(runCmd)
|
|
if err != nil {
|
|
t.Fatal("failed to create a container", out, err)
|
|
}
|
|
|
|
cleanedContainerID := stripTrailingCharacters(out)
|
|
|
|
inspectCmd := exec.Command(dockerBinary, "inspect", cleanedContainerID)
|
|
out, _, err = runCommandWithOutput(inspectCmd)
|
|
if err != nil {
|
|
t.Fatalf("output should've been a container id: %s %s ", cleanedContainerID, err)
|
|
}
|
|
|
|
exportCmd := exec.Command(dockerBinary, "export", cleanedContainerID)
|
|
if out, _, err = runCommandWithOutput(exportCmd); err != nil {
|
|
t.Fatalf("failed to export container: %s, %v", out, err)
|
|
}
|
|
|
|
importCmd := exec.Command(dockerBinary, "import", "-", "repo/testexp:v1")
|
|
importCmd.Stdin = strings.NewReader(out)
|
|
out, _, err = runCommandWithOutput(importCmd)
|
|
if err != nil {
|
|
t.Fatalf("failed to import image: %s, %v", out, err)
|
|
}
|
|
|
|
cleanedImageID := stripTrailingCharacters(out)
|
|
|
|
inspectCmd = exec.Command(dockerBinary, "inspect", cleanedImageID)
|
|
if out, _, err = runCommandWithOutput(inspectCmd); err != nil {
|
|
t.Fatalf("output should've been an image id: %s, %v", out, err)
|
|
}
|
|
|
|
deleteContainer(cleanedContainerID)
|
|
deleteImages("repo/testexp:v1")
|
|
|
|
logDone("export - export a container")
|
|
logDone("import - import an image")
|
|
}
|