mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 05:40:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			194 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			194 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright 2016 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 (
 | |
| 	"testing"
 | |
| 
 | |
| 	"k8s.io/kubernetes/pkg/api"
 | |
| 	"k8s.io/kubernetes/pkg/api/testapi"
 | |
| 	"k8s.io/kubernetes/pkg/apis/extensions"
 | |
| 	"k8s.io/kubernetes/pkg/client/unversioned/testclient/simple"
 | |
| )
 | |
| 
 | |
| func getReplicaSetResourceName() string {
 | |
| 	return "replicasets"
 | |
| }
 | |
| 
 | |
| func TestListReplicaSets(t *testing.T) {
 | |
| 	ns := api.NamespaceAll
 | |
| 	c := &simple.Client{
 | |
| 		Request: simple.Request{
 | |
| 			Method: "GET",
 | |
| 			Path:   testapi.Extensions.ResourcePath(getReplicaSetResourceName(), ns, ""),
 | |
| 		},
 | |
| 		Response: simple.Response{StatusCode: 200,
 | |
| 			Body: &extensions.ReplicaSetList{
 | |
| 				Items: []extensions.ReplicaSet{
 | |
| 					{
 | |
| 						ObjectMeta: api.ObjectMeta{
 | |
| 							Name: "foo",
 | |
| 							Labels: map[string]string{
 | |
| 								"foo":  "bar",
 | |
| 								"name": "baz",
 | |
| 							},
 | |
| 						},
 | |
| 						Spec: extensions.ReplicaSetSpec{
 | |
| 							Replicas: 2,
 | |
| 							Template: api.PodTemplateSpec{},
 | |
| 						},
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 	receivedRSList, err := c.Setup(t).Extensions().ReplicaSets(ns).List(api.ListOptions{})
 | |
| 	c.Validate(t, receivedRSList, err)
 | |
| }
 | |
| 
 | |
| func TestGetReplicaSet(t *testing.T) {
 | |
| 	ns := api.NamespaceDefault
 | |
| 	c := &simple.Client{
 | |
| 		Request: simple.Request{Method: "GET", Path: testapi.Extensions.ResourcePath(getReplicaSetResourceName(), ns, "foo"), Query: simple.BuildQueryValues(nil)},
 | |
| 		Response: simple.Response{
 | |
| 			StatusCode: 200,
 | |
| 			Body: &extensions.ReplicaSet{
 | |
| 				ObjectMeta: api.ObjectMeta{
 | |
| 					Name: "foo",
 | |
| 					Labels: map[string]string{
 | |
| 						"foo":  "bar",
 | |
| 						"name": "baz",
 | |
| 					},
 | |
| 				},
 | |
| 				Spec: extensions.ReplicaSetSpec{
 | |
| 					Replicas: 2,
 | |
| 					Template: api.PodTemplateSpec{},
 | |
| 				},
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 	receivedRS, err := c.Setup(t).Extensions().ReplicaSets(ns).Get("foo")
 | |
| 	c.Validate(t, receivedRS, err)
 | |
| }
 | |
| 
 | |
| func TestGetReplicaSetWithNoName(t *testing.T) {
 | |
| 	ns := api.NamespaceDefault
 | |
| 	c := &simple.Client{Error: true}
 | |
| 	receivedPod, err := c.Setup(t).Extensions().ReplicaSets(ns).Get("")
 | |
| 	if (err != nil) && (err.Error() != simple.NameRequiredError) {
 | |
| 		t.Errorf("Expected error: %v, but got %v", simple.NameRequiredError, err)
 | |
| 	}
 | |
| 
 | |
| 	c.Validate(t, receivedPod, err)
 | |
| }
 | |
| 
 | |
| func TestUpdateReplicaSet(t *testing.T) {
 | |
| 	ns := api.NamespaceDefault
 | |
| 	requestRS := &extensions.ReplicaSet{
 | |
| 		ObjectMeta: api.ObjectMeta{Name: "foo", ResourceVersion: "1"},
 | |
| 	}
 | |
| 	c := &simple.Client{
 | |
| 		Request: simple.Request{Method: "PUT", Path: testapi.Extensions.ResourcePath(getReplicaSetResourceName(), ns, "foo"), Query: simple.BuildQueryValues(nil)},
 | |
| 		Response: simple.Response{
 | |
| 			StatusCode: 200,
 | |
| 			Body: &extensions.ReplicaSet{
 | |
| 				ObjectMeta: api.ObjectMeta{
 | |
| 					Name: "foo",
 | |
| 					Labels: map[string]string{
 | |
| 						"foo":  "bar",
 | |
| 						"name": "baz",
 | |
| 					},
 | |
| 				},
 | |
| 				Spec: extensions.ReplicaSetSpec{
 | |
| 					Replicas: 2,
 | |
| 					Template: api.PodTemplateSpec{},
 | |
| 				},
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 	receivedRS, err := c.Setup(t).Extensions().ReplicaSets(ns).Update(requestRS)
 | |
| 	c.Validate(t, receivedRS, err)
 | |
| }
 | |
| 
 | |
| func TestUpdateStatusReplicaSet(t *testing.T) {
 | |
| 	ns := api.NamespaceDefault
 | |
| 	requestRS := &extensions.ReplicaSet{
 | |
| 		ObjectMeta: api.ObjectMeta{Name: "foo", ResourceVersion: "1"},
 | |
| 	}
 | |
| 	c := &simple.Client{
 | |
| 		Request: simple.Request{Method: "PUT", Path: testapi.Extensions.ResourcePath(getReplicaSetResourceName(), ns, "foo") + "/status", Query: simple.BuildQueryValues(nil)},
 | |
| 		Response: simple.Response{
 | |
| 			StatusCode: 200,
 | |
| 			Body: &extensions.ReplicaSet{
 | |
| 				ObjectMeta: api.ObjectMeta{
 | |
| 					Name: "foo",
 | |
| 					Labels: map[string]string{
 | |
| 						"foo":  "bar",
 | |
| 						"name": "baz",
 | |
| 					},
 | |
| 				},
 | |
| 				Spec: extensions.ReplicaSetSpec{
 | |
| 					Replicas: 2,
 | |
| 					Template: api.PodTemplateSpec{},
 | |
| 				},
 | |
| 				Status: extensions.ReplicaSetStatus{
 | |
| 					Replicas: 2,
 | |
| 				},
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 	receivedRS, err := c.Setup(t).Extensions().ReplicaSets(ns).UpdateStatus(requestRS)
 | |
| 	c.Validate(t, receivedRS, err)
 | |
| }
 | |
| func TestDeleteReplicaSet(t *testing.T) {
 | |
| 	ns := api.NamespaceDefault
 | |
| 	c := &simple.Client{
 | |
| 		Request:  simple.Request{Method: "DELETE", Path: testapi.Extensions.ResourcePath(getReplicaSetResourceName(), ns, "foo"), Query: simple.BuildQueryValues(nil)},
 | |
| 		Response: simple.Response{StatusCode: 200},
 | |
| 	}
 | |
| 	err := c.Setup(t).Extensions().ReplicaSets(ns).Delete("foo", nil)
 | |
| 	c.Validate(t, nil, err)
 | |
| }
 | |
| 
 | |
| func TestCreateReplicaSet(t *testing.T) {
 | |
| 	ns := api.NamespaceDefault
 | |
| 	requestRS := &extensions.ReplicaSet{
 | |
| 		ObjectMeta: api.ObjectMeta{Name: "foo"},
 | |
| 	}
 | |
| 	c := &simple.Client{
 | |
| 		Request: simple.Request{Method: "POST", Path: testapi.Extensions.ResourcePath(getReplicaSetResourceName(), ns, ""), Body: requestRS, Query: simple.BuildQueryValues(nil)},
 | |
| 		Response: simple.Response{
 | |
| 			StatusCode: 200,
 | |
| 			Body: &extensions.ReplicaSet{
 | |
| 				ObjectMeta: api.ObjectMeta{
 | |
| 					Name: "foo",
 | |
| 					Labels: map[string]string{
 | |
| 						"foo":  "bar",
 | |
| 						"name": "baz",
 | |
| 					},
 | |
| 				},
 | |
| 				Spec: extensions.ReplicaSetSpec{
 | |
| 					Replicas: 2,
 | |
| 					Template: api.PodTemplateSpec{},
 | |
| 				},
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 	receivedRS, err := c.Setup(t).Extensions().ReplicaSets(ns).Create(requestRS)
 | |
| 	c.Validate(t, receivedRS, err)
 | |
| }
 |