| package client |
| |
| import ( |
| "errors" |
| "net/http" |
| "testing" |
| |
| cerrdefs "github.com/containerd/errdefs" |
| "github.com/moby/moby/api/types/plugin" |
| "gotest.tools/v3/assert" |
| is "gotest.tools/v3/assert/cmp" |
| ) |
| |
| func TestPluginInspectError(t *testing.T) { |
| client, err := New(WithMockClient(errorMock(http.StatusInternalServerError, "Server error"))) |
| assert.NilError(t, err) |
| |
| _, err = client.PluginInspect(t.Context(), "nothing", PluginInspectOptions{}) |
| assert.Check(t, is.ErrorType(err, cerrdefs.IsInternal)) |
| } |
| |
| func TestPluginInspectWithEmptyID(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.PluginInspect(t.Context(), "", PluginInspectOptions{}) |
| assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument)) |
| assert.Check(t, is.ErrorContains(err, "value is empty")) |
| |
| _, err = client.PluginInspect(t.Context(), " ", PluginInspectOptions{}) |
| assert.Check(t, is.ErrorType(err, cerrdefs.IsInvalidArgument)) |
| assert.Check(t, is.ErrorContains(err, "value is empty")) |
| } |
| |
| func TestPluginInspect(t *testing.T) { |
| const expectedURL = "/plugins/plugin_name" |
| 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, plugin.Plugin{ |
| ID: "plugin_id", |
| })(req) |
| })) |
| assert.NilError(t, err) |
| |
| resp, err := client.PluginInspect(t.Context(), "plugin_name", PluginInspectOptions{}) |
| assert.NilError(t, err) |
| assert.Check(t, is.Equal(resp.Plugin.ID, "plugin_id")) |
| } |