mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Addresses: #14603 integration-cli/docker_cli_daemon_experimental_test.go (hqhq) integration-cli/docker_cli_daemon_test.go (hqhq) integration-cli/docker_cli_diff_test.go (hqhq) integration-cli/docker_cli_events_test.go (hqhq) integration-cli/docker_cli_events_unix_test.go (hqhq) integration-cli/docker_cli_exec_test.go (hqhq) integration-cli/docker_cli_exec_unix_test.go (hqhq) integration-cli/docker_cli_experimental_test.go (hqhq) integration-cli/docker_cli_export_import_test.go (hqhq) integration-cli/docker_cli_help_test.go (hqhq) integration-cli/docker_cli_history_test.go (hqhq) integration-cli/docker_cli_images_test.go (hqhq) integration-cli/docker_cli_import_test.go (hqhq) integration-cli/docker_cli_info_test.go (hqhq) integration-cli/docker_cli_inspect_test.go (hqhq) integration-cli/docker_cli_kill_test.go (hqhq) Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
		
			
				
	
	
		
			56 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"os"
 | 
						|
	"os/exec"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/go-check/check"
 | 
						|
)
 | 
						|
 | 
						|
// export an image and try to import it into a new one
 | 
						|
func (s *DockerSuite) TestExportContainerAndImportImage(c *check.C) {
 | 
						|
	containerID := "testexportcontainerandimportimage"
 | 
						|
 | 
						|
	dockerCmd(c, "run", "--name", containerID, "busybox", "true")
 | 
						|
 | 
						|
	out, _ := dockerCmd(c, "export", containerID)
 | 
						|
 | 
						|
	importCmd := exec.Command(dockerBinary, "import", "-", "repo/testexp:v1")
 | 
						|
	importCmd.Stdin = strings.NewReader(out)
 | 
						|
	out, _, err := runCommandWithOutput(importCmd)
 | 
						|
	if err != nil {
 | 
						|
		c.Fatalf("failed to import image: %s, %v", out, err)
 | 
						|
	}
 | 
						|
 | 
						|
	cleanedImageID := strings.TrimSpace(out)
 | 
						|
	if cleanedImageID == "" {
 | 
						|
		c.Fatalf("output should have been an image id, got: %s", out)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Used to test output flag in the export command
 | 
						|
func (s *DockerSuite) TestExportContainerWithOutputAndImportImage(c *check.C) {
 | 
						|
	containerID := "testexportcontainerwithoutputandimportimage"
 | 
						|
 | 
						|
	dockerCmd(c, "run", "--name", containerID, "busybox", "true")
 | 
						|
	dockerCmd(c, "export", "--output=testexp.tar", containerID)
 | 
						|
	defer os.Remove("testexp.tar")
 | 
						|
 | 
						|
	out, _, err := runCommandWithOutput(exec.Command("cat", "testexp.tar"))
 | 
						|
	if err != nil {
 | 
						|
		c.Fatal(out, err)
 | 
						|
	}
 | 
						|
 | 
						|
	importCmd := exec.Command(dockerBinary, "import", "-", "repo/testexp:v1")
 | 
						|
	importCmd.Stdin = strings.NewReader(out)
 | 
						|
	out, _, err = runCommandWithOutput(importCmd)
 | 
						|
	if err != nil {
 | 
						|
		c.Fatalf("failed to import image: %s, %v", out, err)
 | 
						|
	}
 | 
						|
 | 
						|
	cleanedImageID := strings.TrimSpace(out)
 | 
						|
	if cleanedImageID == "" {
 | 
						|
		c.Fatalf("output should have been an image id, got: %s", out)
 | 
						|
	}
 | 
						|
}
 |