2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2021-08-24 06:10:50 -04:00
|
|
|
"io"
|
2016-09-06 14:46:37 -04:00
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2022-03-18 11:33:43 -04:00
|
|
|
"github.com/docker/docker/api/types/volume"
|
2019-10-12 18:31:53 -04:00
|
|
|
"github.com/docker/docker/errdefs"
|
2018-01-30 07:35:22 -05:00
|
|
|
"github.com/pkg/errors"
|
2020-02-07 08:39:24 -05:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
is "gotest.tools/v3/assert/cmp"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestVolumeInspectError(t *testing.T) {
|
|
|
|
client := &Client{
|
2016-09-08 23:44:25 -04:00
|
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err := client.VolumeInspect(context.Background(), "nothing")
|
2019-10-12 18:31:53 -04:00
|
|
|
if !errdefs.IsSystem(err) {
|
|
|
|
t.Fatalf("expected a Server Error, got %[1]T: %[1]v", err)
|
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestVolumeInspectNotFound(t *testing.T) {
|
|
|
|
client := &Client{
|
2016-09-08 23:44:25 -04:00
|
|
|
client: newMockClient(errorMock(http.StatusNotFound, "Server error")),
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err := client.VolumeInspect(context.Background(), "unknown")
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.Check(t, IsErrNotFound(err))
|
2017-09-07 13:46:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestVolumeInspectWithEmptyID(t *testing.T) {
|
|
|
|
client := &Client{
|
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
2018-01-30 07:35:22 -05:00
|
|
|
return nil, errors.New("should not make request")
|
2017-09-07 13:46:23 -04:00
|
|
|
}),
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
2018-01-30 07:35:22 -05:00
|
|
|
_, _, err := client.VolumeInspectWithRaw(context.Background(), "")
|
|
|
|
if !IsErrNotFound(err) {
|
|
|
|
t.Fatalf("Expected NotFoundError, got %v", err)
|
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestVolumeInspect(t *testing.T) {
|
|
|
|
expectedURL := "/volumes/volume_id"
|
2022-03-18 11:33:43 -04:00
|
|
|
expected := volume.Volume{
|
2017-09-07 13:46:23 -04:00
|
|
|
Name: "name",
|
|
|
|
Driver: "driver",
|
|
|
|
Mountpoint: "mountpoint",
|
|
|
|
}
|
|
|
|
|
2016-09-06 14:46:37 -04:00
|
|
|
client := &Client{
|
2016-09-08 23:44:25 -04:00
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
2016-09-06 14:46:37 -04:00
|
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
|
|
}
|
2019-10-12 14:41:14 -04:00
|
|
|
if req.Method != http.MethodGet {
|
2016-09-06 14:46:37 -04:00
|
|
|
return nil, fmt.Errorf("expected GET method, got %s", req.Method)
|
|
|
|
}
|
2017-09-07 13:46:23 -04:00
|
|
|
content, err := json.Marshal(expected)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &http.Response{
|
|
|
|
StatusCode: http.StatusOK,
|
2021-08-24 06:10:50 -04:00
|
|
|
Body: io.NopCloser(bytes.NewReader(content)),
|
2016-09-06 14:46:37 -04:00
|
|
|
}, nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
2017-09-07 13:46:23 -04:00
|
|
|
volume, err := client.VolumeInspect(context.Background(), "volume_id")
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.DeepEqual(expected, volume))
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|