Files
moby/client/checkpoint_remove_test.go
Sebastiaan van Stijn 7aa036ef2e client: rename CheckpointDelete to CheckpointRemove, and add output struct
Align with other "delete" options, which are all named "remove".

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2025-11-10 11:42:27 +01:00

51 lines
1.4 KiB
Go

package client
import (
"net/http"
"testing"
cerrdefs "github.com/containerd/errdefs"
"gotest.tools/v3/assert"
is "gotest.tools/v3/assert/cmp"
)
func TestCheckpointDeleteError(t *testing.T) {
client, err := New(
WithMockClient(errorMock(http.StatusInternalServerError, "Server error")),
)
assert.NilError(t, err)
_, err = client.CheckpointRemove(t.Context(), "container_id", CheckpointRemoveOptions{
CheckpointID: "checkpoint_id",
})
assert.Check(t, is.ErrorType(err, cerrdefs.IsInternal))
_, err = client.CheckpointRemove(t.Context(), "", CheckpointRemoveOptions{})
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
assert.Check(t, is.ErrorContains(err, "value is empty"))
_, err = client.CheckpointRemove(t.Context(), " ", CheckpointRemoveOptions{})
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
assert.Check(t, is.ErrorContains(err, "value is empty"))
}
func TestCheckpointDelete(t *testing.T) {
const expectedURL = "/containers/container_id/checkpoints/checkpoint_id"
client, err := New(
WithMockClient(func(req *http.Request) (*http.Response, error) {
if err := assertRequest(req, http.MethodDelete, expectedURL); err != nil {
return nil, err
}
return mockResponse(http.StatusOK, nil, "")(req)
}),
)
assert.NilError(t, err)
_, err = client.CheckpointRemove(t.Context(), "container_id", CheckpointRemoveOptions{
CheckpointID: "checkpoint_id",
})
assert.NilError(t, err)
}