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"
|
|
|
|
|
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-05-14 22:26:44 +00:00
|
|
|
expectObj := probe.Success
|
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)
|
|
|
|
}
|
|
|
|
|
2015-05-14 22:26:44 +00:00
|
|
|
c := &HTTPKubeletClient{
|
2014-06-06 23:40:48 +00:00
|
|
|
Client: http.DefaultClient,
|
2015-06-25 17:53:41 +00:00
|
|
|
Config: &KubeletConfig{Port: uint(port)},
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
2015-05-14 00:30:37 +00:00
|
|
|
gotObj, _, err := c.HealthCheck(parts[0])
|
2014-08-03 23:59:47 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
2015-05-14 22:26:44 +00:00
|
|
|
if gotObj != expectObj {
|
|
|
|
t.Errorf("expected: %#v, got %#v", expectObj, gotObj)
|
2014-07-18 14:54:43 +00:00
|
|
|
}
|
|
|
|
}
|
2014-12-08 05:46:14 +00:00
|
|
|
|
2015-01-30 00:05:41 +00:00
|
|
|
func TestHTTPKubeletClientError(t *testing.T) {
|
2015-05-14 22:26:44 +00:00
|
|
|
expectObj := probe.Failure
|
2015-01-30 00:05:41 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2015-05-14 22:26:44 +00:00
|
|
|
c := &HTTPKubeletClient{
|
2015-01-30 00:05:41 +00:00
|
|
|
Client: http.DefaultClient,
|
2015-06-25 17:53:41 +00:00
|
|
|
Config: &KubeletConfig{Port: uint(port)},
|
2015-01-30 00:05:41 +00:00
|
|
|
}
|
2015-05-14 00:30:37 +00:00
|
|
|
gotObj, _, err := c.HealthCheck(parts[0])
|
2015-05-14 22:26:44 +00:00
|
|
|
if gotObj != expectObj {
|
|
|
|
t.Errorf("expected: %#v, got %#v", expectObj, gotObj)
|
2015-01-30 00:05:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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"
|
2015-05-14 00:30:37 +00:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|