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"
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
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 TestServiceListError(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
|
|
|
}
|
|
|
|
|
|
|
|
_, err := client.ServiceList(context.Background(), types.ServiceListOptions{})
|
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 TestServiceList(t *testing.T) {
|
2023-04-25 13:11:32 +00:00
|
|
|
const expectedURL = "/services"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
listCases := []struct {
|
|
|
|
options types.ServiceListOptions
|
|
|
|
expectedQueryParams map[string]string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
options: types.ServiceListOptions{},
|
|
|
|
expectedQueryParams: map[string]string{
|
|
|
|
"filters": "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
options: types.ServiceListOptions{
|
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
|
|
|
},
|
|
|
|
expectedQueryParams: map[string]string{
|
|
|
|
"filters": `{"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()
|
|
|
|
for key, expected := range listCase.expectedQueryParams {
|
|
|
|
actual := query.Get(key)
|
|
|
|
if actual != expected {
|
|
|
|
return nil, fmt.Errorf("%s not set in URL query properly. Expected '%s', got %s", key, expected, actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
content, err := json.Marshal([]swarm.Service{
|
|
|
|
{
|
|
|
|
ID: "service_id1",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ID: "service_id2",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
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
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
services, err := client.ServiceList(context.Background(), listCase.options)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(services) != 2 {
|
|
|
|
t.Fatalf("expected 2 services, got %v", services)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|