mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a0d58b2248
``` 14:26:43 integration-cli/docker_cli_build_test.go:3430:15: S1007: should use raw string (`...`) with regexp.MustCompile to avoid having to escape twice (gosimple) 14:26:43 outRegexp := regexp.MustCompile("^(sha256:|)[a-z0-9]{64}\\n$") 14:26:43 ^ 14:26:43 integration-cli/docker_cli_by_digest_test.go:26:20: S1007: should use raw string (`...`) with regexp.MustCompile to avoid having to escape twice (gosimple) 14:26:43 pushDigestRegex = regexp.MustCompile("[\\S]+: digest: ([\\S]+) size: [0-9]+") 14:26:43 ^ 14:26:43 integration-cli/docker_cli_by_digest_test.go:27:20: S1007: should use raw string (`...`) with regexp.MustCompile to avoid having to escape twice (gosimple) 14:26:43 digestRegex = regexp.MustCompile("Digest: ([\\S]+)") ``` Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
142 lines
5 KiB
Go
142 lines
5 KiB
Go
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"compress/gzip"
|
|
"io/ioutil"
|
|
"os"
|
|
"os/exec"
|
|
"regexp"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/integration-cli/cli"
|
|
"gotest.tools/assert"
|
|
"gotest.tools/icmd"
|
|
)
|
|
|
|
func (s *DockerSuite) TestImportDisplay(c *testing.T) {
|
|
testRequires(c, DaemonIsLinux)
|
|
out, _ := dockerCmd(c, "run", "-d", "busybox", "true")
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
out, err := RunCommandPipelineWithOutput(
|
|
exec.Command(dockerBinary, "export", cleanedContainerID),
|
|
exec.Command(dockerBinary, "import", "-"),
|
|
)
|
|
assert.NilError(c, err)
|
|
|
|
assert.Assert(c, strings.Count(out, "\n") == 1, "display is expected 1 '\\n' but didn't")
|
|
|
|
image := strings.TrimSpace(out)
|
|
out, _ = dockerCmd(c, "run", "--rm", image, "true")
|
|
assert.Equal(c, out, "", "command output should've been nothing.")
|
|
}
|
|
|
|
func (s *DockerSuite) TestImportBadURL(c *testing.T) {
|
|
out, _, err := dockerCmdWithError("import", "http://nourl/bad")
|
|
assert.Assert(c, err != nil, "import was supposed to fail but didn't")
|
|
// Depending on your system you can get either of these errors
|
|
if !strings.Contains(out, "dial tcp") &&
|
|
!strings.Contains(out, "ApplyLayer exit status 1 stdout: stderr: archive/tar: invalid tar header") &&
|
|
!strings.Contains(out, "Error processing tar file") {
|
|
c.Fatalf("expected an error msg but didn't get one.\nErr: %v\nOut: %v", err, out)
|
|
}
|
|
}
|
|
|
|
func (s *DockerSuite) TestImportFile(c *testing.T) {
|
|
testRequires(c, DaemonIsLinux)
|
|
dockerCmd(c, "run", "--name", "test-import", "busybox", "true")
|
|
|
|
temporaryFile, err := ioutil.TempFile("", "exportImportTest")
|
|
assert.Assert(c, err == nil, "failed to create temporary file")
|
|
defer os.Remove(temporaryFile.Name())
|
|
|
|
icmd.RunCmd(icmd.Cmd{
|
|
Command: []string{dockerBinary, "export", "test-import"},
|
|
Stdout: bufio.NewWriter(temporaryFile),
|
|
}).Assert(c, icmd.Success)
|
|
|
|
out, _ := dockerCmd(c, "import", temporaryFile.Name())
|
|
assert.Assert(c, strings.Count(out, "\n") == 1, "display is expected 1 '\\n' but didn't")
|
|
image := strings.TrimSpace(out)
|
|
|
|
out, _ = dockerCmd(c, "run", "--rm", image, "true")
|
|
assert.Equal(c, out, "", "command output should've been nothing.")
|
|
}
|
|
|
|
func (s *DockerSuite) TestImportGzipped(c *testing.T) {
|
|
testRequires(c, DaemonIsLinux)
|
|
dockerCmd(c, "run", "--name", "test-import", "busybox", "true")
|
|
|
|
temporaryFile, err := ioutil.TempFile("", "exportImportTest")
|
|
assert.Assert(c, err == nil, "failed to create temporary file")
|
|
defer os.Remove(temporaryFile.Name())
|
|
|
|
w := gzip.NewWriter(temporaryFile)
|
|
icmd.RunCmd(icmd.Cmd{
|
|
Command: []string{dockerBinary, "export", "test-import"},
|
|
Stdout: w,
|
|
}).Assert(c, icmd.Success)
|
|
assert.Assert(c, w.Close() == nil, "failed to close gzip writer")
|
|
temporaryFile.Close()
|
|
out, _ := dockerCmd(c, "import", temporaryFile.Name())
|
|
assert.Assert(c, strings.Count(out, "\n") == 1, "display is expected 1 '\\n' but didn't")
|
|
image := strings.TrimSpace(out)
|
|
|
|
out, _ = dockerCmd(c, "run", "--rm", image, "true")
|
|
assert.Equal(c, out, "", "command output should've been nothing.")
|
|
}
|
|
|
|
func (s *DockerSuite) TestImportFileWithMessage(c *testing.T) {
|
|
testRequires(c, DaemonIsLinux)
|
|
dockerCmd(c, "run", "--name", "test-import", "busybox", "true")
|
|
|
|
temporaryFile, err := ioutil.TempFile("", "exportImportTest")
|
|
assert.Assert(c, err == nil, "failed to create temporary file")
|
|
defer os.Remove(temporaryFile.Name())
|
|
|
|
icmd.RunCmd(icmd.Cmd{
|
|
Command: []string{dockerBinary, "export", "test-import"},
|
|
Stdout: bufio.NewWriter(temporaryFile),
|
|
}).Assert(c, icmd.Success)
|
|
|
|
message := "Testing commit message"
|
|
out, _ := dockerCmd(c, "import", "-m", message, temporaryFile.Name())
|
|
assert.Assert(c, strings.Count(out, "\n") == 1, "display is expected 1 '\\n' but didn't")
|
|
image := strings.TrimSpace(out)
|
|
|
|
out, _ = dockerCmd(c, "history", image)
|
|
split := strings.Split(out, "\n")
|
|
|
|
assert.Equal(c, len(split), 3, "expected 3 lines from image history")
|
|
r := regexp.MustCompile(`[\s]{2,}`)
|
|
split = r.Split(split[1], -1)
|
|
|
|
assert.Equal(c, message, split[3], "didn't get expected value in commit message")
|
|
|
|
out, _ = dockerCmd(c, "run", "--rm", image, "true")
|
|
assert.Equal(c, out, "", "command output should've been nothing")
|
|
}
|
|
|
|
func (s *DockerSuite) TestImportFileNonExistentFile(c *testing.T) {
|
|
_, _, err := dockerCmdWithError("import", "example.com/myImage.tar")
|
|
assert.Assert(c, err != nil, "import non-existing file must failed")
|
|
}
|
|
|
|
func (s *DockerSuite) TestImportWithQuotedChanges(c *testing.T) {
|
|
testRequires(c, DaemonIsLinux)
|
|
cli.DockerCmd(c, "run", "--name", "test-import", "busybox", "true")
|
|
|
|
temporaryFile, err := ioutil.TempFile("", "exportImportTest")
|
|
assert.Assert(c, err == nil, "failed to create temporary file")
|
|
defer os.Remove(temporaryFile.Name())
|
|
|
|
cli.Docker(cli.Args("export", "test-import"), cli.WithStdout(bufio.NewWriter(temporaryFile))).Assert(c, icmd.Success)
|
|
|
|
result := cli.DockerCmd(c, "import", "-c", `ENTRYPOINT ["/bin/sh", "-c"]`, temporaryFile.Name())
|
|
image := strings.TrimSpace(result.Stdout())
|
|
|
|
result = cli.DockerCmd(c, "run", "--rm", image, "true")
|
|
result.Assert(c, icmd.Expected{Out: icmd.None})
|
|
}
|