123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418 |
- package main
- import (
- "fmt"
- "os"
- "os/exec"
- "path/filepath"
- "strings"
- "testing"
- "time"
- )
- func TestBuildCacheADD(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildCacheADD", "1")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcacheadd1", ".")
- buildCmd.Dir = buildDirectory
- exitCode, err := runCommand(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v", err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- buildDirectory = filepath.Join(workingDirectory, "build_tests", "TestBuildCacheADD", "2")
- buildCmd = exec.Command(dockerBinary, "build", "-t", "testcacheadd2", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- if strings.Contains(out, "Using cache") {
- t.Fatal("2nd build used cache on ADD, it shouldn't")
- }
- deleteImages("testcacheadd1")
- deleteImages("testcacheadd2")
- logDone("build - build two images with ADD")
- }
- func TestBuildSixtySteps(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildSixtySteps")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "foobuildsixtysteps", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("foobuildsixtysteps")
- logDone("build - build an image with sixty build steps")
- }
- func TestAddSingleFileToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd", "SingleFileToRoot")
- f, err := os.OpenFile(filepath.Join(buildDirectory, "test_file"), os.O_CREATE, 0644)
- if err != nil {
- t.Fatal(err)
- }
- f.Close()
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add single file to root")
- }
- // Issue #3960: "ADD src ." hangs
- func TestAddSingleFileToWorkdir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd", "SingleFileToWorkdir")
- f, err := os.OpenFile(filepath.Join(buildDirectory, "test_file"), os.O_CREATE, 0644)
- if err != nil {
- t.Fatal(err)
- }
- f.Close()
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", ".")
- buildCmd.Dir = buildDirectory
- done := make(chan error)
- go func() {
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- done <- fmt.Errorf("build failed to complete: %s %v", out, err)
- return
- }
- done <- nil
- }()
- select {
- case <-time.After(5 * time.Second):
- if err := buildCmd.Process.Kill(); err != nil {
- fmt.Printf("could not kill build (pid=%d): %v\n", buildCmd.Process.Pid, err)
- }
- t.Fatal("build timed out")
- case err := <-done:
- if err != nil {
- t.Fatal(err)
- }
- }
- deleteImages("testaddimg")
- logDone("build - add single file to workdir")
- }
- func TestAddSingleFileToExistDir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "SingleFileToExistDir")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add single file to existing dir")
- }
- func TestAddSingleFileToNonExistDir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "SingleFileToNonExistDir")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add single file to non-existing dir")
- }
- func TestAddDirContentToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "DirContentToRoot")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add directory contents to root")
- }
- func TestAddDirContentToExistDir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "DirContentToExistDir")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add directory contents to existing dir")
- }
- func TestAddWholeDirToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd", "WholeDirToRoot")
- test_dir := filepath.Join(buildDirectory, "test_dir")
- if err := os.MkdirAll(test_dir, 0755); err != nil {
- t.Fatal(err)
- }
- f, err := os.OpenFile(filepath.Join(test_dir, "test_file"), os.O_CREATE, 0644)
- if err != nil {
- t.Fatal(err)
- }
- f.Close()
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add whole directory to root")
- }
- func TestAddEtcToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "EtcToRoot")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add etc directory to root")
- }
- // Issue #5270 - ensure we throw a better error than "unexpected EOF"
- // when we can't access files in the context.
- func TestBuildWithInaccessibleFilesInContext(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildWithInaccessibleFilesInContext")
- {
- // This is used to ensure we detect inaccessible files early during build in the cli client
- pathToInaccessibleFileBuildDirectory := filepath.Join(buildDirectory, "inaccessiblefile")
- pathToFileWithoutReadAccess := filepath.Join(pathToInaccessibleFileBuildDirectory, "fileWithoutReadAccess")
- err := os.Chown(pathToFileWithoutReadAccess, 0, 0)
- errorOut(err, t, fmt.Sprintf("failed to chown file to root: %s", err))
- err = os.Chmod(pathToFileWithoutReadAccess, 0700)
- errorOut(err, t, fmt.Sprintf("failed to chmod file to 700: %s", err))
- buildCommandStatement := fmt.Sprintf("%s build -t inaccessiblefiles .", dockerBinary)
- buildCmd := exec.Command("su", "unprivilegeduser", "-c", buildCommandStatement)
- buildCmd.Dir = pathToInaccessibleFileBuildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err == nil || exitCode == 0 {
- t.Fatalf("build should have failed: %s %s", err, out)
- }
- // check if we've detected the failure before we started building
- if !strings.Contains(out, "no permission to read from ") {
- t.Fatalf("output should've contained the string: no permission to read from but contained: %s", out)
- }
- if !strings.Contains(out, "Error checking context is accessible") {
- t.Fatalf("output should've contained the string: Error checking context is accessible")
- }
- }
- {
- // This is used to ensure we detect inaccessible directories early during build in the cli client
- pathToInaccessibleDirectoryBuildDirectory := filepath.Join(buildDirectory, "inaccessibledirectory")
- pathToDirectoryWithoutReadAccess := filepath.Join(pathToInaccessibleDirectoryBuildDirectory, "directoryWeCantStat")
- pathToFileInDirectoryWithoutReadAccess := filepath.Join(pathToDirectoryWithoutReadAccess, "bar")
- err := os.Chown(pathToDirectoryWithoutReadAccess, 0, 0)
- errorOut(err, t, fmt.Sprintf("failed to chown directory to root: %s", err))
- err = os.Chmod(pathToDirectoryWithoutReadAccess, 0444)
- errorOut(err, t, fmt.Sprintf("failed to chmod directory to 755: %s", err))
- err = os.Chmod(pathToFileInDirectoryWithoutReadAccess, 0700)
- errorOut(err, t, fmt.Sprintf("failed to chmod file to 444: %s", err))
- buildCommandStatement := fmt.Sprintf("%s build -t inaccessiblefiles .", dockerBinary)
- buildCmd := exec.Command("su", "unprivilegeduser", "-c", buildCommandStatement)
- buildCmd.Dir = pathToInaccessibleDirectoryBuildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err == nil || exitCode == 0 {
- t.Fatalf("build should have failed: %s %s", err, out)
- }
- // check if we've detected the failure before we started building
- if !strings.Contains(out, "can't stat") {
- t.Fatalf("output should've contained the string: can't access %s", out)
- }
- if !strings.Contains(out, "Error checking context is accessible") {
- t.Fatalf("output should've contained the string: Error checking context is accessible")
- }
- }
- {
- // This is used to ensure we don't follow links when checking if everything in the context is accessible
- // This test doesn't require that we run commands as an unprivileged user
- pathToDirectoryWhichContainsLinks := filepath.Join(buildDirectory, "linksdirectory")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testlinksok", ".")
- buildCmd.Dir = pathToDirectoryWhichContainsLinks
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- t.Fatalf("build should have worked: %s %s", err, out)
- }
- deleteImages("testlinksok")
- }
- deleteImages("inaccessiblefiles")
- logDone("build - ADD from context with inaccessible files must fail")
- logDone("build - ADD from context with accessible links must work")
- }
- func TestBuildForceRm(t *testing.T) {
- containerCountBefore, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildForceRm")
- buildCmd := exec.Command(dockerBinary, "build", "--force-rm", ".")
- buildCmd.Dir = buildDirectory
- _, exitCode, err := runCommandWithOutput(buildCmd)
- if err == nil || exitCode == 0 {
- t.Fatal("failed to build the image")
- }
- containerCountAfter, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- if containerCountBefore != containerCountAfter {
- t.Fatalf("--force-rm shouldn't have left containers behind")
- }
- logDone("build - ensure --force-rm doesn't leave containers behind")
- }
- func TestBuildRm(t *testing.T) {
- {
- containerCountBefore, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildRm")
- buildCmd := exec.Command(dockerBinary, "build", "--rm", "-t", "testbuildrm", ".")
- buildCmd.Dir = buildDirectory
- _, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- containerCountAfter, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- if containerCountBefore != containerCountAfter {
- t.Fatalf("-rm shouldn't have left containers behind")
- }
- deleteImages("testbuildrm")
- }
- {
- containerCountBefore, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildRm")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testbuildrm", ".")
- buildCmd.Dir = buildDirectory
- _, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- containerCountAfter, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- if containerCountBefore != containerCountAfter {
- t.Fatalf("--rm shouldn't have left containers behind")
- }
- deleteImages("testbuildrm")
- }
- {
- containerCountBefore, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildRm")
- buildCmd := exec.Command(dockerBinary, "build", "--rm=false", "-t", "testbuildrm", ".")
- buildCmd.Dir = buildDirectory
- _, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- containerCountAfter, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- if containerCountBefore == containerCountAfter {
- t.Fatalf("--rm=false should have left containers behind")
- }
- deleteAllContainers()
- deleteImages("testbuildrm")
- }
- logDone("build - ensure --rm doesn't leave containers behind and that --rm=true is the default")
- logDone("build - ensure --rm=false overrides the default")
- }
- // TODO: TestCaching
- // TODO: TestADDCacheInvalidation
|