123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /*
- Copyright 2015 The Kubernetes Authors.
- 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 unversioned_test
- import (
- "net/url"
- "testing"
- "k8s.io/kubernetes/pkg/api"
- "k8s.io/kubernetes/pkg/api/resource"
- "k8s.io/kubernetes/pkg/api/testapi"
- "k8s.io/kubernetes/pkg/api/unversioned"
- "k8s.io/kubernetes/pkg/client/unversioned/testclient/simple"
- "k8s.io/kubernetes/pkg/labels"
- )
- func getNodesResourceName() string {
- return "nodes"
- }
- func TestListNodes(t *testing.T) {
- c := &simple.Client{
- Request: simple.Request{
- Method: "GET",
- Path: testapi.Default.ResourcePath(getNodesResourceName(), "", ""),
- },
- Response: simple.Response{StatusCode: 200, Body: &api.NodeList{ListMeta: unversioned.ListMeta{ResourceVersion: "1"}}},
- }
- response, err := c.Setup(t).Nodes().List(api.ListOptions{})
- defer c.Close()
- c.Validate(t, response, err)
- }
- func TestListNodesLabels(t *testing.T) {
- labelSelectorQueryParamName := unversioned.LabelSelectorQueryParam(testapi.Default.GroupVersion().String())
- c := &simple.Client{
- Request: simple.Request{
- Method: "GET",
- Path: testapi.Default.ResourcePath(getNodesResourceName(), "", ""),
- Query: simple.BuildQueryValues(url.Values{labelSelectorQueryParamName: []string{"foo=bar,name=baz"}})},
- Response: simple.Response{
- StatusCode: 200,
- Body: &api.NodeList{
- Items: []api.Node{
- {
- ObjectMeta: api.ObjectMeta{
- Labels: map[string]string{
- "foo": "bar",
- "name": "baz",
- },
- },
- },
- },
- },
- },
- }
- c.Setup(t)
- defer c.Close()
- c.QueryValidator[labelSelectorQueryParamName] = simple.ValidateLabels
- selector := labels.Set{"foo": "bar", "name": "baz"}.AsSelector()
- options := api.ListOptions{LabelSelector: selector}
- receivedNodeList, err := c.Nodes().List(options)
- c.Validate(t, receivedNodeList, err)
- }
- func TestGetNode(t *testing.T) {
- c := &simple.Client{
- Request: simple.Request{
- Method: "GET",
- Path: testapi.Default.ResourcePath(getNodesResourceName(), "", "1"),
- },
- Response: simple.Response{StatusCode: 200, Body: &api.Node{ObjectMeta: api.ObjectMeta{Name: "node-1"}}},
- }
- response, err := c.Setup(t).Nodes().Get("1")
- defer c.Close()
- c.Validate(t, response, err)
- }
- func TestGetNodeWithNoName(t *testing.T) {
- c := &simple.Client{Error: true}
- receivedNode, err := c.Setup(t).Nodes().Get("")
- defer c.Close()
- if (err != nil) && (err.Error() != simple.NameRequiredError) {
- t.Errorf("Expected error: %v, but got %v", simple.NameRequiredError, err)
- }
- c.Validate(t, receivedNode, err)
- }
- func TestCreateNode(t *testing.T) {
- requestNode := &api.Node{
- ObjectMeta: api.ObjectMeta{
- Name: "node-1",
- },
- Status: api.NodeStatus{
- Capacity: api.ResourceList{
- api.ResourceCPU: resource.MustParse("1000m"),
- api.ResourceMemory: resource.MustParse("1Mi"),
- },
- },
- Spec: api.NodeSpec{
- Unschedulable: false,
- },
- }
- c := &simple.Client{
- Request: simple.Request{
- Method: "POST",
- Path: testapi.Default.ResourcePath(getNodesResourceName(), "", ""),
- Body: requestNode},
- Response: simple.Response{
- StatusCode: 200,
- Body: requestNode,
- },
- }
- receivedNode, err := c.Setup(t).Nodes().Create(requestNode)
- defer c.Close()
- c.Validate(t, receivedNode, err)
- }
- func TestDeleteNode(t *testing.T) {
- c := &simple.Client{
- Request: simple.Request{
- Method: "DELETE",
- Path: testapi.Default.ResourcePath(getNodesResourceName(), "", "foo"),
- },
- Response: simple.Response{StatusCode: 200},
- }
- err := c.Setup(t).Nodes().Delete("foo")
- defer c.Close()
- c.Validate(t, nil, err)
- }
- func TestUpdateNode(t *testing.T) {
- requestNode := &api.Node{
- ObjectMeta: api.ObjectMeta{
- Name: "foo",
- ResourceVersion: "1",
- },
- Status: api.NodeStatus{
- Capacity: api.ResourceList{
- api.ResourceCPU: resource.MustParse("1000m"),
- api.ResourceMemory: resource.MustParse("1Mi"),
- },
- },
- Spec: api.NodeSpec{
- Unschedulable: true,
- },
- }
- c := &simple.Client{
- Request: simple.Request{
- Method: "PUT",
- Path: testapi.Default.ResourcePath(getNodesResourceName(), "", "foo"),
- },
- Response: simple.Response{StatusCode: 200, Body: requestNode},
- }
- response, err := c.Setup(t).Nodes().Update(requestNode)
- defer c.Close()
- c.Validate(t, response, err)
- }
|