2014-06-06 23:40:48 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2014-06-06 23:40:48 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2014-06-23 18:32:11 +00:00
|
|
|
|
2014-06-06 23:40:48 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"net/url"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2014-07-01 22:35:56 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
2015-01-25 03:22:18 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/probe"
|
2014-06-06 23:40:48 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
|
|
|
)
|
|
|
|
|
2014-10-10 22:19:23 +00:00
|
|
|
func TestHTTPKubeletClient(t *testing.T) {
|
2015-01-14 02:11:24 +00:00
|
|
|
expectObj := api.PodStatusResult{
|
|
|
|
Status: api.PodStatus{
|
2015-03-25 11:09:35 +00:00
|
|
|
ContainerStatuses: []api.ContainerStatus{
|
|
|
|
{Name: "myID1"},
|
|
|
|
{Name: "myID2"},
|
2015-01-14 02:11:24 +00:00
|
|
|
},
|
2014-12-15 17:29:04 +00:00
|
|
|
},
|
2014-07-01 22:35:56 +00:00
|
|
|
}
|
2014-07-01 02:46:10 +00:00
|
|
|
body, err := json.Marshal(expectObj)
|
2014-08-03 23:59:47 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
2014-06-06 23:40:48 +00:00
|
|
|
fakeHandler := util.FakeHandler{
|
|
|
|
StatusCode: 200,
|
2014-07-01 02:46:10 +00:00
|
|
|
ResponseBody: string(body),
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
testServer := httptest.NewServer(&fakeHandler)
|
2014-10-31 01:15:44 +00:00
|
|
|
defer testServer.Close()
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2014-07-08 07:15:41 +00:00
|
|
|
hostURL, err := url.Parse(testServer.URL)
|
2014-08-03 23:59:47 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
2014-07-08 07:15:41 +00:00
|
|
|
parts := strings.Split(hostURL.Host, ":")
|
2014-06-06 23:40:48 +00:00
|
|
|
|
|
|
|
port, err := strconv.Atoi(parts[1])
|
2014-08-03 23:59:47 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
2014-10-10 22:19:23 +00:00
|
|
|
podInfoGetter := &HTTPKubeletClient{
|
2014-06-06 23:40:48 +00:00
|
|
|
Client: http.DefaultClient,
|
|
|
|
Port: uint(port),
|
|
|
|
}
|
2015-01-14 02:11:24 +00:00
|
|
|
gotObj, err := podInfoGetter.GetPodStatus(parts[0], api.NamespaceDefault, "foo")
|
2014-08-03 23:59:47 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
2014-07-01 02:46:10 +00:00
|
|
|
|
|
|
|
// reflect.DeepEqual(expectObj, gotObj) doesn't handle blank times well
|
2015-03-25 11:09:35 +00:00
|
|
|
if len(gotObj.Status.ContainerStatuses) != len(expectObj.Status.ContainerStatuses) {
|
2014-07-01 02:46:10 +00:00
|
|
|
t.Errorf("Unexpected response. Expected: %#v, received %#v", expectObj, gotObj)
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-18 14:54:43 +00:00
|
|
|
|
2014-10-10 22:19:23 +00:00
|
|
|
func TestHTTPKubeletClientNotFound(t *testing.T) {
|
2014-12-15 17:29:04 +00:00
|
|
|
expectObj := api.PodContainerInfo{
|
2015-03-25 11:09:35 +00:00
|
|
|
ContainerInfo: []api.ContainerStatus{
|
|
|
|
{
|
|
|
|
Name: "myID",
|
|
|
|
},
|
2014-12-15 17:29:04 +00:00
|
|
|
},
|
2014-07-18 14:54:43 +00:00
|
|
|
}
|
|
|
|
_, err := json.Marshal(expectObj)
|
2014-08-03 23:59:47 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
2014-07-18 14:54:43 +00:00
|
|
|
fakeHandler := util.FakeHandler{
|
|
|
|
StatusCode: 404,
|
|
|
|
ResponseBody: "Pod not found",
|
|
|
|
}
|
|
|
|
testServer := httptest.NewServer(&fakeHandler)
|
2014-10-31 01:15:44 +00:00
|
|
|
defer testServer.Close()
|
2014-07-18 14:54:43 +00:00
|
|
|
|
|
|
|
hostURL, err := url.Parse(testServer.URL)
|
2014-08-03 23:59:47 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
2014-07-18 14:54:43 +00:00
|
|
|
parts := strings.Split(hostURL.Host, ":")
|
|
|
|
|
|
|
|
port, err := strconv.Atoi(parts[1])
|
2014-08-03 23:59:47 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
2014-10-10 22:19:23 +00:00
|
|
|
podInfoGetter := &HTTPKubeletClient{
|
2014-07-18 14:54:43 +00:00
|
|
|
Client: http.DefaultClient,
|
|
|
|
Port: uint(port),
|
|
|
|
}
|
2015-01-14 02:11:24 +00:00
|
|
|
_, err = podInfoGetter.GetPodStatus(parts[0], api.NamespaceDefault, "foo")
|
2014-07-18 14:54:43 +00:00
|
|
|
if err != ErrPodInfoNotAvailable {
|
|
|
|
t.Errorf("Expected %#v, Got %#v", ErrPodInfoNotAvailable, err)
|
|
|
|
}
|
|
|
|
}
|
2014-12-08 05:46:14 +00:00
|
|
|
|
2015-01-30 00:05:41 +00:00
|
|
|
func TestHTTPKubeletClientError(t *testing.T) {
|
|
|
|
expectObj := api.PodContainerInfo{
|
2015-03-25 11:09:35 +00:00
|
|
|
ContainerInfo: []api.ContainerStatus{
|
|
|
|
{
|
|
|
|
Name: "myID",
|
|
|
|
},
|
2015-01-30 00:05:41 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
_, err := json.Marshal(expectObj)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fakeHandler := util.FakeHandler{
|
|
|
|
StatusCode: 500,
|
|
|
|
ResponseBody: "Internal server error",
|
|
|
|
}
|
|
|
|
testServer := httptest.NewServer(&fakeHandler)
|
|
|
|
defer testServer.Close()
|
|
|
|
|
|
|
|
hostURL, err := url.Parse(testServer.URL)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
parts := strings.Split(hostURL.Host, ":")
|
|
|
|
|
|
|
|
port, err := strconv.Atoi(parts[1])
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
podInfoGetter := &HTTPKubeletClient{
|
|
|
|
Client: http.DefaultClient,
|
|
|
|
Port: uint(port),
|
|
|
|
}
|
|
|
|
_, err = podInfoGetter.GetPodStatus(parts[0], api.NamespaceDefault, "foo")
|
|
|
|
if err == nil || !strings.Contains(err.Error(), "HTTP error code 500") {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-08 05:46:14 +00:00
|
|
|
func TestNewKubeletClient(t *testing.T) {
|
|
|
|
config := &KubeletConfig{
|
|
|
|
Port: 9000,
|
|
|
|
EnableHttps: false,
|
|
|
|
}
|
2014-12-10 02:27:55 +00:00
|
|
|
|
2014-12-08 05:46:14 +00:00
|
|
|
client, err := NewKubeletClient(config)
|
|
|
|
if err != nil {
|
2014-12-10 02:27:55 +00:00
|
|
|
t.Errorf("Error while trying to create a client: %v", err)
|
2014-12-08 05:46:14 +00:00
|
|
|
}
|
|
|
|
if client == nil {
|
2014-12-10 02:27:55 +00:00
|
|
|
t.Error("client is nil.")
|
2014-12-08 05:46:14 +00:00
|
|
|
}
|
2014-12-10 02:27:55 +00:00
|
|
|
|
2014-12-08 05:46:14 +00:00
|
|
|
host := "127.0.0.1"
|
|
|
|
healthStatus, err := client.HealthCheck(host)
|
2015-01-27 18:22:53 +00:00
|
|
|
if healthStatus != probe.Failure {
|
|
|
|
t.Errorf("Expected %v and got %v.", probe.Failure, healthStatus)
|
2014-12-08 05:46:14 +00:00
|
|
|
}
|
2014-12-24 04:07:56 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error("Expected a nil error")
|
2014-12-08 05:46:14 +00:00
|
|
|
}
|
|
|
|
}
|
2014-12-16 06:57:27 +00:00
|
|
|
|
|
|
|
func TestNewKubeletClientTLSInvalid(t *testing.T) {
|
|
|
|
config := &KubeletConfig{
|
|
|
|
Port: 9000,
|
|
|
|
EnableHttps: true,
|
|
|
|
//Invalid certificate and key path
|
2015-01-29 22:43:09 +00:00
|
|
|
TLSClientConfig: TLSClientConfig{
|
|
|
|
CertFile: "./testdata/mycertinvalid.cer",
|
|
|
|
KeyFile: "./testdata/mycertinvalid.key",
|
|
|
|
CAFile: "./testdata/myCA.cer",
|
|
|
|
},
|
2014-12-16 06:57:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
client, err := NewKubeletClient(config)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Expected an error")
|
|
|
|
}
|
|
|
|
if client != nil {
|
|
|
|
t.Error("client should be nil as we provided invalid cert file")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewKubeletClientTLSValid(t *testing.T) {
|
|
|
|
config := &KubeletConfig{
|
|
|
|
Port: 9000,
|
|
|
|
EnableHttps: true,
|
2015-01-29 22:43:09 +00:00
|
|
|
TLSClientConfig: TLSClientConfig{
|
|
|
|
CertFile: "./testdata/mycertvalid.cer",
|
|
|
|
// TLS Configuration, only applies if EnableHttps is true.
|
|
|
|
KeyFile: "./testdata/mycertvalid.key",
|
|
|
|
// TLS Configuration, only applies if EnableHttps is true.
|
|
|
|
CAFile: "./testdata/myCA.cer",
|
|
|
|
},
|
2014-12-16 06:57:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
client, err := NewKubeletClient(config)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Not expecting an error #%v", err)
|
|
|
|
}
|
|
|
|
if client == nil {
|
|
|
|
t.Error("client should not be nil")
|
|
|
|
}
|
|
|
|
}
|