| package client |
| |
| import ( |
| "fmt" |
| "net/http" |
| "testing" |
| |
| cerrdefs "github.com/containerd/errdefs" |
| "gotest.tools/v3/assert" |
| is "gotest.tools/v3/assert/cmp" |
| ) |
| |
| func TestContainerRemoveError(t *testing.T) { |
| client, err := New(WithMockClient(errorMock(http.StatusInternalServerError, "Server error"))) |
| assert.NilError(t, err) |
| _, err = client.ContainerRemove(t.Context(), "container_id", ContainerRemoveOptions{}) |
| assert.Check(t, is.ErrorType(err, cerrdefs.IsInternal)) |
| |
| _, err = client.ContainerRemove(t.Context(), "", ContainerRemoveOptions{}) |
| assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument)) |
| assert.Check(t, is.ErrorContains(err, "value is empty")) |
| |
| _, err = client.ContainerRemove(t.Context(), " ", ContainerRemoveOptions{}) |
| assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument)) |
| assert.Check(t, is.ErrorContains(err, "value is empty")) |
| } |
| |
| func TestContainerRemoveNotFoundError(t *testing.T) { |
| client, err := New(WithMockClient(errorMock(http.StatusNotFound, "no such container: container_id"))) |
| assert.NilError(t, err) |
| _, err = client.ContainerRemove(t.Context(), "container_id", ContainerRemoveOptions{}) |
| assert.Check(t, is.ErrorContains(err, "no such container: container_id")) |
| assert.Check(t, is.ErrorType(err, cerrdefs.IsNotFound)) |
| } |
| |
| func TestContainerRemove(t *testing.T) { |
| const expectedURL = "/containers/container_id" |
| client, err := New(WithMockClient(func(req *http.Request) (*http.Response, error) { |
| if err := assertRequest(req, http.MethodDelete, expectedURL); err != nil { |
| return nil, err |
| } |
| query := req.URL.Query() |
| volume := query.Get("v") |
| if volume != "1" { |
| return nil, fmt.Errorf("v (volume) not set in URL query properly. Expected '1', got %s", volume) |
| } |
| force := query.Get("force") |
| if force != "1" { |
| return nil, fmt.Errorf("force not set in URL query properly. Expected '1', got %s", force) |
| } |
| link := query.Get("link") |
| if link != "" { |
| return nil, fmt.Errorf("link should have not be present in query, go %s", link) |
| } |
| return mockResponse(http.StatusOK, nil, "")(req) |
| })) |
| assert.NilError(t, err) |
| |
| _, err = client.ContainerRemove(t.Context(), "container_id", ContainerRemoveOptions{ |
| RemoveVolumes: true, |
| Force: true, |
| }) |
| assert.NilError(t, err) |
| } |