Skip to content

Commit

Permalink
attach: wait for exit code from ContainerWait
Browse files Browse the repository at this point in the history
Such as with `docker run`, if a user CTRL-Cs while attached to a
container, we should forward the signal and wait for the exit from
`ContainerWait`, instead of just returning.

Signed-off-by: Laura Brehm <[email protected]>
  • Loading branch information
laurazard committed Jul 25, 2024
1 parent 788e996 commit 807730c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
6 changes: 2 additions & 4 deletions cli/command/container/attach.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ func RunAttach(ctx context.Context, dockerCLI command.Cli, containerID string, o
apiClient := dockerCLI.Client()

// request channel to wait for client
resultC, errC := apiClient.ContainerWait(ctx, containerID, "")
waitCtx := context.WithoutCancel(ctx)
resultC, errC := apiClient.ContainerWait(waitCtx, containerID, "")

c, err := inspectContainerAndCheckState(ctx, apiClient, containerID)
if err != nil {
Expand Down Expand Up @@ -163,9 +164,6 @@ func getExitStatus(errC <-chan error, resultC <-chan container.WaitResponse) err
return cli.StatusError{StatusCode: int(result.StatusCode)}
}
case err := <-errC:
if errors.Is(err, context.Canceled) {
return nil
}
return err
}

Expand Down
15 changes: 9 additions & 6 deletions cli/command/container/attach_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,7 @@ func TestNewAttachCommandErrors(t *testing.T) {
}

func TestGetExitStatus(t *testing.T) {
var (
expectedErr = errors.New("unexpected error")
errC = make(chan error, 1)
resultC = make(chan container.WaitResponse, 1)
)
expectedErr := errors.New("unexpected error")

testcases := []struct {
result *container.WaitResponse
Expand Down Expand Up @@ -119,19 +115,26 @@ func TestGetExitStatus(t *testing.T) {
expectedError: cli.StatusError{StatusCode: 15},
},
{
result: &container.WaitResponse{
StatusCode: 130,
},
err: context.Canceled,
expectedError: nil,
expectedError: cli.StatusError{StatusCode: 130},
},
}

for _, testcase := range testcases {
errC := make(chan error, 1)
resultC := make(chan container.WaitResponse, 1)
if testcase.err != nil {
errC <- testcase.err
}
if testcase.result != nil {
resultC <- *testcase.result
}

err := getExitStatus(errC, resultC)

if testcase.expectedError == nil {
assert.NilError(t, err)
} else {
Expand Down
6 changes: 3 additions & 3 deletions e2e/container/attach_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func withStdinNewline(cmd *icmd.Cmd) {

// Regression test for https://github.com/docker/cli/issues/5294
func TestAttachInterrupt(t *testing.T) {
result := icmd.RunCommand("docker", "run", "-d", fixtures.AlpineImage, "sh", "-c", "sleep 5")
result := icmd.RunCommand("docker", "run", "-d", fixtures.AlpineImage, "sh", "-c", "while true; do sleep 1; done")
result.Assert(t, icmd.Success)
containerID := strings.TrimSpace(result.Stdout())

Expand All @@ -49,6 +49,6 @@ func TestAttachInterrupt(t *testing.T) {
c.Process.Signal(os.Interrupt)

_ = c.Wait()
assert.Equal(t, c.ProcessState.ExitCode(), 0)
assert.Equal(t, d.String(), "")
assert.Equal(t, c.ProcessState.ExitCode(), 130)
assert.Equal(t, d.String(), "exit status 130\n")
}

0 comments on commit 807730c

Please sign in to comment.