container/SetupWorkingDirectory: Don't mutate config
Don't mutate the container's `Config.WorkingDir` permanently with a cleaned path when creating a working directory. Move the `filepath.Clean` to the `translateWorkingDir` instead. Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
parent
a4d5b6b4d0
commit
7532420f3b
4 changed files with 99 additions and 3 deletions
|
@ -299,8 +299,8 @@ func (container *Container) SetupWorkingDirectory(rootIdentity idtools.Identity)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
container.Config.WorkingDir = filepath.Clean(container.Config.WorkingDir)
|
workdir := filepath.Clean(container.Config.WorkingDir)
|
||||||
pth, err := container.GetResourcePath(container.Config.WorkingDir)
|
pth, err := container.GetResourcePath(workdir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -364,6 +364,6 @@ func translateWorkingDir(config *containertypes.Config) error {
|
||||||
if !system.IsAbs(wd) {
|
if !system.IsAbs(wd) {
|
||||||
return fmt.Errorf("the working directory '%s' is invalid, it needs to be an absolute path", config.WorkingDir)
|
return fmt.Errorf("the working directory '%s' is invalid, it needs to be an absolute path", config.WorkingDir)
|
||||||
}
|
}
|
||||||
config.WorkingDir = wd
|
config.WorkingDir = filepath.Clean(wd)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -689,6 +689,72 @@ func TestBuildPlatformInvalid(t *testing.T) {
|
||||||
assert.Check(t, is.ErrorType(err, errdefs.IsInvalidParameter))
|
assert.Check(t, is.ErrorType(err, errdefs.IsInvalidParameter))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TestBuildWorkdirNoCacheMiss is a regression test for https://github.com/moby/moby/issues/47627
|
||||||
|
func TestBuildWorkdirNoCacheMiss(t *testing.T) {
|
||||||
|
ctx := setupTest(t)
|
||||||
|
|
||||||
|
for _, tc := range []struct {
|
||||||
|
name string
|
||||||
|
dockerfile string
|
||||||
|
}{
|
||||||
|
{name: "trailing slash", dockerfile: "FROM busybox\nWORKDIR /foo/"},
|
||||||
|
{name: "no trailing slash", dockerfile: "FROM busybox\nWORKDIR /foo"},
|
||||||
|
} {
|
||||||
|
dockerfile := tc.dockerfile
|
||||||
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
|
source := fakecontext.New(t, "", fakecontext.WithDockerfile(dockerfile))
|
||||||
|
defer source.Close()
|
||||||
|
|
||||||
|
apiClient := testEnv.APIClient()
|
||||||
|
|
||||||
|
buildAndGetID := func() string {
|
||||||
|
resp, err := apiClient.ImageBuild(ctx, source.AsTarReader(t), types.ImageBuildOptions{
|
||||||
|
Version: types.BuilderV1,
|
||||||
|
})
|
||||||
|
assert.NilError(t, err)
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
id := readBuildImageIDs(t, resp.Body)
|
||||||
|
assert.Check(t, id != "")
|
||||||
|
return id
|
||||||
|
}
|
||||||
|
|
||||||
|
firstId := buildAndGetID()
|
||||||
|
secondId := buildAndGetID()
|
||||||
|
|
||||||
|
assert.Check(t, is.Equal(firstId, secondId), "expected cache to be used")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func readBuildImageIDs(t *testing.T, rd io.Reader) string {
|
||||||
|
t.Helper()
|
||||||
|
decoder := json.NewDecoder(rd)
|
||||||
|
for {
|
||||||
|
var jm jsonmessage.JSONMessage
|
||||||
|
if err := decoder.Decode(&jm); err != nil {
|
||||||
|
if err == io.EOF {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
assert.NilError(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if jm.Aux == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
var auxId struct {
|
||||||
|
ID string `json:"ID"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if json.Unmarshal(*jm.Aux, &auxId); auxId.ID != "" {
|
||||||
|
return auxId.ID
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
func writeTarRecord(t *testing.T, w *tar.Writer, fn, contents string) {
|
func writeTarRecord(t *testing.T, w *tar.Writer, fn, contents string) {
|
||||||
err := w.WriteHeader(&tar.Header{
|
err := w.WriteHeader(&tar.Header{
|
||||||
Name: fn,
|
Name: fn,
|
||||||
|
|
|
@ -326,3 +326,33 @@ func TestStaticIPOutsideSubpool(t *testing.T) {
|
||||||
|
|
||||||
assert.Check(t, is.Contains(b.String(), "inet 10.42.1.3/16"))
|
assert.Check(t, is.Contains(b.String(), "inet 10.42.1.3/16"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestWorkingDirNormalization(t *testing.T) {
|
||||||
|
ctx := setupTest(t)
|
||||||
|
apiClient := testEnv.APIClient()
|
||||||
|
|
||||||
|
for _, tc := range []struct {
|
||||||
|
name string
|
||||||
|
workdir string
|
||||||
|
}{
|
||||||
|
{name: "trailing slash", workdir: "/tmp/"},
|
||||||
|
{name: "no trailing slash", workdir: "/tmp"},
|
||||||
|
} {
|
||||||
|
tc := tc
|
||||||
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
cID := container.Run(ctx, t, apiClient,
|
||||||
|
container.WithImage("busybox"),
|
||||||
|
container.WithWorkingDir(tc.workdir),
|
||||||
|
)
|
||||||
|
|
||||||
|
defer container.Remove(ctx, t, apiClient, cID, containertypes.RemoveOptions{Force: true})
|
||||||
|
|
||||||
|
inspect := container.Inspect(ctx, t, apiClient, cID)
|
||||||
|
|
||||||
|
assert.Check(t, is.Equal(inspect.Config.WorkingDir, "/tmp"))
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue