2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2016-09-06 18:46:37 +00:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2021-08-24 10:10:50 +00:00
|
|
|
"io"
|
2016-09-06 18:46:37 +00:00
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
2022-03-18 15:33:43 +00:00
|
|
|
"github.com/docker/docker/api/types/volume"
|
2018-12-31 17:22:43 +00:00
|
|
|
"github.com/docker/docker/errdefs"
|
2023-05-10 11:17:40 +00:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
is "gotest.tools/v3/assert/cmp"
|
2016-09-06 18:46:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestVolumeListError(t *testing.T) {
|
|
|
|
client := &Client{
|
2016-09-09 03:44:25 +00:00
|
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
|
|
|
|
2019-11-01 15:11:35 +00:00
|
|
|
_, err := client.VolumeList(context.Background(), volume.ListOptions{})
|
2023-05-10 11:17:40 +00:00
|
|
|
assert.Check(t, is.ErrorType(err, errdefs.IsSystem))
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestVolumeList(t *testing.T) {
|
2023-04-25 13:11:32 +00:00
|
|
|
const expectedURL = "/volumes"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
listCases := []struct {
|
|
|
|
filters filters.Args
|
|
|
|
expectedFilters string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
filters: filters.NewArgs(),
|
|
|
|
expectedFilters: "",
|
|
|
|
}, {
|
2023-04-25 13:11:32 +00:00
|
|
|
filters: filters.NewArgs(filters.Arg("dangling", "false")),
|
2016-09-06 18:46:37 +00:00
|
|
|
expectedFilters: `{"dangling":{"false":true}}`,
|
|
|
|
}, {
|
2023-04-25 13:11:32 +00:00
|
|
|
filters: filters.NewArgs(filters.Arg("dangling", "true")),
|
2016-09-06 18:46:37 +00:00
|
|
|
expectedFilters: `{"dangling":{"true":true}}`,
|
|
|
|
}, {
|
2023-04-25 13:11:32 +00:00
|
|
|
filters: filters.NewArgs(
|
|
|
|
filters.Arg("label", "label1"),
|
|
|
|
filters.Arg("label", "label2"),
|
|
|
|
),
|
2016-09-06 18:46:37 +00:00
|
|
|
expectedFilters: `{"label":{"label1":true,"label2":true}}`,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, listCase := range listCases {
|
|
|
|
client := &Client{
|
2016-09-09 03:44:25 +00:00
|
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
2016-09-06 18:46:37 +00:00
|
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
|
|
}
|
|
|
|
query := req.URL.Query()
|
|
|
|
actualFilters := query.Get("filters")
|
|
|
|
if actualFilters != listCase.expectedFilters {
|
|
|
|
return nil, fmt.Errorf("filters not set in URL query properly. Expected '%s', got %s", listCase.expectedFilters, actualFilters)
|
|
|
|
}
|
2022-03-05 20:04:55 +00:00
|
|
|
content, err := json.Marshal(volume.ListResponse{
|
2022-03-18 15:33:43 +00:00
|
|
|
Volumes: []*volume.Volume{
|
2016-09-06 18:46:37 +00:00
|
|
|
{
|
|
|
|
Name: "volume",
|
|
|
|
Driver: "local",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &http.Response{
|
|
|
|
StatusCode: http.StatusOK,
|
2021-08-24 10:10:50 +00:00
|
|
|
Body: io.NopCloser(bytes.NewReader(content)),
|
2016-09-06 18:46:37 +00:00
|
|
|
}, nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
2019-11-01 15:11:35 +00:00
|
|
|
volumeResponse, err := client.VolumeList(context.Background(), volume.ListOptions{Filters: listCase.filters})
|
2016-09-06 18:46:37 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(volumeResponse.Volumes) != 1 {
|
|
|
|
t.Fatalf("expected 1 volume, got %v", volumeResponse.Volumes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|