Browse Source

add docker import test with a tag. Fixes #7714

Signed-off-by: Lei Jitang <leijitang@huawei.com>
Lei Jitang 11 years ago
parent
commit
7e72ed70f9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      integration-cli/docker_cli_export_import_test.go

+ 2 - 2
integration-cli/docker_cli_export_import_test.go

@@ -29,7 +29,7 @@ func TestExportContainerAndImportImage(t *testing.T) {
 	out, _, err = runCommandWithOutput(exportCmd)
 	out, _, err = runCommandWithOutput(exportCmd)
 	errorOut(err, t, fmt.Sprintf("failed to export container: %v %v", out, err))
 	errorOut(err, t, fmt.Sprintf("failed to export container: %v %v", out, err))
 
 
-	importCmdFinal := `cat /tmp/testexp.tar | docker import - testexp`
+	importCmdFinal := `cat /tmp/testexp.tar | docker import - repo/testexp:v1`
 	importCmd := exec.Command("bash", "-c", importCmdFinal)
 	importCmd := exec.Command("bash", "-c", importCmdFinal)
 	out, _, err = runCommandWithOutput(importCmd)
 	out, _, err = runCommandWithOutput(importCmd)
 	errorOut(err, t, fmt.Sprintf("failed to import image: %v %v", out, err))
 	errorOut(err, t, fmt.Sprintf("failed to import image: %v %v", out, err))
@@ -41,7 +41,7 @@ func TestExportContainerAndImportImage(t *testing.T) {
 	errorOut(err, t, fmt.Sprintf("output should've been an image id: %v %v", out, err))
 	errorOut(err, t, fmt.Sprintf("output should've been an image id: %v %v", out, err))
 
 
 	deleteContainer(cleanedContainerID)
 	deleteContainer(cleanedContainerID)
-	deleteImages("testexp")
+	deleteImages("repo/testexp:v1")
 
 
 	os.Remove("/tmp/testexp.tar")
 	os.Remove("/tmp/testexp.tar")