mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
add test for issue #5270
Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)
This commit is contained in:
parent
33d5b38d62
commit
f5b1afae74
7 changed files with 97 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
FROM busybox
|
||||
ADD . /foo/
|
|
@ -0,0 +1 @@
|
|||
foo
|
|
@ -0,0 +1,2 @@
|
|||
FROM busybox
|
||||
ADD . /foo/
|
|
@ -0,0 +1 @@
|
|||
should make `docker build` throw an error
|
|
@ -0,0 +1,2 @@
|
|||
FROM busybox
|
||||
ADD . /foo/
|
|
@ -0,0 +1 @@
|
|||
../../../../../../../../../../../../../../../../../../../azA
|
|
@ -2,8 +2,10 @@ package main
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
@ -119,6 +121,92 @@ func TestAddWholeDirToRoot(t *testing.T) {
|
|||
logDone("build - add whole 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")
|
||||
addUserCmd := exec.Command("adduser", "unprivilegeduser")
|
||||
out, _, err := runCommandWithOutput(addUserCmd)
|
||||
errorOut(err, t, fmt.Sprintf("failed to add user: %v %v", out, err))
|
||||
|
||||
{
|
||||
// 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 ")
|
||||
}
|
||||
|
||||
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")
|
||||
}
|
||||
|
||||
// TODO: TestCaching
|
||||
|
||||
// TODO: TestADDCacheInvalidation
|
||||
|
|
Loading…
Reference in a new issue