
RESTClient is an abstraction on top of arbitrary HTTP endpoints that follow the Kubernetes API conventions. Refactored RESTClientFor so that assumptions that are Kube specific happen outside of that method (so others can reuse the RESTClient). Added more validation to client.New to ensure clients give good input. Exposed APIVersion on RESTClient as a method so that wrapper code (code that adds typed / structured methods over rest endpoints like client.Client) can more easily make decisions about what APIVersion it is running under.
347 lines
9.7 KiB
Go
347 lines
9.7 KiB
Go
/*
|
|
Copyright 2014 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 (
|
|
"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/api/v1beta1"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/v1beta2"
|
|
"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
|
|
}{
|
|
"v1beta1": {false, "/api/v1beta1/", v1beta1.Codec},
|
|
"": {false, "/api/v1beta1/", v1beta1.Codec},
|
|
"v1beta2": {false, "/api/v1beta2/", v1beta2.Codec},
|
|
"v1beta3": {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 TestSetDefaults(t *testing.T) {
|
|
testCases := []struct {
|
|
Config Config
|
|
After Config
|
|
Err bool
|
|
}{
|
|
{
|
|
Config{},
|
|
Config{
|
|
Prefix: "/api",
|
|
Version: latest.Version,
|
|
Codec: latest.Codec,
|
|
LegacyBehavior: (latest.Version == "v1beta1" || latest.Version == "v1beta2"),
|
|
},
|
|
false,
|
|
},
|
|
{
|
|
Config{
|
|
Version: "not_an_api",
|
|
},
|
|
Config{},
|
|
true,
|
|
},
|
|
}
|
|
for _, testCase := range testCases {
|
|
val := &testCase.Config
|
|
err := SetKubernetesDefaults(val)
|
|
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 *val != testCase.After {
|
|
t.Errorf("unexpected result object: %#v", val)
|
|
}
|
|
}
|
|
}
|
|
|
|
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: "v1beta1"}); 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/v1beta1/", false},
|
|
{"127.0.0.1:8080", "", "http://127.0.0.1:8080/v1beta1/", false},
|
|
{"foo.bar.com", "", "http://foo.bar.com/v1beta1/", false},
|
|
{"http://host/prefix", "", "http://host/prefix/v1beta1/", false},
|
|
{"http://host", "", "http://host/v1beta1/", false},
|
|
{"http://host", "/", "http://host/v1beta1/", false},
|
|
{"http://host", "/other", "http://host/other/v1beta1/", false},
|
|
{"host/server", "", "", true},
|
|
}
|
|
for i, testCase := range testCases {
|
|
c, err := RESTClientFor(&Config{Host: testCase.Host, Prefix: testCase.Prefix, Version: "v1beta1", 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.StatusWorking}
|
|
expectedBody, _ := latest.Codec.Encode(status)
|
|
fakeHandler := util.FakeHandler{
|
|
StatusCode: 202,
|
|
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 TestDoRequestAccepted(t *testing.T) {
|
|
status := &api.Status{Status: api.StatusWorking}
|
|
expectedBody, _ := latest.Codec.Encode(status)
|
|
fakeHandler := util.FakeHandler{
|
|
StatusCode: 202,
|
|
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 TestDoRequestAcceptedSuccess(t *testing.T) {
|
|
status := &api.Status{Status: api.StatusSuccess}
|
|
expectedBody, _ := latest.Codec.Encode(status)
|
|
fakeHandler := util.FakeHandler{
|
|
StatusCode: 202,
|
|
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{Status: api.StatusFailure, Reason: api.StatusReasonInvalid, Details: &api.StatusDetails{ID: "test", Kind: "test"}}
|
|
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. Expected %#v. Saw %#v", 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)
|
|
}
|
|
|
|
func TestDefaultPoll(t *testing.T) {
|
|
c := &RESTClient{PollPeriod: 0}
|
|
if req, ok := c.DefaultPoll("test"); req != nil || ok {
|
|
t.Errorf("expected nil request and not poll")
|
|
}
|
|
}
|