mirror of https://github.com/k3s-io/k3s
167 lines
4.6 KiB
Go
167 lines
4.6 KiB
Go
/*
|
|
Copyright 2015 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.
|
|
*/
|
|
|
|
package client
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/testapi"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
|
)
|
|
|
|
func getRCResourceName() string {
|
|
if api.PreV1Beta3(testapi.Version()) {
|
|
return "replicationControllers"
|
|
}
|
|
return "replicationcontrollers"
|
|
}
|
|
|
|
func TestListControllers(t *testing.T) {
|
|
ns := api.NamespaceAll
|
|
c := &testClient{
|
|
Request: testRequest{
|
|
Method: "GET",
|
|
Path: testapi.ResourcePath(getRCResourceName(), ns, ""),
|
|
},
|
|
Response: Response{StatusCode: 200,
|
|
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{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
receivedControllerList, err := c.Setup().ReplicationControllers(ns).List(labels.Everything())
|
|
c.Validate(t, receivedControllerList, err)
|
|
|
|
}
|
|
|
|
func TestGetController(t *testing.T) {
|
|
ns := api.NamespaceDefault
|
|
c := &testClient{
|
|
Request: testRequest{Method: "GET", Path: testapi.ResourcePath(getRCResourceName(), ns, "foo"), Query: buildQueryValues(ns, nil)},
|
|
Response: Response{
|
|
StatusCode: 200,
|
|
Body: &api.ReplicationController{
|
|
ObjectMeta: api.ObjectMeta{
|
|
Name: "foo",
|
|
Labels: map[string]string{
|
|
"foo": "bar",
|
|
"name": "baz",
|
|
},
|
|
},
|
|
Spec: api.ReplicationControllerSpec{
|
|
Replicas: 2,
|
|
Template: &api.PodTemplateSpec{},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
receivedController, err := c.Setup().ReplicationControllers(ns).Get("foo")
|
|
c.Validate(t, receivedController, err)
|
|
}
|
|
|
|
func TestGetControllerWithNoName(t *testing.T) {
|
|
ns := api.NamespaceDefault
|
|
c := &testClient{Error: true}
|
|
receivedPod, err := c.Setup().ReplicationControllers(ns).Get("")
|
|
if (err != nil) && (err.Error() != nameRequiredError) {
|
|
t.Errorf("Expected error: %v, but got %v", nameRequiredError, err)
|
|
}
|
|
|
|
c.Validate(t, receivedPod, err)
|
|
}
|
|
|
|
func TestUpdateController(t *testing.T) {
|
|
ns := api.NamespaceDefault
|
|
requestController := &api.ReplicationController{
|
|
ObjectMeta: api.ObjectMeta{Name: "foo", ResourceVersion: "1"},
|
|
}
|
|
c := &testClient{
|
|
Request: testRequest{Method: "PUT", Path: testapi.ResourcePath(getRCResourceName(), ns, "foo"), Query: buildQueryValues(ns, nil)},
|
|
Response: Response{
|
|
StatusCode: 200,
|
|
Body: &api.ReplicationController{
|
|
ObjectMeta: api.ObjectMeta{
|
|
Name: "foo",
|
|
Labels: map[string]string{
|
|
"foo": "bar",
|
|
"name": "baz",
|
|
},
|
|
},
|
|
Spec: api.ReplicationControllerSpec{
|
|
Replicas: 2,
|
|
Template: &api.PodTemplateSpec{},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
receivedController, err := c.Setup().ReplicationControllers(ns).Update(requestController)
|
|
c.Validate(t, receivedController, err)
|
|
}
|
|
|
|
func TestDeleteController(t *testing.T) {
|
|
ns := api.NamespaceDefault
|
|
c := &testClient{
|
|
Request: testRequest{Method: "DELETE", Path: testapi.ResourcePath(getRCResourceName(), ns, "foo"), Query: buildQueryValues(ns, nil)},
|
|
Response: Response{StatusCode: 200},
|
|
}
|
|
err := c.Setup().ReplicationControllers(ns).Delete("foo")
|
|
c.Validate(t, nil, err)
|
|
}
|
|
|
|
func TestCreateController(t *testing.T) {
|
|
ns := api.NamespaceDefault
|
|
requestController := &api.ReplicationController{
|
|
ObjectMeta: api.ObjectMeta{Name: "foo"},
|
|
}
|
|
c := &testClient{
|
|
Request: testRequest{Method: "POST", Path: testapi.ResourcePath(getRCResourceName(), ns, ""), Body: requestController, Query: buildQueryValues(ns, nil)},
|
|
Response: Response{
|
|
StatusCode: 200,
|
|
Body: &api.ReplicationController{
|
|
ObjectMeta: api.ObjectMeta{
|
|
Name: "foo",
|
|
Labels: map[string]string{
|
|
"foo": "bar",
|
|
"name": "baz",
|
|
},
|
|
},
|
|
Spec: api.ReplicationControllerSpec{
|
|
Replicas: 2,
|
|
Template: &api.PodTemplateSpec{},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
receivedController, err := c.Setup().ReplicationControllers(ns).Create(requestController)
|
|
c.Validate(t, receivedController, err)
|
|
}
|