2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-05-19 11:38:54 +00:00
|
|
|
"context"
|
2016-09-06 18:46:37 +00:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2021-08-24 10:10:50 +00:00
|
|
|
"io"
|
2016-09-06 18:46:37 +00:00
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
2023-10-12 07:19:58 +00:00
|
|
|
"syscall"
|
2016-09-06 18:46:37 +00:00
|
|
|
"testing"
|
2023-10-12 07:19:58 +00:00
|
|
|
"testing/iotest"
|
2016-09-06 18:46:37 +00:00
|
|
|
"time"
|
|
|
|
|
2018-04-19 22:30:59 +00:00
|
|
|
"github.com/docker/docker/api/types/container"
|
2018-12-31 17:22:43 +00:00
|
|
|
"github.com/docker/docker/errdefs"
|
2023-10-12 07:19:58 +00:00
|
|
|
"github.com/pkg/errors"
|
2023-05-10 11:17:40 +00:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
is "gotest.tools/v3/assert/cmp"
|
2016-09-06 18:46:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestContainerWaitError(t *testing.T) {
|
|
|
|
client := &Client{
|
2016-09-09 03:44:25 +00:00
|
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
2017-03-31 03:01:41 +00:00
|
|
|
resultC, errC := client.ContainerWait(context.Background(), "nothing", "")
|
|
|
|
select {
|
|
|
|
case result := <-resultC:
|
|
|
|
t.Fatalf("expected to not get a wait result, got %d", result.StatusCode)
|
|
|
|
case err := <-errC:
|
2023-05-10 11:17:40 +00:00
|
|
|
assert.Check(t, is.ErrorType(err, errdefs.IsSystem))
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 11:20:06 +00:00
|
|
|
// TestContainerWaitConnectionError verifies that connection errors occurring
|
|
|
|
// during API-version negotiation are not shadowed by API-version errors.
|
|
|
|
//
|
|
|
|
// Regression test for https://github.com/docker/cli/issues/4890
|
|
|
|
func TestContainerWaitConnectionError(t *testing.T) {
|
|
|
|
client, err := NewClientWithOpts(WithAPIVersionNegotiation(), WithHost("tcp://no-such-host.invalid"))
|
|
|
|
assert.NilError(t, err)
|
|
|
|
|
|
|
|
resultC, errC := client.ContainerWait(context.Background(), "nothing", "")
|
|
|
|
select {
|
|
|
|
case result := <-resultC:
|
|
|
|
t.Fatalf("expected to not get a wait result, got %d", result.StatusCode)
|
|
|
|
case err := <-errC:
|
|
|
|
assert.Check(t, is.ErrorType(err, IsErrConnectionFailed))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-06 18:46:37 +00:00
|
|
|
func TestContainerWait(t *testing.T) {
|
|
|
|
expectedURL := "/containers/container_id/wait"
|
|
|
|
client := &Client{
|
2016-09-09 03:44:25 +00:00
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
2016-09-06 18:46:37 +00:00
|
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
|
|
}
|
2022-03-05 16:13:15 +00:00
|
|
|
b, err := json.Marshal(container.WaitResponse{
|
2016-09-06 18:46:37 +00:00
|
|
|
StatusCode: 15,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &http.Response{
|
|
|
|
StatusCode: http.StatusOK,
|
2021-08-24 10:10:50 +00:00
|
|
|
Body: io.NopCloser(bytes.NewReader(b)),
|
2016-09-06 18:46:37 +00:00
|
|
|
}, nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
2017-03-31 03:01:41 +00:00
|
|
|
resultC, errC := client.ContainerWait(context.Background(), "container_id", "")
|
|
|
|
select {
|
|
|
|
case err := <-errC:
|
2016-09-06 18:46:37 +00:00
|
|
|
t.Fatal(err)
|
2017-03-31 03:01:41 +00:00
|
|
|
case result := <-resultC:
|
|
|
|
if result.StatusCode != 15 {
|
|
|
|
t.Fatalf("expected a status code equal to '15', got %d", result.StatusCode)
|
|
|
|
}
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-22 23:32:19 +00:00
|
|
|
func TestContainerWaitProxyInterrupt(t *testing.T) {
|
|
|
|
expectedURL := "/v1.30/containers/container_id/wait"
|
|
|
|
msg := "copying response body from Docker: unexpected EOF"
|
|
|
|
client := &Client{
|
|
|
|
version: "1.30",
|
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
|
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
|
|
}
|
|
|
|
return &http.Response{
|
|
|
|
StatusCode: http.StatusOK,
|
|
|
|
Body: io.NopCloser(strings.NewReader(msg)),
|
|
|
|
}, nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
resultC, errC := client.ContainerWait(context.Background(), "container_id", "")
|
|
|
|
select {
|
|
|
|
case err := <-errC:
|
|
|
|
if !strings.Contains(err.Error(), msg) {
|
|
|
|
t.Fatalf("Expected: %s, Actual: %s", msg, err.Error())
|
|
|
|
}
|
|
|
|
case result := <-resultC:
|
|
|
|
t.Fatalf("Unexpected result: %v", result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContainerWaitProxyInterruptLong(t *testing.T) {
|
|
|
|
expectedURL := "/v1.30/containers/container_id/wait"
|
|
|
|
msg := strings.Repeat("x", containerWaitErrorMsgLimit*5)
|
|
|
|
client := &Client{
|
|
|
|
version: "1.30",
|
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
|
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
|
|
}
|
|
|
|
return &http.Response{
|
|
|
|
StatusCode: http.StatusOK,
|
|
|
|
Body: io.NopCloser(strings.NewReader(msg)),
|
|
|
|
}, nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
resultC, errC := client.ContainerWait(context.Background(), "container_id", "")
|
|
|
|
select {
|
|
|
|
case err := <-errC:
|
|
|
|
// LimitReader limiting isn't exact, because of how the Readers do chunking.
|
|
|
|
if len(err.Error()) > containerWaitErrorMsgLimit*2 {
|
|
|
|
t.Fatalf("Expected error to be limited around %d, actual length: %d", containerWaitErrorMsgLimit, len(err.Error()))
|
|
|
|
}
|
|
|
|
case result := <-resultC:
|
|
|
|
t.Fatalf("Unexpected result: %v", result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-12 07:19:58 +00:00
|
|
|
func TestContainerWaitErrorHandling(t *testing.T) {
|
|
|
|
for _, test := range []struct {
|
|
|
|
name string
|
|
|
|
rdr io.Reader
|
|
|
|
exp error
|
|
|
|
}{
|
|
|
|
{name: "invalid json", rdr: strings.NewReader(`{]`), exp: errors.New("{]")},
|
|
|
|
{name: "context canceled", rdr: iotest.ErrReader(context.Canceled), exp: context.Canceled},
|
|
|
|
{name: "context deadline exceeded", rdr: iotest.ErrReader(context.DeadlineExceeded), exp: context.DeadlineExceeded},
|
|
|
|
{name: "connection reset", rdr: iotest.ErrReader(syscall.ECONNRESET), exp: syscall.ECONNRESET},
|
|
|
|
} {
|
|
|
|
t.Run(test.name, func(t *testing.T) {
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
client := &Client{
|
|
|
|
version: "1.30",
|
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
|
|
|
return &http.Response{
|
|
|
|
StatusCode: http.StatusOK,
|
|
|
|
Body: io.NopCloser(test.rdr),
|
|
|
|
}, nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
resultC, errC := client.ContainerWait(ctx, "container_id", "")
|
|
|
|
select {
|
|
|
|
case err := <-errC:
|
|
|
|
if err.Error() != test.exp.Error() {
|
|
|
|
t.Fatalf("ContainerWait() errC = %v; want %v", err, test.exp)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
case result := <-resultC:
|
|
|
|
t.Fatalf("expected to not get a wait result, got %d", result.StatusCode)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Unexpected - we should not reach this line
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-06 18:46:37 +00:00
|
|
|
func ExampleClient_ContainerWait_withTimeout() {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
2019-01-03 21:49:00 +00:00
|
|
|
client, _ := NewClientWithOpts(FromEnv)
|
2017-03-31 03:01:41 +00:00
|
|
|
_, errC := client.ContainerWait(ctx, "container_id", "")
|
|
|
|
if err := <-errC; err != nil {
|
2016-09-06 18:46:37 +00:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|