2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-05-19 07:38:54 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2021-08-24 06:10:50 -04:00
|
|
|
"io"
|
2016-09-06 14:46:37 -04:00
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2018-04-19 18:30:59 -04:00
|
|
|
"github.com/docker/docker/api/types/container"
|
2018-12-31 12:22:43 -05:00
|
|
|
"github.com/docker/docker/errdefs"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestContainerWaitError(t *testing.T) {
|
|
|
|
client := &Client{
|
2016-09-08 23:44:25 -04:00
|
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
2017-03-30 23:01:41 -04: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:
|
2018-12-31 12:22:43 -05:00
|
|
|
if !errdefs.IsSystem(err) {
|
2019-10-12 18:31:53 -04:00
|
|
|
t.Fatalf("expected a Server Error, got %[1]T: %[1]v", err)
|
2018-12-31 12:22:43 -05:00
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContainerWait(t *testing.T) {
|
|
|
|
expectedURL := "/containers/container_id/wait"
|
|
|
|
client := &Client{
|
2016-09-08 23:44:25 -04:00
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
2016-09-06 14:46:37 -04:00
|
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
|
|
}
|
2022-03-05 11:13:15 -05:00
|
|
|
b, err := json.Marshal(container.WaitResponse{
|
2016-09-06 14:46:37 -04:00
|
|
|
StatusCode: 15,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &http.Response{
|
|
|
|
StatusCode: http.StatusOK,
|
2021-08-24 06:10:50 -04:00
|
|
|
Body: io.NopCloser(bytes.NewReader(b)),
|
2016-09-06 14:46:37 -04:00
|
|
|
}, nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
2017-03-30 23:01:41 -04:00
|
|
|
resultC, errC := client.ContainerWait(context.Background(), "container_id", "")
|
|
|
|
select {
|
|
|
|
case err := <-errC:
|
2016-09-06 14:46:37 -04:00
|
|
|
t.Fatal(err)
|
2017-03-30 23:01:41 -04:00
|
|
|
case result := <-resultC:
|
|
|
|
if result.StatusCode != 15 {
|
|
|
|
t.Fatalf("expected a status code equal to '15', got %d", result.StatusCode)
|
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExampleClient_ContainerWait_withTimeout() {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
2019-01-03 16:49:00 -05:00
|
|
|
client, _ := NewClientWithOpts(FromEnv)
|
2017-03-30 23:01:41 -04:00
|
|
|
_, errC := client.ContainerWait(ctx, "container_id", "")
|
|
|
|
if err := <-errC; err != nil {
|
2016-09-06 14:46:37 -04:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|