mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 12:18:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2017 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 cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"io/ioutil"
 | 
						|
	"net/http"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"k8s.io/apimachinery/pkg/runtime/schema"
 | 
						|
	restclient "k8s.io/client-go/rest"
 | 
						|
	"k8s.io/client-go/rest/fake"
 | 
						|
	"k8s.io/kubernetes/pkg/api/legacyscheme"
 | 
						|
	cmdtesting "k8s.io/kubernetes/pkg/kubectl/cmd/testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestCreatePriorityClass(t *testing.T) {
 | 
						|
	pcName := "my-pc"
 | 
						|
	tf := cmdtesting.NewTestFactory()
 | 
						|
	defer tf.Cleanup()
 | 
						|
 | 
						|
	ns := legacyscheme.Codecs
 | 
						|
 | 
						|
	tf.Client = &fake.RESTClient{
 | 
						|
		GroupVersion:         schema.GroupVersion{Group: "scheduling.k8s.io", Version: "v1alpha1"},
 | 
						|
		NegotiatedSerializer: ns,
 | 
						|
		Client: fake.CreateHTTPClient(func(req *http.Request) (*http.Response, error) {
 | 
						|
			return &http.Response{
 | 
						|
				StatusCode: http.StatusOK,
 | 
						|
				Body:       ioutil.NopCloser(&bytes.Buffer{}),
 | 
						|
			}, nil
 | 
						|
		}),
 | 
						|
	}
 | 
						|
	tf.ClientConfigVal = &restclient.Config{}
 | 
						|
	buf := bytes.NewBuffer([]byte{})
 | 
						|
 | 
						|
	cmd := NewCmdCreatePriorityClass(tf, buf)
 | 
						|
	cmd.Flags().Set("value", "1000")
 | 
						|
	cmd.Flags().Set("global-default", "true")
 | 
						|
	cmd.Flags().Set("description", "my priority")
 | 
						|
	cmd.Flags().Set("dry-run", "true")
 | 
						|
	cmd.Flags().Set("output", "name")
 | 
						|
	CreatePriorityClass(tf, buf, cmd, []string{pcName})
 | 
						|
	expectedOutput := "priorityclass.scheduling.k8s.io/" + pcName + "\n"
 | 
						|
	if buf.String() != expectedOutput {
 | 
						|
		t.Errorf("expected output: %s, but got: %s", expectedOutput, buf.String())
 | 
						|
	}
 | 
						|
}
 |