k3s/pkg/client/client_test.go

614 lines
16 KiB
Go
Raw Normal View History

2014-06-06 23:40:48 +00:00
/*
Copyright 2014 Google Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2014-06-23 18:32:11 +00:00
2014-06-06 23:40:48 +00:00
package client
import (
"encoding/json"
2014-06-07 11:38:16 +00:00
"net/http"
2014-06-06 23:40:48 +00:00
"net/http/httptest"
"net/url"
"path"
2014-06-06 23:40:48 +00:00
"reflect"
"testing"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/latest"
2014-06-20 16:47:39 +00:00
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
"github.com/GoogleCloudPlatform/kubernetes/pkg/resources"
"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
2014-06-06 23:40:48 +00:00
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/version"
2014-06-06 23:40:48 +00:00
)
// TODO: Move this to a common place, it's needed in multiple tests.
const apiPath = "/api/v1beta1"
2014-06-06 23:40:48 +00:00
type testRequest struct {
Method string
Path string
Header string
Query url.Values
Body runtime.Object
RawBody *string
}
type Response struct {
StatusCode int
Body runtime.Object
RawBody *string
}
type testClient struct {
*Client
Request testRequest
Response Response
Error bool
Created bool
server *httptest.Server
handler *util.FakeHandler
// For query args, an optional function to validate the contents
// useful when the contents can change but still be correct.
// Maps from query arg key to validator.
// If no validator is present, string equality is used.
QueryValidator map[string]func(string, string) bool
}
func (c *testClient) Setup() *testClient {
c.handler = &util.FakeHandler{
StatusCode: c.Response.StatusCode,
}
if responseBody := body(c.Response.Body, c.Response.RawBody); responseBody != nil {
c.handler.ResponseBody = *responseBody
}
c.server = httptest.NewServer(c.handler)
if c.Client == nil {
c.Client = NewOrDie(&Config{
Host: c.server.URL,
Version: "v1beta1",
})
}
c.QueryValidator = map[string]func(string, string) bool{}
return c
}
func (c *testClient) Validate(t *testing.T, received runtime.Object, err error) {
c.ValidateCommon(t, err)
if c.Response.Body != nil && !reflect.DeepEqual(c.Response.Body, received) {
t.Errorf("bad response for request %#v: expected %s, got %s", c.Request, c.Response.Body, received)
}
}
func (c *testClient) ValidateRaw(t *testing.T, received []byte, err error) {
c.ValidateCommon(t, err)
if c.Response.Body != nil && !reflect.DeepEqual(c.Response.Body, received) {
t.Errorf("bad response for request %#v: expected %s, got %s", c.Request, c.Response.Body, received)
}
}
func (c *testClient) ValidateCommon(t *testing.T, err error) {
defer c.server.Close()
if c.Error {
if err == nil {
t.Errorf("error expected for %#v, got none", c.Request)
}
return
}
if err != nil {
t.Errorf("no error expected for %#v, got: %v", c.Request, err)
}
if c.handler.RequestReceived == nil {
t.Errorf("handler had an empty request, %#v", c)
return
}
requestBody := body(c.Request.Body, c.Request.RawBody)
actualQuery := c.handler.RequestReceived.URL.Query()
// We check the query manually, so blank it out so that FakeHandler.ValidateRequest
// won't check it.
c.handler.RequestReceived.URL.RawQuery = ""
c.handler.ValidateRequest(t, path.Join(apiPath, c.Request.Path), c.Request.Method, requestBody)
for key, values := range c.Request.Query {
validator, ok := c.QueryValidator[key]
if !ok {
validator = func(a, b string) bool { return a == b }
}
observed := actualQuery.Get(key)
if !validator(values[0], observed) {
t.Errorf("Unexpected query arg for key: %s. Expected %s, Received %s", key, values[0], observed)
}
}
if c.Request.Header != "" {
if c.handler.RequestReceived.Header.Get(c.Request.Header) == "" {
t.Errorf("header %q not found in request %#v", c.Request.Header, c.handler.RequestReceived)
}
}
if expected, received := requestBody, c.handler.RequestBody; expected != nil && *expected != received {
t.Errorf("bad body for request %#v: expected %s, got %s", c.Request, *expected, received)
}
}
2014-06-09 05:38:45 +00:00
func TestListEmptyPods(t *testing.T) {
2014-10-23 20:55:48 +00:00
ns := api.NamespaceDefault
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "GET", Path: "/pods"},
2014-09-08 01:31:11 +00:00
Response: Response{StatusCode: 200, Body: &api.PodList{}},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
podList, err := c.Setup().Pods(ns).List(labels.Everything())
2014-06-07 11:38:16 +00:00
c.Validate(t, podList, err)
2014-06-06 23:40:48 +00:00
}
2014-06-09 05:38:45 +00:00
func TestListPods(t *testing.T) {
2014-10-23 20:55:48 +00:00
ns := api.NamespaceDefault
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "GET", Path: "/pods"},
2014-06-07 11:38:16 +00:00
Response: Response{StatusCode: 200,
2014-09-08 01:31:11 +00:00
Body: &api.PodList{
2014-06-07 11:38:16 +00:00
Items: []api.Pod{
{
CurrentState: api.PodState{
Status: api.PodRunning,
2014-06-07 11:38:16 +00:00
},
ObjectMeta: api.ObjectMeta{
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
2014-06-07 11:38:16 +00:00
},
},
2014-06-06 23:40:48 +00:00
},
},
},
}
2014-10-23 20:55:48 +00:00
receivedPodList, err := c.Setup().Pods(ns).List(labels.Everything())
2014-06-07 11:38:16 +00:00
c.Validate(t, receivedPodList, err)
2014-06-06 23:40:48 +00:00
}
2014-06-20 16:47:39 +00:00
func validateLabels(a, b string) bool {
sA, _ := labels.ParseSelector(a)
sB, _ := labels.ParseSelector(b)
return sA.String() == sB.String()
}
2014-06-09 05:38:45 +00:00
func TestListPodsLabels(t *testing.T) {
2014-10-23 20:55:48 +00:00
ns := api.NamespaceDefault
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "GET", Path: "/pods", Query: url.Values{"labels": []string{"foo=bar,name=baz"}}},
2014-06-07 11:38:16 +00:00
Response: Response{
StatusCode: 200,
2014-09-08 01:31:11 +00:00
Body: &api.PodList{
2014-06-07 11:38:16 +00:00
Items: []api.Pod{
{
CurrentState: api.PodState{
Status: api.PodRunning,
2014-06-07 11:38:16 +00:00
},
ObjectMeta: api.ObjectMeta{
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
2014-06-07 11:38:16 +00:00
},
},
2014-06-06 23:40:48 +00:00
},
},
},
}
2014-06-20 16:47:39 +00:00
c.Setup()
c.QueryValidator["labels"] = validateLabels
2014-06-23 00:02:48 +00:00
selector := labels.Set{"foo": "bar", "name": "baz"}.AsSelector()
2014-10-23 20:55:48 +00:00
receivedPodList, err := c.Pods(ns).List(selector)
2014-06-07 11:38:16 +00:00
c.Validate(t, receivedPodList, err)
2014-06-06 23:40:48 +00:00
}
2014-06-09 05:38:45 +00:00
func TestGetPod(t *testing.T) {
2014-10-23 20:55:48 +00:00
ns := api.NamespaceDefault
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "GET", Path: "/pods/foo"},
2014-06-07 11:38:16 +00:00
Response: Response{
StatusCode: 200,
2014-09-08 01:31:11 +00:00
Body: &api.Pod{
2014-06-07 11:38:16 +00:00
CurrentState: api.PodState{
Status: api.PodRunning,
2014-06-07 11:38:16 +00:00
},
ObjectMeta: api.ObjectMeta{
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
2014-06-07 11:38:16 +00:00
},
},
2014-06-06 23:40:48 +00:00
},
}
2014-10-23 20:55:48 +00:00
receivedPod, err := c.Setup().Pods(ns).Get("foo")
2014-06-07 11:38:16 +00:00
c.Validate(t, receivedPod, err)
2014-06-06 23:40:48 +00:00
}
2014-06-09 05:38:45 +00:00
func TestDeletePod(t *testing.T) {
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "DELETE", Path: "/pods/foo"},
2014-06-07 11:38:16 +00:00
Response: Response{StatusCode: 200},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
err := c.Setup().Pods(api.NamespaceDefault).Delete("foo")
2014-06-07 11:38:16 +00:00
c.Validate(t, nil, err)
2014-06-06 23:40:48 +00:00
}
2014-06-09 05:38:45 +00:00
func TestCreatePod(t *testing.T) {
2014-09-08 01:31:11 +00:00
requestPod := &api.Pod{
2014-06-09 04:39:57 +00:00
CurrentState: api.PodState{
Status: api.PodRunning,
2014-06-06 23:40:48 +00:00
},
ObjectMeta: api.ObjectMeta{
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
2014-06-06 23:40:48 +00:00
},
}
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "POST", Path: "/pods", Body: requestPod},
2014-06-07 11:38:16 +00:00
Response: Response{
StatusCode: 200,
Body: requestPod,
},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
receivedPod, err := c.Setup().Pods(api.NamespaceDefault).Create(requestPod)
2014-06-07 11:38:16 +00:00
c.Validate(t, receivedPod, err)
2014-06-06 23:40:48 +00:00
}
2014-06-09 05:38:45 +00:00
func TestUpdatePod(t *testing.T) {
2014-09-08 01:31:11 +00:00
requestPod := &api.Pod{
ObjectMeta: api.ObjectMeta{
Name: "foo",
ResourceVersion: "1",
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
},
2014-06-09 04:39:57 +00:00
CurrentState: api.PodState{
Status: api.PodRunning,
2014-06-06 23:40:48 +00:00
},
}
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "PUT", Path: "/pods/foo"},
2014-06-07 11:38:16 +00:00
Response: Response{StatusCode: 200, Body: requestPod},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
receivedPod, err := c.Setup().Pods(api.NamespaceDefault).Update(requestPod)
2014-06-07 11:38:16 +00:00
c.Validate(t, receivedPod, err)
2014-06-06 23:40:48 +00:00
}
func TestListControllers(t *testing.T) {
c := &testClient{
Request: testRequest{Method: "GET", Path: "/replicationControllers"},
Response: Response{StatusCode: 200,
2014-09-08 01:31:11 +00:00
Body: &api.ReplicationControllerList{
Items: []api.ReplicationController{
{
ObjectMeta: api.ObjectMeta{
Name: "foo",
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
},
Spec: api.ReplicationControllerSpec{
Replicas: 2,
Template: &api.PodTemplateSpec{},
},
},
},
},
},
}
2014-10-23 20:55:48 +00:00
receivedControllerList, err := c.Setup().ReplicationControllers(api.NamespaceAll).List(labels.Everything())
c.Validate(t, receivedControllerList, err)
}
2014-06-07 11:38:16 +00:00
func TestGetController(t *testing.T) {
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "GET", Path: "/replicationControllers/foo"},
2014-06-07 11:38:16 +00:00
Response: Response{
StatusCode: 200,
2014-09-08 01:31:11 +00:00
Body: &api.ReplicationController{
ObjectMeta: api.ObjectMeta{
Name: "foo",
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
},
Spec: api.ReplicationControllerSpec{
2014-06-07 11:38:16 +00:00
Replicas: 2,
Template: &api.PodTemplateSpec{},
2014-06-07 11:38:16 +00:00
},
},
},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
receivedController, err := c.Setup().ReplicationControllers(api.NamespaceDefault).Get("foo")
2014-06-07 11:38:16 +00:00
c.Validate(t, receivedController, err)
2014-06-06 23:40:48 +00:00
}
2014-06-07 11:38:16 +00:00
func TestUpdateController(t *testing.T) {
2014-09-08 01:31:11 +00:00
requestController := &api.ReplicationController{
ObjectMeta: api.ObjectMeta{Name: "foo", ResourceVersion: "1"},
2014-06-06 23:40:48 +00:00
}
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "PUT", Path: "/replicationControllers/foo"},
2014-06-07 11:38:16 +00:00
Response: Response{
StatusCode: 200,
2014-09-08 01:31:11 +00:00
Body: &api.ReplicationController{
ObjectMeta: api.ObjectMeta{
Name: "foo",
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
},
Spec: api.ReplicationControllerSpec{
2014-06-07 11:38:16 +00:00
Replicas: 2,
Template: &api.PodTemplateSpec{},
2014-06-07 11:38:16 +00:00
},
},
},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
receivedController, err := c.Setup().ReplicationControllers(api.NamespaceDefault).Update(requestController)
2014-06-07 11:38:16 +00:00
c.Validate(t, receivedController, err)
}
func TestDeleteController(t *testing.T) {
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "DELETE", Path: "/replicationControllers/foo"},
2014-06-07 11:38:16 +00:00
Response: Response{StatusCode: 200},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
err := c.Setup().ReplicationControllers(api.NamespaceDefault).Delete("foo")
2014-06-07 11:38:16 +00:00
c.Validate(t, nil, err)
2014-06-06 23:40:48 +00:00
}
2014-06-07 11:38:16 +00:00
func TestCreateController(t *testing.T) {
2014-09-08 01:31:11 +00:00
requestController := &api.ReplicationController{
ObjectMeta: api.ObjectMeta{Name: "foo"},
2014-06-07 11:38:16 +00:00
}
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "POST", Path: "/replicationControllers", Body: requestController},
2014-06-07 11:38:16 +00:00
Response: Response{
StatusCode: 200,
2014-09-08 01:31:11 +00:00
Body: &api.ReplicationController{
ObjectMeta: api.ObjectMeta{
Name: "foo",
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
},
Spec: api.ReplicationControllerSpec{
2014-06-07 11:38:16 +00:00
Replicas: 2,
Template: &api.PodTemplateSpec{},
2014-06-07 11:38:16 +00:00
},
},
2014-06-06 23:40:48 +00:00
},
}
2014-10-23 20:55:48 +00:00
receivedController, err := c.Setup().ReplicationControllers(api.NamespaceDefault).Create(requestController)
2014-06-07 11:38:16 +00:00
c.Validate(t, receivedController, err)
}
2014-09-08 01:31:11 +00:00
func body(obj runtime.Object, raw *string) *string {
2014-06-07 11:38:16 +00:00
if obj != nil {
bs, _ := latest.Codec.Encode(obj)
2014-06-07 11:38:16 +00:00
body := string(bs)
return &body
2014-06-06 23:40:48 +00:00
}
2014-06-07 11:38:16 +00:00
return raw
}
func TestListServices(t *testing.T) {
c := &testClient{
Request: testRequest{Method: "GET", Path: "/services"},
Response: Response{StatusCode: 200,
2014-09-08 01:31:11 +00:00
Body: &api.ServiceList{
Items: []api.Service{
{
ObjectMeta: api.ObjectMeta{
Name: "name",
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
},
2014-10-30 13:29:11 +00:00
Spec: api.ServiceSpec{
Selector: map[string]string{
"one": "two",
},
},
},
},
},
},
}
2014-10-23 20:55:48 +00:00
receivedServiceList, err := c.Setup().Services(api.NamespaceDefault).List(labels.Everything())
t.Logf("received services: %v %#v", err, receivedServiceList)
c.Validate(t, receivedServiceList, err)
}
func TestListServicesLabels(t *testing.T) {
c := &testClient{
Request: testRequest{Method: "GET", Path: "/services", Query: url.Values{"labels": []string{"foo=bar,name=baz"}}},
Response: Response{StatusCode: 200,
2014-09-08 01:31:11 +00:00
Body: &api.ServiceList{
Items: []api.Service{
{
ObjectMeta: api.ObjectMeta{
Name: "name",
Labels: map[string]string{
"foo": "bar",
"name": "baz",
},
},
2014-10-30 13:29:11 +00:00
Spec: api.ServiceSpec{
Selector: map[string]string{
"one": "two",
},
},
},
},
},
},
}
c.Setup()
c.QueryValidator["labels"] = validateLabels
selector := labels.Set{"foo": "bar", "name": "baz"}.AsSelector()
2014-10-23 20:55:48 +00:00
receivedServiceList, err := c.Services(api.NamespaceDefault).List(selector)
c.Validate(t, receivedServiceList, err)
}
2014-06-07 11:38:16 +00:00
func TestGetService(t *testing.T) {
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "GET", Path: "/services/1"},
Response: Response{StatusCode: 200, Body: &api.Service{ObjectMeta: api.ObjectMeta{Name: "service-1"}}},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
response, err := c.Setup().Services(api.NamespaceDefault).Get("1")
2014-09-08 01:31:11 +00:00
c.Validate(t, response, err)
2014-06-07 11:38:16 +00:00
}
func TestCreateService(t *testing.T) {
c := &testClient{
Request: testRequest{Method: "POST", Path: "/services", Body: &api.Service{ObjectMeta: api.ObjectMeta{Name: "service-1"}}},
Response: Response{StatusCode: 200, Body: &api.Service{ObjectMeta: api.ObjectMeta{Name: "service-1"}}},
}
2014-10-23 20:55:48 +00:00
response, err := c.Setup().Services(api.NamespaceDefault).Create(&api.Service{ObjectMeta: api.ObjectMeta{Name: "service-1"}})
2014-09-08 01:31:11 +00:00
c.Validate(t, response, err)
2014-06-07 11:38:16 +00:00
}
func TestUpdateService(t *testing.T) {
svc := &api.Service{ObjectMeta: api.ObjectMeta{Name: "service-1", ResourceVersion: "1"}}
c := &testClient{
2014-09-08 01:31:11 +00:00
Request: testRequest{Method: "PUT", Path: "/services/service-1", Body: svc},
Response: Response{StatusCode: 200, Body: svc},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
response, err := c.Setup().Services(api.NamespaceDefault).Update(svc)
2014-09-08 01:31:11 +00:00
c.Validate(t, response, err)
2014-06-07 11:38:16 +00:00
}
func TestDeleteService(t *testing.T) {
c := &testClient{
2014-06-22 21:18:01 +00:00
Request: testRequest{Method: "DELETE", Path: "/services/1"},
2014-06-07 11:38:16 +00:00
Response: Response{StatusCode: 200},
2014-06-06 23:40:48 +00:00
}
2014-10-23 20:55:48 +00:00
err := c.Setup().Services(api.NamespaceDefault).Delete("1")
2014-06-07 11:38:16 +00:00
c.Validate(t, nil, err)
}
2014-09-23 00:39:47 +00:00
func TestListEndpooints(t *testing.T) {
c := &testClient{
Request: testRequest{Method: "GET", Path: "/endpoints"},
Response: Response{StatusCode: 200,
Body: &api.EndpointsList{
Items: []api.Endpoints{
{
ObjectMeta: api.ObjectMeta{Name: "endpoint-1"},
Endpoints: []string{"10.245.1.2:8080", "10.245.1.3:8080"},
2014-09-23 00:39:47 +00:00
},
},
},
},
}
2014-10-23 20:55:48 +00:00
receivedEndpointsList, err := c.Setup().Endpoints(api.NamespaceDefault).List(labels.Everything())
2014-09-23 00:39:47 +00:00
c.Validate(t, receivedEndpointsList, err)
}
func TestGetEndpoints(t *testing.T) {
c := &testClient{
Request: testRequest{Method: "GET", Path: "/endpoints/endpoint-1"},
Response: Response{StatusCode: 200, Body: &api.Endpoints{ObjectMeta: api.ObjectMeta{Name: "endpoint-1"}}},
2014-09-23 00:39:47 +00:00
}
2014-10-23 20:55:48 +00:00
response, err := c.Setup().Endpoints(api.NamespaceDefault).Get("endpoint-1")
2014-09-23 00:39:47 +00:00
c.Validate(t, response, err)
}
func TestGetServerVersion(t *testing.T) {
expect := version.Info{
Major: "foo",
Minor: "bar",
GitCommit: "baz",
}
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
output, err := json.Marshal(expect)
if err != nil {
t.Errorf("unexpected encoding error: %v", err)
return
}
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
w.Write(output)
}))
client := NewOrDie(&Config{Host: server.URL})
got, err := client.ServerVersion()
if err != nil {
t.Fatalf("unexpected encoding error: %v", err)
}
if e, a := expect, *got; !reflect.DeepEqual(e, a) {
t.Errorf("expected %v, got %v", e, a)
}
}
func TestListMinions(t *testing.T) {
c := &testClient{
Request: testRequest{Method: "GET", Path: "/minions"},
Response: Response{StatusCode: 200, Body: &api.MinionList{ListMeta: api.ListMeta{ResourceVersion: "1"}}},
}
2014-10-23 20:55:48 +00:00
response, err := c.Setup().Minions().List()
2014-09-08 01:31:11 +00:00
c.Validate(t, response, err)
}
func TestCreateMinion(t *testing.T) {
requestMinion := &api.Minion{
ObjectMeta: api.ObjectMeta{
2014-10-22 17:02:02 +00:00
Name: "minion-1",
},
HostIP: "123.321.456.654",
NodeResources: api.NodeResources{
Capacity: api.ResourceList{
resources.CPU: util.NewIntOrStringFromInt(1000),
resources.Memory: util.NewIntOrStringFromInt(1024 * 1024),
},
},
}
c := &testClient{
Request: testRequest{Method: "POST", Path: "/minions", Body: requestMinion},
Response: Response{
StatusCode: 200,
Body: requestMinion,
},
}
2014-10-23 20:55:48 +00:00
receivedMinion, err := c.Setup().Minions().Create(requestMinion)
c.Validate(t, receivedMinion, err)
}
func TestDeleteMinion(t *testing.T) {
c := &testClient{
Request: testRequest{Method: "DELETE", Path: "/minions/foo"},
Response: Response{StatusCode: 200},
}
2014-10-23 20:55:48 +00:00
err := c.Setup().Minions().Delete("foo")
c.Validate(t, nil, err)
}