mirror of
https://github.com/moby/moby.git
synced 2025-09-18 06:09:53 +03:00
52 lines
1.6 KiB
Go
52 lines
1.6 KiB
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
"testing"
|
|
|
|
cerrdefs "github.com/containerd/errdefs"
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func TestContainerRenameError(t *testing.T) {
|
|
client, err := NewClientWithOpts(WithMockClient(errorMock(http.StatusInternalServerError, "Server error")))
|
|
assert.NilError(t, err)
|
|
err = client.ContainerRename(context.Background(), "nothing", "newNothing")
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInternal))
|
|
|
|
err = client.ContainerRename(context.Background(), "", "newNothing")
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
|
|
assert.Check(t, is.ErrorContains(err, "value is empty"))
|
|
|
|
err = client.ContainerRename(context.Background(), " ", "newNothing")
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
|
|
assert.Check(t, is.ErrorContains(err, "value is empty"))
|
|
}
|
|
|
|
func TestContainerRename(t *testing.T) {
|
|
expectedURL := "/containers/container_id/rename"
|
|
client, err := NewClientWithOpts(WithMockClient(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)
|
|
}
|
|
name := req.URL.Query().Get("name")
|
|
if name != "newName" {
|
|
return nil, fmt.Errorf("name not set in URL query properly. Expected 'newName', got %s", name)
|
|
}
|
|
return &http.Response{
|
|
StatusCode: http.StatusOK,
|
|
Body: io.NopCloser(bytes.NewReader([]byte(""))),
|
|
}, nil
|
|
}))
|
|
assert.NilError(t, err)
|
|
|
|
err = client.ContainerRename(context.Background(), "container_id", "newName")
|
|
assert.NilError(t, err)
|
|
}
|