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"
|
|
|
|
"io/ioutil"
|
|
|
|
"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 12:22:43 -05:00
|
|
|
"github.com/docker/docker/errdefs"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestServiceListError(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.ServiceList(context.Background(), types.ServiceListOptions{})
|
2018-12-31 12:22:43 -05:00
|
|
|
if !errdefs.IsSystem(err) {
|
2019-10-12 18:31:53 -04:00
|
|
|
t.Fatalf("expected a Server Error, got %[1]T: %[1]v", err)
|
2018-12-31 12:22:43 -05:00
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestServiceList(t *testing.T) {
|
|
|
|
expectedURL := "/services"
|
|
|
|
|
|
|
|
filters := filters.NewArgs()
|
|
|
|
filters.Add("label", "label1")
|
|
|
|
filters.Add("label", "label2")
|
|
|
|
|
|
|
|
listCases := []struct {
|
|
|
|
options types.ServiceListOptions
|
|
|
|
expectedQueryParams map[string]string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
options: types.ServiceListOptions{},
|
|
|
|
expectedQueryParams: map[string]string{
|
|
|
|
"filters": "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
options: types.ServiceListOptions{
|
2016-11-01 10:01:16 -04:00
|
|
|
Filters: filters,
|
2016-09-06 14:46:37 -04:00
|
|
|
},
|
|
|
|
expectedQueryParams: map[string]string{
|
|
|
|
"filters": `{"label":{"label1":true,"label2":true}}`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, listCase := range listCases {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
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,
|
|
|
|
Body: ioutil.NopCloser(bytes.NewReader(content)),
|
|
|
|
}, 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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|