mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
60 lines
1.9 KiB
Go
60 lines
1.9 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 TestNodeInspectError(t *testing.T) {
|
|
client, err := New(WithMockClient(errorMock(http.StatusInternalServerError, "Server error")))
|
|
assert.NilError(t, err)
|
|
|
|
_, err = client.NodeInspect(t.Context(), "nothing", NodeInspectOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInternal))
|
|
}
|
|
|
|
func TestNodeInspectNodeNotFound(t *testing.T) {
|
|
client, err := New(WithMockClient(errorMock(http.StatusNotFound, "Server error")))
|
|
assert.NilError(t, err)
|
|
|
|
_, err = client.NodeInspect(t.Context(), "unknown", NodeInspectOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsNotFound))
|
|
}
|
|
|
|
func TestNodeInspectWithEmptyID(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.NodeInspect(t.Context(), "", NodeInspectOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
|
|
assert.Check(t, is.ErrorContains(err, "value is empty"))
|
|
|
|
_, err = client.NodeInspect(t.Context(), " ", NodeInspectOptions{})
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument))
|
|
assert.Check(t, is.ErrorContains(err, "value is empty"))
|
|
}
|
|
|
|
func TestNodeInspect(t *testing.T) {
|
|
const expectedURL = "/nodes/node_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.Node{
|
|
ID: "node_id",
|
|
})(req)
|
|
}))
|
|
assert.NilError(t, err)
|
|
|
|
result, err := client.NodeInspect(t.Context(), "node_id", NodeInspectOptions{})
|
|
assert.NilError(t, err)
|
|
assert.Check(t, is.Equal(result.Node.ID, "node_id"))
|
|
}
|