mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	Instead of saying "Google Inc." (which is not always correct) say "The Kubernetes Authors", which is generic.
		
			
				
	
	
		
			299 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			299 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2014 The Kubernetes Authors 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 (
 | 
						|
	"net/http"
 | 
						|
	"net/http/httptest"
 | 
						|
	"reflect"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/api/latest"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/api/testapi"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
 | 
						|
)
 | 
						|
 | 
						|
func TestSetsCodec(t *testing.T) {
 | 
						|
	testCases := map[string]struct {
 | 
						|
		Err    bool
 | 
						|
		Prefix string
 | 
						|
		Codec  runtime.Codec
 | 
						|
	}{
 | 
						|
		testapi.Version(): {false, "/api/" + testapi.Version() + "/", testapi.Codec()},
 | 
						|
		"invalidVersion":  {true, "", nil},
 | 
						|
	}
 | 
						|
	for version, expected := range testCases {
 | 
						|
		client, err := New(&Config{Host: "127.0.0.1", Version: version})
 | 
						|
		switch {
 | 
						|
		case err == nil && expected.Err:
 | 
						|
			t.Errorf("expected error but was nil")
 | 
						|
			continue
 | 
						|
		case err != nil && !expected.Err:
 | 
						|
			t.Errorf("unexpected error %v", err)
 | 
						|
			continue
 | 
						|
		case err != nil:
 | 
						|
			continue
 | 
						|
		}
 | 
						|
		if e, a := expected.Prefix, client.RESTClient.baseURL.Path; e != a {
 | 
						|
			t.Errorf("expected %#v, got %#v", e, a)
 | 
						|
		}
 | 
						|
		if e, a := expected.Codec, client.RESTClient.Codec; e != a {
 | 
						|
			t.Errorf("expected %#v, got %#v", e, a)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestRESTClientRequires(t *testing.T) {
 | 
						|
	if _, err := RESTClientFor(&Config{Host: "127.0.0.1", Version: "", Codec: testapi.Codec()}); err == nil {
 | 
						|
		t.Errorf("unexpected non-error")
 | 
						|
	}
 | 
						|
	if _, err := RESTClientFor(&Config{Host: "127.0.0.1", Version: testapi.Version()}); err == nil {
 | 
						|
		t.Errorf("unexpected non-error")
 | 
						|
	}
 | 
						|
	if _, err := RESTClientFor(&Config{Host: "127.0.0.1", Version: testapi.Version(), Codec: testapi.Codec()}); err != nil {
 | 
						|
		t.Errorf("unexpected error: %v", err)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestValidatesHostParameter(t *testing.T) {
 | 
						|
	testCases := []struct {
 | 
						|
		Host   string
 | 
						|
		Prefix string
 | 
						|
 | 
						|
		URL string
 | 
						|
		Err bool
 | 
						|
	}{
 | 
						|
		{"127.0.0.1", "", "http://127.0.0.1/" + testapi.Version() + "/", false},
 | 
						|
		{"127.0.0.1:8080", "", "http://127.0.0.1:8080/" + testapi.Version() + "/", false},
 | 
						|
		{"foo.bar.com", "", "http://foo.bar.com/" + testapi.Version() + "/", false},
 | 
						|
		{"http://host/prefix", "", "http://host/prefix/" + testapi.Version() + "/", false},
 | 
						|
		{"http://host", "", "http://host/" + testapi.Version() + "/", false},
 | 
						|
		{"http://host", "/", "http://host/" + testapi.Version() + "/", false},
 | 
						|
		{"http://host", "/other", "http://host/other/" + testapi.Version() + "/", false},
 | 
						|
		{"host/server", "", "", true},
 | 
						|
	}
 | 
						|
	for i, testCase := range testCases {
 | 
						|
		c, err := RESTClientFor(&Config{Host: testCase.Host, Prefix: testCase.Prefix, Version: testapi.Version(), Codec: testapi.Codec()})
 | 
						|
		switch {
 | 
						|
		case err == nil && testCase.Err:
 | 
						|
			t.Errorf("expected error but was nil")
 | 
						|
			continue
 | 
						|
		case err != nil && !testCase.Err:
 | 
						|
			t.Errorf("unexpected error %v", err)
 | 
						|
			continue
 | 
						|
		case err != nil:
 | 
						|
			continue
 | 
						|
		}
 | 
						|
		if e, a := testCase.URL, c.baseURL.String(); e != a {
 | 
						|
			t.Errorf("%d: expected host %s, got %s", i, e, a)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestDoRequestBearer(t *testing.T) {
 | 
						|
	status := &api.Status{Status: api.StatusFailure}
 | 
						|
	expectedBody, _ := latest.Codec.Encode(status)
 | 
						|
	fakeHandler := util.FakeHandler{
 | 
						|
		StatusCode:   400,
 | 
						|
		ResponseBody: string(expectedBody),
 | 
						|
		T:            t,
 | 
						|
	}
 | 
						|
	testServer := httptest.NewServer(&fakeHandler)
 | 
						|
	defer testServer.Close()
 | 
						|
	request, _ := http.NewRequest("GET", testServer.URL, nil)
 | 
						|
	c, err := RESTClientFor(&Config{
 | 
						|
		Host:           testServer.URL,
 | 
						|
		Version:        testapi.Version(),
 | 
						|
		Codec:          testapi.Codec(),
 | 
						|
		LegacyBehavior: true,
 | 
						|
 | 
						|
		BearerToken: "test",
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("unexpected error: %v", err)
 | 
						|
	}
 | 
						|
	err = c.Get().Do().Error()
 | 
						|
	if err == nil {
 | 
						|
		t.Fatalf("unexpected non-error: %v", err)
 | 
						|
	}
 | 
						|
	if fakeHandler.RequestReceived.Header.Get("Authorization") != "Bearer test" {
 | 
						|
		t.Errorf("Request is missing authorization header: %#v", *request)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestDoRequestWithoutPassword(t *testing.T) {
 | 
						|
	status := &api.Status{Status: api.StatusFailure}
 | 
						|
	expectedBody, _ := latest.Codec.Encode(status)
 | 
						|
	fakeHandler := util.FakeHandler{
 | 
						|
		StatusCode:   400,
 | 
						|
		ResponseBody: string(expectedBody),
 | 
						|
		T:            t,
 | 
						|
	}
 | 
						|
	testServer := httptest.NewServer(&fakeHandler)
 | 
						|
	defer testServer.Close()
 | 
						|
	c, err := RESTClientFor(&Config{
 | 
						|
		Host:           testServer.URL,
 | 
						|
		Version:        testapi.Version(),
 | 
						|
		Codec:          testapi.Codec(),
 | 
						|
		LegacyBehavior: true,
 | 
						|
 | 
						|
		Username: "test",
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("unexpected error: %v", err)
 | 
						|
	}
 | 
						|
	body, err := c.Get().Prefix("test").Do().Raw()
 | 
						|
	if err == nil {
 | 
						|
		t.Fatalf("Unexpected non-error")
 | 
						|
	}
 | 
						|
	if fakeHandler.RequestReceived.Header["Authorization"] == nil {
 | 
						|
		t.Errorf("Request is missing authorization header: %#v", fakeHandler.RequestReceived)
 | 
						|
	}
 | 
						|
	se, ok := err.(APIStatus)
 | 
						|
	if !ok {
 | 
						|
		t.Fatalf("Unexpected kind of error: %#v", err)
 | 
						|
	}
 | 
						|
	if !reflect.DeepEqual(se.Status(), *status) {
 | 
						|
		t.Errorf("Unexpected status: %#v %#v", se.Status(), status)
 | 
						|
	}
 | 
						|
	if body != nil {
 | 
						|
		t.Errorf("Expected nil body, but saw: '%s'", string(body))
 | 
						|
	}
 | 
						|
	fakeHandler.ValidateRequest(t, "/"+testapi.Version()+"/test", "GET", nil)
 | 
						|
}
 | 
						|
 | 
						|
func TestDoRequestSuccess(t *testing.T) {
 | 
						|
	status := &api.Status{Status: api.StatusSuccess}
 | 
						|
	expectedBody, _ := latest.Codec.Encode(status)
 | 
						|
	fakeHandler := util.FakeHandler{
 | 
						|
		StatusCode:   200,
 | 
						|
		ResponseBody: string(expectedBody),
 | 
						|
		T:            t,
 | 
						|
	}
 | 
						|
	testServer := httptest.NewServer(&fakeHandler)
 | 
						|
	defer testServer.Close()
 | 
						|
	c, err := RESTClientFor(&Config{
 | 
						|
		Host:           testServer.URL,
 | 
						|
		Version:        testapi.Version(),
 | 
						|
		Codec:          testapi.Codec(),
 | 
						|
		LegacyBehavior: true,
 | 
						|
 | 
						|
		Username: "user",
 | 
						|
		Password: "pass",
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("unexpected error: %v", err)
 | 
						|
	}
 | 
						|
	body, err := c.Get().Prefix("test").Do().Raw()
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("unexpected error: %v", err)
 | 
						|
	}
 | 
						|
	if fakeHandler.RequestReceived.Header["Authorization"] == nil {
 | 
						|
		t.Errorf("Request is missing authorization header: %#v", fakeHandler.RequestReceived)
 | 
						|
	}
 | 
						|
	statusOut, err := latest.Codec.Decode(body)
 | 
						|
	if err != nil {
 | 
						|
		t.Errorf("Unexpected error %#v", err)
 | 
						|
	}
 | 
						|
	if !reflect.DeepEqual(status, statusOut) {
 | 
						|
		t.Errorf("Unexpected mis-match. Expected %#v.  Saw %#v", status, statusOut)
 | 
						|
	}
 | 
						|
	fakeHandler.ValidateRequest(t, "/"+testapi.Version()+"/test", "GET", nil)
 | 
						|
}
 | 
						|
 | 
						|
func TestDoRequestFailed(t *testing.T) {
 | 
						|
	status := &api.Status{
 | 
						|
		Code:    http.StatusNotFound,
 | 
						|
		Status:  api.StatusFailure,
 | 
						|
		Reason:  api.StatusReasonNotFound,
 | 
						|
		Message: " \"\" not found",
 | 
						|
		Details: &api.StatusDetails{},
 | 
						|
	}
 | 
						|
	expectedBody, _ := latest.Codec.Encode(status)
 | 
						|
	fakeHandler := util.FakeHandler{
 | 
						|
		StatusCode:   404,
 | 
						|
		ResponseBody: string(expectedBody),
 | 
						|
		T:            t,
 | 
						|
	}
 | 
						|
	testServer := httptest.NewServer(&fakeHandler)
 | 
						|
	defer testServer.Close()
 | 
						|
	c, err := RESTClientFor(&Config{
 | 
						|
		Host:           testServer.URL,
 | 
						|
		Version:        testapi.Version(),
 | 
						|
		Codec:          testapi.Codec(),
 | 
						|
		LegacyBehavior: true,
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("unexpected error: %v", err)
 | 
						|
	}
 | 
						|
	body, err := c.Get().Do().Raw()
 | 
						|
	if err == nil || body != nil {
 | 
						|
		t.Errorf("unexpected non-error: %#v", body)
 | 
						|
	}
 | 
						|
	ss, ok := err.(APIStatus)
 | 
						|
	if !ok {
 | 
						|
		t.Errorf("unexpected error type %v", err)
 | 
						|
	}
 | 
						|
	actual := ss.Status()
 | 
						|
	if !reflect.DeepEqual(status, &actual) {
 | 
						|
		t.Errorf("Unexpected mis-match: %s", util.ObjectDiff(status, &actual))
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestDoRequestCreated(t *testing.T) {
 | 
						|
	status := &api.Status{Status: api.StatusSuccess}
 | 
						|
	expectedBody, _ := latest.Codec.Encode(status)
 | 
						|
	fakeHandler := util.FakeHandler{
 | 
						|
		StatusCode:   201,
 | 
						|
		ResponseBody: string(expectedBody),
 | 
						|
		T:            t,
 | 
						|
	}
 | 
						|
	testServer := httptest.NewServer(&fakeHandler)
 | 
						|
	defer testServer.Close()
 | 
						|
	c, err := RESTClientFor(&Config{
 | 
						|
		Host:           testServer.URL,
 | 
						|
		Version:        testapi.Version(),
 | 
						|
		Codec:          testapi.Codec(),
 | 
						|
		LegacyBehavior: true,
 | 
						|
 | 
						|
		Username: "user",
 | 
						|
		Password: "pass",
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("unexpected error: %v", err)
 | 
						|
	}
 | 
						|
	created := false
 | 
						|
	body, err := c.Get().Prefix("test").Do().WasCreated(&created).Raw()
 | 
						|
	if err != nil {
 | 
						|
		t.Errorf("Unexpected error %#v", err)
 | 
						|
	}
 | 
						|
	if !created {
 | 
						|
		t.Errorf("Expected object to be created")
 | 
						|
	}
 | 
						|
	statusOut, err := latest.Codec.Decode(body)
 | 
						|
	if err != nil {
 | 
						|
		t.Errorf("Unexpected error %#v", err)
 | 
						|
	}
 | 
						|
	if !reflect.DeepEqual(status, statusOut) {
 | 
						|
		t.Errorf("Unexpected mis-match. Expected %#v.  Saw %#v", status, statusOut)
 | 
						|
	}
 | 
						|
	fakeHandler.ValidateRequest(t, "/"+testapi.Version()+"/test", "GET", nil)
 | 
						|
}
 |