mirror of
https://github.com/moby/moby.git
synced 2026-01-11 02:31:44 +00:00
Use a more idiomatic name so that it can be used as `client.New()`. We should look if we want `New()` to have different / updated defaults i.e., enable `WithEnv` as default, and have an opt-out and have API- version negotiation enabled by default (with an opt-out option). Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
130 lines
3.7 KiB
Go
130 lines
3.7 KiB
Go
package client
|
|
|
|
import (
|
|
"math"
|
|
"net/http"
|
|
"testing"
|
|
|
|
cerrdefs "github.com/containerd/errdefs"
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func TestContainerResizeError(t *testing.T) {
|
|
client, err := New(WithMockClient(errorMock(http.StatusInternalServerError, "Server error")))
|
|
assert.NilError(t, err)
|
|
_, err = client.ContainerResize(t.Context(), "container_id", ContainerResizeOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInternal))
|
|
|
|
_, err = client.ContainerResize(t.Context(), "", ContainerResizeOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
|
|
assert.Check(t, is.ErrorContains(err, "value is empty"))
|
|
|
|
_, err = client.ContainerResize(t.Context(), " ", ContainerResizeOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
|
|
assert.Check(t, is.ErrorContains(err, "value is empty"))
|
|
}
|
|
|
|
func TestExecResizeError(t *testing.T) {
|
|
client, err := New(WithMockClient(errorMock(http.StatusInternalServerError, "Server error")))
|
|
assert.NilError(t, err)
|
|
_, err = client.ExecResize(t.Context(), "exec_id", ExecResizeOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInternal))
|
|
}
|
|
|
|
func TestContainerResize(t *testing.T) {
|
|
const expectedURL = "/containers/container_id/resize"
|
|
|
|
tests := []struct {
|
|
doc string
|
|
opts ContainerResizeOptions
|
|
expectedHeight, expectedWidth string
|
|
}{
|
|
{
|
|
doc: "zero width height", // valid, but not very useful
|
|
opts: ContainerResizeOptions{},
|
|
expectedWidth: "0",
|
|
expectedHeight: "0",
|
|
},
|
|
{
|
|
doc: "valid resize",
|
|
opts: ContainerResizeOptions{
|
|
Height: 500,
|
|
Width: 600,
|
|
},
|
|
expectedHeight: "500",
|
|
expectedWidth: "600",
|
|
},
|
|
{
|
|
doc: "larger than maxint64",
|
|
opts: ContainerResizeOptions{
|
|
Height: math.MaxInt64 + 1,
|
|
Width: math.MaxInt64 + 2,
|
|
},
|
|
expectedHeight: "9223372036854775808",
|
|
expectedWidth: "9223372036854775809",
|
|
},
|
|
}
|
|
for _, tc := range tests {
|
|
t.Run(tc.doc, func(t *testing.T) {
|
|
client, err := New(WithMockClient(resizeTransport(t, expectedURL, tc.expectedHeight, tc.expectedWidth)))
|
|
assert.NilError(t, err)
|
|
_, err = client.ContainerResize(t.Context(), "container_id", tc.opts)
|
|
assert.NilError(t, err)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestExecResize(t *testing.T) {
|
|
const expectedURL = "/exec/exec_id/resize"
|
|
tests := []struct {
|
|
doc string
|
|
opts ExecResizeOptions
|
|
expectedHeight, expectedWidth string
|
|
}{
|
|
{
|
|
doc: "zero width height", // valid, but not very useful
|
|
opts: ExecResizeOptions{},
|
|
expectedWidth: "0",
|
|
expectedHeight: "0",
|
|
},
|
|
{
|
|
doc: "valid resize",
|
|
opts: ExecResizeOptions{
|
|
Height: 500,
|
|
Width: 600,
|
|
},
|
|
expectedHeight: "500",
|
|
expectedWidth: "600",
|
|
},
|
|
{
|
|
doc: "larger than maxint64",
|
|
opts: ExecResizeOptions{
|
|
Height: math.MaxInt64 + 1,
|
|
Width: math.MaxInt64 + 2,
|
|
},
|
|
expectedHeight: "9223372036854775808",
|
|
expectedWidth: "9223372036854775809",
|
|
},
|
|
}
|
|
for _, tc := range tests {
|
|
t.Run(tc.doc, func(t *testing.T) {
|
|
client, err := New(WithMockClient(resizeTransport(t, expectedURL, tc.expectedHeight, tc.expectedWidth)))
|
|
assert.NilError(t, err)
|
|
_, err = client.ExecResize(t.Context(), "exec_id", tc.opts)
|
|
assert.NilError(t, err)
|
|
})
|
|
}
|
|
}
|
|
|
|
func resizeTransport(t *testing.T, expectedURL, expectedHeight, expectedWidth string) func(req *http.Request) (*http.Response, error) {
|
|
return func(req *http.Request) (*http.Response, error) {
|
|
assert.Check(t, assertRequest(req, http.MethodPost, expectedURL))
|
|
|
|
query := req.URL.Query()
|
|
assert.Check(t, is.Equal(query.Get("h"), expectedHeight))
|
|
assert.Check(t, is.Equal(query.Get("w"), expectedWidth))
|
|
return mockResponse(http.StatusOK, nil, "")(req)
|
|
}
|
|
}
|