2014-02-25 16:17:48 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
2014-09-06 11:49:40 +00:00
|
|
|
"path/filepath"
|
2014-11-11 09:18:22 +00:00
|
|
|
"strings"
|
2019-09-09 21:06:12 +00:00
|
|
|
"testing"
|
2015-04-18 16:46:47 +00:00
|
|
|
|
2017-03-23 17:35:22 +00:00
|
|
|
"github.com/docker/docker/integration-cli/cli/build"
|
2020-02-07 13:39:24 +00:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
"gotest.tools/v3/icmd"
|
2014-02-25 16:17:48 +00:00
|
|
|
)
|
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
type DockerCLISaveLoadSuite struct {
|
|
|
|
ds *DockerSuite
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerCLISaveLoadSuite) TearDownTest(c *testing.T) {
|
|
|
|
s.ds.TearDownTest(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *DockerCLISaveLoadSuite) OnTimeout(c *testing.T) {
|
|
|
|
s.ds.OnTimeout(c)
|
|
|
|
}
|
|
|
|
|
2014-12-08 20:40:27 +00:00
|
|
|
// save a repo using gz compression and try to load it using stdout
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestSaveXzAndLoadRepoStdout(c *testing.T) {
|
2015-08-28 17:36:42 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-05-16 14:59:53 +00:00
|
|
|
name := "test-save-xz-and-load-repo-stdout"
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "run", "--name", name, "busybox", "true")
|
2014-12-08 20:40:27 +00:00
|
|
|
|
|
|
|
repoName := "foobar-save-load-test-xz-gz"
|
2015-07-21 18:01:24 +00:00
|
|
|
out, _ := dockerCmd(c, "commit", name, repoName)
|
2014-12-08 20:40:27 +00:00
|
|
|
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "inspect", repoName)
|
2014-12-08 20:40:27 +00:00
|
|
|
|
2017-08-22 21:07:52 +00:00
|
|
|
repoTarball, err := RunCommandPipelineWithOutput(
|
2015-02-14 22:25:13 +00:00
|
|
|
exec.Command(dockerBinary, "save", repoName),
|
|
|
|
exec.Command("xz", "-c"),
|
|
|
|
exec.Command("gzip", "-c"))
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err, "failed to save repo: %v %v", out, err)
|
2014-12-08 20:40:27 +00:00
|
|
|
deleteImages(repoName)
|
|
|
|
|
2017-01-16 15:39:12 +00:00
|
|
|
icmd.RunCmd(icmd.Cmd{
|
|
|
|
Command: []string{dockerBinary, "load"},
|
|
|
|
Stdin: strings.NewReader(repoTarball),
|
|
|
|
}).Assert(c, icmd.Expected{
|
|
|
|
ExitCode: 1,
|
|
|
|
})
|
2014-12-08 20:40:27 +00:00
|
|
|
|
2015-07-27 18:13:25 +00:00
|
|
|
after, _, err := dockerCmdWithError("inspect", repoName)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.ErrorContains(c, err, "", "the repo should not exist: %v", after)
|
2014-12-08 20:40:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// save a repo using xz+gz compression and try to load it using stdout
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestSaveXzGzAndLoadRepoStdout(c *testing.T) {
|
2015-08-28 17:36:42 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-05-16 14:59:53 +00:00
|
|
|
name := "test-save-xz-gz-and-load-repo-stdout"
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "run", "--name", name, "busybox", "true")
|
2014-12-08 20:40:27 +00:00
|
|
|
|
|
|
|
repoName := "foobar-save-load-test-xz-gz"
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "commit", name, repoName)
|
2014-12-08 20:40:27 +00:00
|
|
|
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "inspect", repoName)
|
2014-12-08 20:40:27 +00:00
|
|
|
|
2017-08-22 21:07:52 +00:00
|
|
|
out, err := RunCommandPipelineWithOutput(
|
2015-02-14 22:25:13 +00:00
|
|
|
exec.Command(dockerBinary, "save", repoName),
|
|
|
|
exec.Command("xz", "-c"),
|
|
|
|
exec.Command("gzip", "-c"))
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err, "failed to save repo: %v %v", out, err)
|
2014-12-08 20:40:27 +00:00
|
|
|
|
|
|
|
deleteImages(repoName)
|
|
|
|
|
2017-01-16 15:39:12 +00:00
|
|
|
icmd.RunCmd(icmd.Cmd{
|
|
|
|
Command: []string{dockerBinary, "load"},
|
|
|
|
Stdin: strings.NewReader(out),
|
|
|
|
}).Assert(c, icmd.Expected{
|
|
|
|
ExitCode: 1,
|
|
|
|
})
|
2014-12-08 20:40:27 +00:00
|
|
|
|
2015-07-27 18:13:25 +00:00
|
|
|
after, _, err := dockerCmdWithError("inspect", repoName)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.ErrorContains(c, err, "", "the repo should not exist: %v", after)
|
2014-12-08 20:40:27 +00:00
|
|
|
}
|
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestSaveSingleTag(c *testing.T) {
|
2015-08-28 17:36:42 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2014-07-07 18:58:27 +00:00
|
|
|
repoName := "foobar-save-single-tag-test"
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "tag", "busybox:latest", fmt.Sprintf("%v:latest", repoName))
|
2014-07-07 18:58:27 +00:00
|
|
|
|
2015-07-21 18:01:24 +00:00
|
|
|
out, _ := dockerCmd(c, "images", "-q", "--no-trunc", repoName)
|
2015-04-06 13:21:18 +00:00
|
|
|
cleanedImageID := strings.TrimSpace(out)
|
2014-07-07 18:58:27 +00:00
|
|
|
|
2017-08-22 21:07:52 +00:00
|
|
|
out, err := RunCommandPipelineWithOutput(
|
2015-02-14 22:25:13 +00:00
|
|
|
exec.Command(dockerBinary, "save", fmt.Sprintf("%v:latest", repoName)),
|
|
|
|
exec.Command("tar", "t"),
|
|
|
|
exec.Command("grep", "-E", fmt.Sprintf("(^repositories$|%v)", cleanedImageID)))
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err, "failed to save repo with image ID and 'repositories' file: %s, %v", out, err)
|
2014-07-07 18:58:27 +00:00
|
|
|
}
|
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestSaveImageId(c *testing.T) {
|
2015-08-28 17:36:42 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2014-07-07 18:58:27 +00:00
|
|
|
repoName := "foobar-save-image-id-test"
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "tag", "emptyfs:latest", fmt.Sprintf("%v:latest", repoName))
|
2014-07-07 18:58:27 +00:00
|
|
|
|
2015-07-21 18:01:24 +00:00
|
|
|
out, _ := dockerCmd(c, "images", "-q", "--no-trunc", repoName)
|
2015-11-18 22:20:54 +00:00
|
|
|
cleanedLongImageID := strings.TrimPrefix(strings.TrimSpace(out), "sha256:")
|
2014-07-07 18:58:27 +00:00
|
|
|
|
2015-07-21 18:01:24 +00:00
|
|
|
out, _ = dockerCmd(c, "images", "-q", repoName)
|
2015-04-06 13:21:18 +00:00
|
|
|
cleanedShortImageID := strings.TrimSpace(out)
|
2014-07-07 18:58:27 +00:00
|
|
|
|
2015-08-22 12:06:48 +00:00
|
|
|
// Make sure IDs are not empty
|
2019-09-09 21:08:22 +00:00
|
|
|
assert.Assert(c, cleanedLongImageID != "", "Id should not be empty.")
|
|
|
|
assert.Assert(c, cleanedShortImageID != "", "Id should not be empty.")
|
2015-08-22 12:06:48 +00:00
|
|
|
|
2015-02-14 22:25:13 +00:00
|
|
|
saveCmd := exec.Command(dockerBinary, "save", cleanedShortImageID)
|
|
|
|
tarCmd := exec.Command("tar", "t")
|
2015-07-21 18:01:24 +00:00
|
|
|
|
|
|
|
var err error
|
2015-02-14 22:25:13 +00:00
|
|
|
tarCmd.Stdin, err = saveCmd.StdoutPipe()
|
2019-09-11 10:57:29 +00:00
|
|
|
assert.Assert(c, err == nil, "cannot set stdout pipe for tar: %v", err)
|
2015-02-14 22:25:13 +00:00
|
|
|
grepCmd := exec.Command("grep", cleanedLongImageID)
|
|
|
|
grepCmd.Stdin, err = tarCmd.StdoutPipe()
|
2019-09-11 10:57:29 +00:00
|
|
|
assert.Assert(c, err == nil, "cannot set stdout pipe for grep: %v", err)
|
2014-07-07 18:58:27 +00:00
|
|
|
|
2019-09-11 10:57:29 +00:00
|
|
|
assert.Assert(c, tarCmd.Start() == nil, "tar failed with error: %v", err)
|
|
|
|
assert.Assert(c, saveCmd.Start() == nil, "docker save failed with error: %v", err)
|
2015-02-24 18:33:18 +00:00
|
|
|
defer func() {
|
|
|
|
saveCmd.Wait()
|
|
|
|
tarCmd.Wait()
|
|
|
|
dockerCmd(c, "rmi", repoName)
|
|
|
|
}()
|
2015-02-14 22:25:13 +00:00
|
|
|
|
|
|
|
out, _, err = runCommandWithOutput(grepCmd)
|
|
|
|
|
2019-09-11 10:57:29 +00:00
|
|
|
assert.Assert(c, err == nil, "failed to save repo with image ID: %s, %v", out, err)
|
2014-07-07 18:58:27 +00:00
|
|
|
}
|
|
|
|
|
2014-06-17 01:01:38 +00:00
|
|
|
// save a repo and try to load it using flags
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestSaveAndLoadRepoFlags(c *testing.T) {
|
2015-08-28 17:36:42 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-05-16 14:59:53 +00:00
|
|
|
name := "test-save-and-load-repo-flags"
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "run", "--name", name, "busybox", "true")
|
|
|
|
|
2014-06-17 01:01:38 +00:00
|
|
|
repoName := "foobar-save-load-test"
|
|
|
|
|
2015-02-14 22:25:13 +00:00
|
|
|
deleteImages(repoName)
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "commit", name, repoName)
|
2014-06-17 01:01:38 +00:00
|
|
|
|
2015-07-21 18:01:24 +00:00
|
|
|
before, _ := dockerCmd(c, "inspect", repoName)
|
2014-06-17 01:01:38 +00:00
|
|
|
|
2017-08-22 21:07:52 +00:00
|
|
|
out, err := RunCommandPipelineWithOutput(
|
2015-02-14 22:25:13 +00:00
|
|
|
exec.Command(dockerBinary, "save", repoName),
|
|
|
|
exec.Command(dockerBinary, "load"))
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err, "failed to save and load repo: %s, %v", out, err)
|
2014-06-17 01:01:38 +00:00
|
|
|
|
2015-07-21 18:01:24 +00:00
|
|
|
after, _ := dockerCmd(c, "inspect", repoName)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Equal(c, before, after, "inspect is not the same after a save / load")
|
2014-02-25 16:17:48 +00:00
|
|
|
}
|
2014-08-29 01:33:13 +00:00
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestSaveWithNoExistImage(c *testing.T) {
|
2016-03-04 10:05:34 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
|
|
|
|
imgName := "foobar-non-existing-image"
|
|
|
|
|
|
|
|
out, _, err := dockerCmdWithError("save", "-o", "test-img.tar", imgName)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.ErrorContains(c, err, "", "save image should fail for non-existing image")
|
|
|
|
assert.Assert(c, strings.Contains(out, fmt.Sprintf("No such image: %s", imgName)))
|
2016-03-04 10:05:34 +00:00
|
|
|
}
|
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestSaveMultipleNames(c *testing.T) {
|
2015-08-28 17:36:42 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2014-08-29 01:33:13 +00:00
|
|
|
repoName := "foobar-save-multi-name-test"
|
|
|
|
|
|
|
|
// Make one image
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "tag", "emptyfs:latest", fmt.Sprintf("%v-one:latest", repoName))
|
2014-11-17 16:05:49 +00:00
|
|
|
|
2014-08-29 01:33:13 +00:00
|
|
|
// Make two images
|
2015-07-21 18:01:24 +00:00
|
|
|
dockerCmd(c, "tag", "emptyfs:latest", fmt.Sprintf("%v-two:latest", repoName))
|
2014-08-29 01:33:13 +00:00
|
|
|
|
2017-08-22 21:07:52 +00:00
|
|
|
out, err := RunCommandPipelineWithOutput(
|
2015-02-14 22:25:13 +00:00
|
|
|
exec.Command(dockerBinary, "save", fmt.Sprintf("%v-one", repoName), fmt.Sprintf("%v-two:latest", repoName)),
|
|
|
|
exec.Command("tar", "xO", "repositories"),
|
|
|
|
exec.Command("grep", "-q", "-E", "(-one|-two)"),
|
|
|
|
)
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err, "failed to save multiple repos: %s, %v", out, err)
|
2014-08-29 01:33:13 +00:00
|
|
|
}
|
2014-09-06 11:49:40 +00:00
|
|
|
|
2015-11-24 01:20:44 +00:00
|
|
|
// Test loading a weird image where one of the layers is of zero size.
|
|
|
|
// The layer.tar file is actually zero bytes, no padding or anything else.
|
|
|
|
// See issue: 18170
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestLoadZeroSizeLayer(c *testing.T) {
|
2018-05-04 21:15:00 +00:00
|
|
|
// this will definitely not work if using remote daemon
|
|
|
|
// very weird test
|
2018-12-24 12:25:53 +00:00
|
|
|
testRequires(c, DaemonIsLinux, testEnv.IsLocalDaemon)
|
2015-11-24 01:20:44 +00:00
|
|
|
|
2018-04-16 08:48:58 +00:00
|
|
|
dockerCmd(c, "load", "-i", "testdata/emptyLayer.tar")
|
2015-11-24 01:20:44 +00:00
|
|
|
}
|
2016-03-21 20:52:36 +00:00
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestSaveLoadParents(c *testing.T) {
|
2016-03-21 20:52:36 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
|
|
|
|
makeImage := func(from string, addfile string) string {
|
|
|
|
var (
|
|
|
|
out string
|
|
|
|
)
|
|
|
|
out, _ = dockerCmd(c, "run", "-d", from, "touch", addfile)
|
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
|
|
|
|
out, _ = dockerCmd(c, "commit", cleanedContainerID)
|
|
|
|
imageID := strings.TrimSpace(out)
|
|
|
|
|
2016-04-07 04:57:32 +00:00
|
|
|
dockerCmd(c, "rm", "-f", cleanedContainerID)
|
2016-03-21 20:52:36 +00:00
|
|
|
return imageID
|
|
|
|
}
|
|
|
|
|
|
|
|
idFoo := makeImage("busybox", "foo")
|
|
|
|
idBar := makeImage(idFoo, "bar")
|
|
|
|
|
2021-08-24 10:10:50 +00:00
|
|
|
tmpDir, err := os.MkdirTemp("", "save-load-parents")
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err)
|
2016-03-21 20:52:36 +00:00
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
|
|
|
|
c.Log("tmpdir", tmpDir)
|
|
|
|
|
|
|
|
outfile := filepath.Join(tmpDir, "out.tar")
|
|
|
|
|
|
|
|
dockerCmd(c, "save", "-o", outfile, idBar, idFoo)
|
|
|
|
dockerCmd(c, "rmi", idBar)
|
|
|
|
dockerCmd(c, "load", "-i", outfile)
|
|
|
|
|
|
|
|
inspectOut := inspectField(c, idBar, "Parent")
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Equal(c, inspectOut, idFoo)
|
2016-03-21 20:52:36 +00:00
|
|
|
|
|
|
|
inspectOut = inspectField(c, idFoo, "Parent")
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.Equal(c, inspectOut, "")
|
2016-03-21 20:52:36 +00:00
|
|
|
}
|
2016-05-26 01:25:12 +00:00
|
|
|
|
2022-06-16 21:32:10 +00:00
|
|
|
func (s *DockerCLISaveLoadSuite) TestSaveLoadNoTag(c *testing.T) {
|
2016-05-26 01:25:12 +00:00
|
|
|
testRequires(c, DaemonIsLinux)
|
|
|
|
|
|
|
|
name := "saveloadnotag"
|
|
|
|
|
2017-03-23 17:35:22 +00:00
|
|
|
buildImageSuccessfully(c, name, build.WithDockerfile("FROM busybox\nENV foo=bar"))
|
2016-05-26 01:25:12 +00:00
|
|
|
id := inspectField(c, name, "Id")
|
|
|
|
|
|
|
|
// Test to make sure that save w/o name just shows imageID during load
|
2017-08-22 21:07:52 +00:00
|
|
|
out, err := RunCommandPipelineWithOutput(
|
2016-05-26 01:25:12 +00:00
|
|
|
exec.Command(dockerBinary, "save", id),
|
|
|
|
exec.Command(dockerBinary, "load"))
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err, "failed to save and load repo: %s, %v", out, err)
|
2016-05-26 01:25:12 +00:00
|
|
|
|
|
|
|
// Should not show 'name' but should show the image ID during the load
|
2019-09-09 21:07:46 +00:00
|
|
|
assert.Assert(c, !strings.Contains(out, "Loaded image: "))
|
2019-09-09 21:08:22 +00:00
|
|
|
assert.Assert(c, strings.Contains(out, "Loaded image ID:"))
|
|
|
|
assert.Assert(c, strings.Contains(out, id))
|
2016-05-26 01:25:12 +00:00
|
|
|
// Test to make sure that save by name shows that name during load
|
2017-08-22 21:07:52 +00:00
|
|
|
out, err = RunCommandPipelineWithOutput(
|
2016-05-26 01:25:12 +00:00
|
|
|
exec.Command(dockerBinary, "save", name),
|
|
|
|
exec.Command(dockerBinary, "load"))
|
2019-04-04 13:23:19 +00:00
|
|
|
assert.NilError(c, err, "failed to save and load repo: %s, %v", out, err)
|
|
|
|
|
2019-09-09 21:08:22 +00:00
|
|
|
assert.Assert(c, strings.Contains(out, "Loaded image: "+name+":latest"))
|
2019-09-09 21:07:46 +00:00
|
|
|
assert.Assert(c, !strings.Contains(out, "Loaded image ID:"))
|
2016-05-26 01:25:12 +00:00
|
|
|
}
|