1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
//go:build dfcopychmodnonoctal
package dockerfile
import (
"fmt"
"testing"
"github.com/containerd/continuity/fs/fstest"
"github.com/moby/buildkit/client"
"github.com/moby/buildkit/frontend/dockerui"
"github.com/moby/buildkit/util/testutil/integration"
"github.com/stretchr/testify/require"
"github.com/tonistiigi/fsutil"
)
func init() {
allTests = append(allTests, integration.TestFuncs(testChmodNonOctal)...)
}
func testChmodNonOctal(t *testing.T, sb integration.Sandbox) {
integration.SkipOnPlatform(t, "windows")
f := getFrontend(t, sb)
tcases := []struct {
src string
dst string
mode string
isDir bool
}{
{
src: "file",
dst: "f1",
mode: "go-w",
},
{
src: "file",
dst: "f2",
mode: "u=rw,g=r,o=r",
}, {
src: "file",
dst: "f3",
mode: "a+X",
},
{
src: "dir",
dst: "d1",
mode: "go-w",
isDir: true,
},
{
src: "dir",
dst: "d2",
mode: "u+rw,g+r,o-x,o+w",
isDir: true,
},
{
src: "dir",
dst: "d3",
mode: "a+X",
isDir: true,
},
}
expectedCommands := ""
copyCommands := ""
verifyCommands := ""
for _, tc := range tcases {
if tc.isDir {
// create nested input dir because COPY copies directory contents
expectedCommands += "RUN mkdir -p /input/dirs/" + tc.dst + " && cp -a /input/" + tc.src + " /input/dirs/" + tc.dst + "/" + tc.dst + "\n"
expectedCommands += "RUN cp -a /input/dirs/" + tc.dst + "/. /expected/ && chmod " + tc.mode + " /expected/" + tc.dst + "\n"
copyCommands += "COPY --from=base --chmod=" + tc.mode + " /input/dirs/" + tc.dst + " /\n"
} else {
expectedCommands += "RUN cp -a /input/" + tc.src + " /expected/" + tc.dst + " && chmod " + tc.mode + " /expected/" + tc.dst + "\n"
copyCommands += "COPY --from=base --chmod=" + tc.mode + " /input/" + tc.src + " /" + tc.dst + "\n"
}
verifyCommands += "RUN [ \"$(stat -c %A /actual/" + tc.dst + ")\" = \"$(stat -c %A /expected/" + tc.dst + ")\" ]\n"
}
dockerfile := []byte(fmt.Sprintf(`
FROM alpine as base
RUN <<eot
set -ex
mkdir /input
touch /input/file
chmod 666 /input/file
mkdir /input/dir
chmod 124 /input/dir
mkdir /expected
eot
%s
FROM scratch as result
%s
FROM base
COPY --from=result / /actual/
%s
`, expectedCommands, copyCommands, verifyCommands))
dir := integration.Tmpdir(
t,
fstest.CreateFile("Dockerfile", dockerfile, 0600),
)
c, err := client.New(sb.Context(), sb.Address())
require.NoError(t, err)
defer c.Close()
_, err = f.Solve(sb.Context(), c, client.SolveOpt{
LocalMounts: map[string]fsutil.FS{
dockerui.DefaultLocalNameDockerfile: dir,
dockerui.DefaultLocalNameContext: dir,
},
}, nil)
require.NoError(t, err)
}
|