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
|
|
|
|
2015-10-27 13:18:45 +00:00
|
|
|
package client
|
2014-06-06 23:40:48 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http/httptest"
|
|
|
|
"net/url"
|
|
|
|
"testing"
|
|
|
|
|
2015-10-27 13:18:45 +00:00
|
|
|
client "k8s.io/kubernetes/pkg/client/unversioned"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/probe"
|
2016-01-15 06:33:50 +00:00
|
|
|
utiltesting "k8s.io/kubernetes/pkg/util/testing"
|
2014-06-06 23:40:48 +00:00
|
|
|
)
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2016-01-15 06:33:50 +00:00
|
|
|
fakeHandler := utiltesting.FakeHandler{
|
2014-06-06 23:40:48 +00:00
|
|
|
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)
|
2016-01-10 22:39:32 +00:00
|
|
|
// TODO: Uncomment when fix #19254
|
|
|
|
// defer testServer.Close()
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2015-10-27 13:18:45 +00:00
|
|
|
if _, err := url.Parse(testServer.URL); err != nil {
|
2014-08-03 23:59:47 +00:00
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
2015-01-30 00:05:41 +00:00
|
|
|
}
|
|
|
|
|
2014-12-08 05:46:14 +00:00
|
|
|
func TestNewKubeletClient(t *testing.T) {
|
2015-10-27 13:18:45 +00:00
|
|
|
config := &KubeletClientConfig{
|
2014-12-08 05:46:14 +00:00
|
|
|
EnableHttps: false,
|
|
|
|
}
|
2014-12-10 02:27:55 +00:00
|
|
|
|
2015-10-27 13:18:45 +00:00
|
|
|
client, err := NewStaticKubeletClient(config)
|
2014-12-08 05:46:14 +00:00
|
|
|
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-16 06:57:27 +00:00
|
|
|
|
|
|
|
func TestNewKubeletClientTLSInvalid(t *testing.T) {
|
2015-10-27 13:18:45 +00:00
|
|
|
config := &KubeletClientConfig{
|
2014-12-16 06:57:27 +00:00
|
|
|
EnableHttps: true,
|
|
|
|
//Invalid certificate and key path
|
2015-10-27 13:18:45 +00:00
|
|
|
TLSClientConfig: client.TLSClientConfig{
|
|
|
|
CertFile: "../../client/testdata/mycertinvalid.cer",
|
|
|
|
KeyFile: "../../client/testdata/mycertinvalid.key",
|
|
|
|
CAFile: "../../client/testdata/myCA.cer",
|
2015-01-29 22:43:09 +00:00
|
|
|
},
|
2014-12-16 06:57:27 +00:00
|
|
|
}
|
|
|
|
|
2015-10-27 13:18:45 +00:00
|
|
|
client, err := NewStaticKubeletClient(config)
|
2014-12-16 06:57:27 +00:00
|
|
|
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) {
|
2015-10-27 13:18:45 +00:00
|
|
|
config := &KubeletClientConfig{
|
2015-11-30 19:35:34 +00:00
|
|
|
Port: 1234,
|
2014-12-16 06:57:27 +00:00
|
|
|
EnableHttps: true,
|
2015-10-27 13:18:45 +00:00
|
|
|
TLSClientConfig: client.TLSClientConfig{
|
|
|
|
CertFile: "../../client/testdata/mycertvalid.cer",
|
2015-01-29 22:43:09 +00:00
|
|
|
// TLS Configuration, only applies if EnableHttps is true.
|
2015-10-27 13:18:45 +00:00
|
|
|
KeyFile: "../../client/testdata/mycertvalid.key",
|
2015-01-29 22:43:09 +00:00
|
|
|
// TLS Configuration, only applies if EnableHttps is true.
|
2015-10-27 13:18:45 +00:00
|
|
|
CAFile: "../../client/testdata/myCA.cer",
|
2015-01-29 22:43:09 +00:00
|
|
|
},
|
2014-12-16 06:57:27 +00:00
|
|
|
}
|
|
|
|
|
2015-10-27 13:18:45 +00:00
|
|
|
client, err := NewStaticKubeletClient(config)
|
2014-12-16 06:57:27 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Not expecting an error #%v", err)
|
|
|
|
}
|
|
|
|
if client == nil {
|
|
|
|
t.Error("client should not be nil")
|
|
|
|
}
|
2015-11-30 19:35:34 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
scheme, port, transport, err := client.GetConnectionInfo(nil, "foo")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error getting info: %v", err)
|
|
|
|
}
|
|
|
|
if scheme != "https" {
|
|
|
|
t.Errorf("Expected https, got %s", scheme)
|
|
|
|
}
|
|
|
|
if port != 1234 {
|
|
|
|
t.Errorf("Expected 1234, got %d", port)
|
|
|
|
}
|
|
|
|
if transport == nil {
|
|
|
|
t.Errorf("Expected transport, got nil")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
_, _, _, err := client.GetConnectionInfo(nil, "foo bar")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("Expected error getting connection info for invalid node name, got none")
|
|
|
|
}
|
|
|
|
}
|
2014-12-16 06:57:27 +00:00
|
|
|
}
|