123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- package main
- import (
- "os/exec"
- "strings"
- "github.com/go-check/check"
- )
- func (s *DockerSuite) TestCommitAfterContainerIsDone(c *check.C) {
- runCmd := exec.Command(dockerBinary, "run", "-i", "-a", "stdin", "busybox", "echo", "foo")
- out, _, _, err := runCommandWithStdoutStderr(runCmd)
- if err != nil {
- c.Fatalf("failed to run container: %s, %v", out, err)
- }
- cleanedContainerID := strings.TrimSpace(out)
- waitCmd := exec.Command(dockerBinary, "wait", cleanedContainerID)
- if _, _, err = runCommandWithOutput(waitCmd); err != nil {
- c.Fatalf("error thrown while waiting for container: %s, %v", out, err)
- }
- commitCmd := exec.Command(dockerBinary, "commit", cleanedContainerID)
- out, _, err = runCommandWithOutput(commitCmd)
- if err != nil {
- c.Fatalf("failed to commit container to image: %s, %v", out, err)
- }
- cleanedImageID := strings.TrimSpace(out)
- inspectCmd := exec.Command(dockerBinary, "inspect", cleanedImageID)
- if out, _, err = runCommandWithOutput(inspectCmd); err != nil {
- c.Fatalf("failed to inspect image: %s, %v", out, err)
- }
- }
- func (s *DockerSuite) TestCommitWithoutPause(c *check.C) {
- runCmd := exec.Command(dockerBinary, "run", "-i", "-a", "stdin", "busybox", "echo", "foo")
- out, _, _, err := runCommandWithStdoutStderr(runCmd)
- if err != nil {
- c.Fatalf("failed to run container: %s, %v", out, err)
- }
- cleanedContainerID := strings.TrimSpace(out)
- waitCmd := exec.Command(dockerBinary, "wait", cleanedContainerID)
- if _, _, err = runCommandWithOutput(waitCmd); err != nil {
- c.Fatalf("error thrown while waiting for container: %s, %v", out, err)
- }
- commitCmd := exec.Command(dockerBinary, "commit", "-p=false", cleanedContainerID)
- out, _, err = runCommandWithOutput(commitCmd)
- if err != nil {
- c.Fatalf("failed to commit container to image: %s, %v", out, err)
- }
- cleanedImageID := strings.TrimSpace(out)
- inspectCmd := exec.Command(dockerBinary, "inspect", cleanedImageID)
- if out, _, err = runCommandWithOutput(inspectCmd); err != nil {
- c.Fatalf("failed to inspect image: %s, %v", out, err)
- }
- }
- //test commit a paused container should not unpause it after commit
- func (s *DockerSuite) TestCommitPausedContainer(c *check.C) {
- defer unpauseAllContainers()
- cmd := exec.Command(dockerBinary, "run", "-i", "-d", "busybox")
- out, _, _, err := runCommandWithStdoutStderr(cmd)
- if err != nil {
- c.Fatalf("failed to run container: %v, output: %q", err, out)
- }
- cleanedContainerID := strings.TrimSpace(out)
- cmd = exec.Command(dockerBinary, "pause", cleanedContainerID)
- out, _, _, err = runCommandWithStdoutStderr(cmd)
- if err != nil {
- c.Fatalf("failed to pause container: %v, output: %q", err, out)
- }
- commitCmd := exec.Command(dockerBinary, "commit", cleanedContainerID)
- out, _, err = runCommandWithOutput(commitCmd)
- if err != nil {
- c.Fatalf("failed to commit container to image: %s, %v", out, err)
- }
- cmd = exec.Command(dockerBinary, "inspect", "-f", "{{.State.Paused}}", cleanedContainerID)
- out, _, _, err = runCommandWithStdoutStderr(cmd)
- if err != nil {
- c.Fatalf("failed to inspect container: %v, output: %q", err, out)
- }
- if !strings.Contains(out, "true") {
- c.Fatalf("commit should not unpause a paused container")
- }
- }
- func (s *DockerSuite) TestCommitNewFile(c *check.C) {
- cmd := exec.Command(dockerBinary, "run", "--name", "commiter", "busybox", "/bin/sh", "-c", "echo koye > /foo")
- if _, err := runCommand(cmd); err != nil {
- c.Fatal(err)
- }
- cmd = exec.Command(dockerBinary, "commit", "commiter")
- imageID, _, err := runCommandWithOutput(cmd)
- if err != nil {
- c.Fatal(err)
- }
- imageID = strings.Trim(imageID, "\r\n")
- cmd = exec.Command(dockerBinary, "run", imageID, "cat", "/foo")
- out, _, err := runCommandWithOutput(cmd)
- if err != nil {
- c.Fatal(err, out)
- }
- if actual := strings.Trim(out, "\r\n"); actual != "koye" {
- c.Fatalf("expected output koye received %q", actual)
- }
- }
- func (s *DockerSuite) TestCommitHardlink(c *check.C) {
- cmd := exec.Command(dockerBinary, "run", "-t", "--name", "hardlinks", "busybox", "sh", "-c", "touch file1 && ln file1 file2 && ls -di file1 file2")
- firstOuput, _, err := runCommandWithOutput(cmd)
- if err != nil {
- c.Fatal(err)
- }
- chunks := strings.Split(strings.TrimSpace(firstOuput), " ")
- inode := chunks[0]
- found := false
- for _, chunk := range chunks[1:] {
- if chunk == inode {
- found = true
- break
- }
- }
- if !found {
- c.Fatalf("Failed to create hardlink in a container. Expected to find %q in %q", inode, chunks[1:])
- }
- cmd = exec.Command(dockerBinary, "commit", "hardlinks", "hardlinks")
- imageID, _, err := runCommandWithOutput(cmd)
- if err != nil {
- c.Fatal(imageID, err)
- }
- imageID = strings.Trim(imageID, "\r\n")
- cmd = exec.Command(dockerBinary, "run", "-t", "hardlinks", "ls", "-di", "file1", "file2")
- secondOuput, _, err := runCommandWithOutput(cmd)
- if err != nil {
- c.Fatal(err)
- }
- chunks = strings.Split(strings.TrimSpace(secondOuput), " ")
- inode = chunks[0]
- found = false
- for _, chunk := range chunks[1:] {
- if chunk == inode {
- found = true
- break
- }
- }
- if !found {
- c.Fatalf("Failed to create hardlink in a container. Expected to find %q in %q", inode, chunks[1:])
- }
- }
- func (s *DockerSuite) TestCommitTTY(c *check.C) {
- cmd := exec.Command(dockerBinary, "run", "-t", "--name", "tty", "busybox", "/bin/ls")
- if _, err := runCommand(cmd); err != nil {
- c.Fatal(err)
- }
- cmd = exec.Command(dockerBinary, "commit", "tty", "ttytest")
- imageID, _, err := runCommandWithOutput(cmd)
- if err != nil {
- c.Fatal(err)
- }
- imageID = strings.Trim(imageID, "\r\n")
- cmd = exec.Command(dockerBinary, "run", "ttytest", "/bin/ls")
- if _, err := runCommand(cmd); err != nil {
- c.Fatal(err)
- }
- }
- func (s *DockerSuite) TestCommitWithHostBindMount(c *check.C) {
- cmd := exec.Command(dockerBinary, "run", "--name", "bind-commit", "-v", "/dev/null:/winning", "busybox", "true")
- if _, err := runCommand(cmd); err != nil {
- c.Fatal(err)
- }
- cmd = exec.Command(dockerBinary, "commit", "bind-commit", "bindtest")
- imageID, _, err := runCommandWithOutput(cmd)
- if err != nil {
- c.Fatal(imageID, err)
- }
- imageID = strings.Trim(imageID, "\r\n")
- cmd = exec.Command(dockerBinary, "run", "bindtest", "true")
- if _, err := runCommand(cmd); err != nil {
- c.Fatal(err)
- }
- }
- func (s *DockerSuite) TestCommitChange(c *check.C) {
- cmd := exec.Command(dockerBinary, "run", "--name", "test", "busybox", "true")
- if _, err := runCommand(cmd); err != nil {
- c.Fatal(err)
- }
- cmd = exec.Command(dockerBinary, "commit",
- "--change", "EXPOSE 8080",
- "--change", "ENV DEBUG true",
- "--change", "ENV test 1",
- "--change", "ENV PATH /foo",
- "test", "test-commit")
- imageId, _, err := runCommandWithOutput(cmd)
- if err != nil {
- c.Fatal(imageId, err)
- }
- imageId = strings.Trim(imageId, "\r\n")
- expected := map[string]string{
- "Config.ExposedPorts": "map[8080/tcp:{}]",
- "Config.Env": "[DEBUG=true test=1 PATH=/foo]",
- }
- for conf, value := range expected {
- res, err := inspectField(imageId, conf)
- if err != nil {
- c.Errorf("failed to get value %s, error: %s", conf, err)
- }
- if res != value {
- c.Errorf("%s('%s'), expected %s", conf, res, value)
- }
- }
- }
- // TODO: commit --run is deprecated, remove this once --run is removed
- func (s *DockerSuite) TestCommitMergeConfigRun(c *check.C) {
- name := "commit-test"
- out, _ := dockerCmd(c, "run", "-d", "-e=FOO=bar", "busybox", "/bin/sh", "-c", "echo testing > /tmp/foo")
- id := strings.TrimSpace(out)
- dockerCmd(c, "commit", `--run={"Cmd": ["cat", "/tmp/foo"]}`, id, "commit-test")
- out, _ = dockerCmd(c, "run", "--name", name, "commit-test")
- if strings.TrimSpace(out) != "testing" {
- c.Fatal("run config in commited container was not merged")
- }
- type cfg struct {
- Env []string
- Cmd []string
- }
- config1 := cfg{}
- if err := inspectFieldAndMarshall(id, "Config", &config1); err != nil {
- c.Fatal(err)
- }
- config2 := cfg{}
- if err := inspectFieldAndMarshall(name, "Config", &config2); err != nil {
- c.Fatal(err)
- }
- // Env has at least PATH loaded as well here, so let's just grab the FOO one
- var env1, env2 string
- for _, e := range config1.Env {
- if strings.HasPrefix(e, "FOO") {
- env1 = e
- break
- }
- }
- for _, e := range config2.Env {
- if strings.HasPrefix(e, "FOO") {
- env2 = e
- break
- }
- }
- if len(config1.Env) != len(config2.Env) || env1 != env2 && env2 != "" {
- c.Fatalf("expected envs to match: %v - %v", config1.Env, config2.Env)
- }
- }
|