2014-09-12 16:16:37 +00:00
|
|
|
/*
|
|
|
|
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 apiserver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2015-04-01 23:19:17 +00:00
|
|
|
"net"
|
2014-09-12 16:16:37 +00:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
2015-04-01 23:19:17 +00:00
|
|
|
"strconv"
|
2014-09-12 16:16:37 +00:00
|
|
|
"testing"
|
|
|
|
|
2015-01-25 03:22:18 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/probe"
|
2014-09-12 16:16:37 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
|
|
|
)
|
|
|
|
|
2015-04-01 23:19:17 +00:00
|
|
|
type fakeRoundTripper struct {
|
2014-09-12 16:16:37 +00:00
|
|
|
err error
|
|
|
|
resp *http.Response
|
|
|
|
url string
|
|
|
|
}
|
|
|
|
|
2015-04-01 23:19:17 +00:00
|
|
|
func (f *fakeRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
|
|
f.url = req.URL.String()
|
2014-09-12 16:16:37 +00:00
|
|
|
return f.resp, f.err
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidate(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
err error
|
|
|
|
data string
|
2015-01-31 01:03:57 +00:00
|
|
|
expectedStatus probe.Result
|
2014-09-12 16:16:37 +00:00
|
|
|
code int
|
|
|
|
expectErr bool
|
|
|
|
}{
|
2015-01-25 03:22:18 +00:00
|
|
|
{fmt.Errorf("test error"), "", probe.Unknown, 500 /*ignored*/, true},
|
2015-01-27 18:22:53 +00:00
|
|
|
{nil, "foo", probe.Success, 200, false},
|
|
|
|
{nil, "foo", probe.Failure, 500, true},
|
2014-09-12 16:16:37 +00:00
|
|
|
}
|
|
|
|
|
2014-11-02 20:52:31 +00:00
|
|
|
s := Server{Addr: "foo.com", Port: 8080, Path: "/healthz"}
|
2014-09-12 16:16:37 +00:00
|
|
|
|
|
|
|
for _, test := range tests {
|
2015-04-01 23:19:17 +00:00
|
|
|
fakeRT := &fakeRoundTripper{
|
|
|
|
err: test.err,
|
|
|
|
resp: &http.Response{
|
|
|
|
Body: ioutil.NopCloser(bytes.NewBufferString(test.data)),
|
|
|
|
StatusCode: test.code,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
fake := &http.Client{Transport: fakeRT}
|
2014-09-12 16:16:37 +00:00
|
|
|
status, data, err := s.check(fake)
|
2014-11-02 20:52:31 +00:00
|
|
|
expect := fmt.Sprintf("http://%s:%d/healthz", s.Addr, s.Port)
|
2015-04-01 23:19:17 +00:00
|
|
|
if fakeRT.url != expect {
|
|
|
|
t.Errorf("expected %s, got %s", expect, fakeRT.url)
|
2014-09-12 16:16:37 +00:00
|
|
|
}
|
|
|
|
if test.expectErr && err == nil {
|
|
|
|
t.Errorf("unexpected non-error")
|
|
|
|
}
|
|
|
|
if !test.expectErr && err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
if data != test.data {
|
|
|
|
t.Errorf("expected empty string, got %s", status)
|
|
|
|
}
|
|
|
|
if status != test.expectedStatus {
|
|
|
|
t.Errorf("expected %s, got %s", test.expectedStatus.String(), status.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-01 23:19:17 +00:00
|
|
|
func makeTestValidator(servers map[string]string, rt http.RoundTripper) (http.Handler, error) {
|
|
|
|
result := map[string]Server{}
|
|
|
|
for name, value := range servers {
|
|
|
|
host, port, err := net.SplitHostPort(value)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid server spec: %s (%v)", value, err)
|
|
|
|
}
|
|
|
|
val, err := strconv.Atoi(port)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid server spec: %s (%v)", port, err)
|
|
|
|
}
|
|
|
|
result[name] = Server{Addr: host, Port: val, Path: "/healthz"}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &validator{servers: func() map[string]Server { return result }, rt: rt}, nil
|
|
|
|
}
|
|
|
|
|
2014-09-12 16:16:37 +00:00
|
|
|
func TestValidator(t *testing.T) {
|
2015-04-01 23:19:17 +00:00
|
|
|
fake := &fakeRoundTripper{
|
|
|
|
resp: &http.Response{
|
|
|
|
Body: ioutil.NopCloser(bytes.NewBufferString("foo")),
|
|
|
|
StatusCode: 200,
|
|
|
|
},
|
|
|
|
}
|
2014-09-12 16:16:37 +00:00
|
|
|
validator, err := makeTestValidator(map[string]string{
|
|
|
|
"foo": "foo.com:80",
|
|
|
|
"bar": "bar.com:8080",
|
|
|
|
}, fake)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
testServer := httptest.NewServer(validator)
|
|
|
|
defer testServer.Close()
|
|
|
|
|
|
|
|
resp, err := http.Get(testServer.URL + "/validatez")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
t.Errorf("unexpected response: %v", resp.StatusCode)
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
data, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
2015-04-01 23:19:17 +00:00
|
|
|
var status []ServerStatus
|
|
|
|
if err := json.Unmarshal(data, &status); err != nil {
|
2014-09-12 16:16:37 +00:00
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
components := util.StringSet{}
|
|
|
|
for _, s := range status {
|
2015-04-01 23:19:17 +00:00
|
|
|
if s.Err != "nil" {
|
|
|
|
t.Errorf("Component %v is unhealthy: %v", s.Component, s.Err)
|
|
|
|
}
|
2014-09-12 16:16:37 +00:00
|
|
|
components.Insert(s.Component)
|
|
|
|
}
|
|
|
|
if len(status) != 2 || !components.Has("foo") || !components.Has("bar") {
|
|
|
|
t.Errorf("unexpected status: %#v", status)
|
|
|
|
}
|
|
|
|
}
|