mirror of
https://github.com/moby/moby.git
synced 2026-01-11 02:31:44 +00:00
78 lines
2.3 KiB
Go
78 lines
2.3 KiB
Go
package client
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
"testing"
|
|
|
|
cerrdefs "github.com/containerd/errdefs"
|
|
"github.com/moby/moby/api/types/swarm"
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func TestConfigInspectNotFound(t *testing.T) {
|
|
client, err := New(
|
|
WithMockClient(errorMock(http.StatusNotFound, "Server error")),
|
|
)
|
|
assert.NilError(t, err)
|
|
|
|
_, err = client.ConfigInspect(t.Context(), "unknown", ConfigInspectOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsNotFound))
|
|
}
|
|
|
|
func TestConfigInspectWithEmptyID(t *testing.T) {
|
|
client, err := New(
|
|
WithMockClient(func(req *http.Request) (*http.Response, error) {
|
|
return nil, errors.New("should not make request")
|
|
}),
|
|
)
|
|
assert.NilError(t, err)
|
|
_, err = client.ConfigInspect(t.Context(), "", ConfigInspectOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
|
|
assert.Check(t, is.ErrorContains(err, "value is empty"))
|
|
|
|
_, err = client.ConfigInspect(t.Context(), " ", ConfigInspectOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
|
|
assert.Check(t, is.ErrorContains(err, "value is empty"))
|
|
}
|
|
|
|
func TestConfigInspectError(t *testing.T) {
|
|
client, err := New(
|
|
WithMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
|
)
|
|
assert.NilError(t, err)
|
|
|
|
_, err = client.ConfigInspect(t.Context(), "nothing", ConfigInspectOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInternal))
|
|
}
|
|
|
|
func TestConfigInspectConfigNotFound(t *testing.T) {
|
|
client, err := New(
|
|
WithMockClient(errorMock(http.StatusNotFound, "Server error")),
|
|
)
|
|
assert.NilError(t, err)
|
|
|
|
_, err = client.ConfigInspect(t.Context(), "unknown", ConfigInspectOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsNotFound))
|
|
}
|
|
|
|
func TestConfigInspect(t *testing.T) {
|
|
const expectedURL = "/configs/config_id"
|
|
client, err := New(
|
|
WithMockClient(func(req *http.Request) (*http.Response, error) {
|
|
if err := assertRequest(req, http.MethodGet, expectedURL); err != nil {
|
|
return nil, err
|
|
}
|
|
return mockJSONResponse(http.StatusOK, nil, swarm.Config{
|
|
ID: "config_id",
|
|
})(req)
|
|
}),
|
|
)
|
|
assert.NilError(t, err)
|
|
|
|
result, err := client.ConfigInspect(t.Context(), "config_id", ConfigInspectOptions{})
|
|
assert.NilError(t, err)
|
|
assert.Check(t, is.Equal(result.Config.ID, "config_id"))
|
|
}
|