/* 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 kubelet import ( "bytes" "encoding/json" "fmt" "io/ioutil" "net/http" "net/http/httptest" "net/http/httputil" "reflect" "strings" "testing" "github.com/GoogleCloudPlatform/kubernetes/pkg/api" "github.com/GoogleCloudPlatform/kubernetes/pkg/util" "github.com/fsouza/go-dockerclient" "github.com/google/cadvisor/info" ) type fakeKubelet struct { infoFunc func(name string) (api.PodInfo, error) containerInfoFunc func(podID, containerName string, req *info.ContainerInfoRequest) (*info.ContainerInfo, error) rootInfoFunc func(query *info.ContainerInfoRequest) (*info.ContainerInfo, error) machineInfoFunc func() (*info.MachineInfo, error) logFunc func(w http.ResponseWriter, req *http.Request) } func (fk *fakeKubelet) GetPodInfo(name string) (api.PodInfo, error) { return fk.infoFunc(name) } func (fk *fakeKubelet) GetContainerInfo(podID, containerName string, req *info.ContainerInfoRequest) (*info.ContainerInfo, error) { return fk.containerInfoFunc(podID, containerName, req) } func (fk *fakeKubelet) GetRootInfo(req *info.ContainerInfoRequest) (*info.ContainerInfo, error) { return fk.rootInfoFunc(req) } func (fk *fakeKubelet) GetMachineInfo() (*info.MachineInfo, error) { return fk.machineInfoFunc() } func (fk *fakeKubelet) ServeLogs(w http.ResponseWriter, req *http.Request) { fk.logFunc(w, req) } type serverTestFramework struct { updateChan chan manifestUpdate updateReader *channelReader serverUnderTest *Server fakeKubelet *fakeKubelet testHTTPServer *httptest.Server } func makeServerTest() *serverTestFramework { fw := &serverTestFramework{ updateChan: make(chan manifestUpdate), } fw.updateReader = startReading(fw.updateChan) fw.fakeKubelet = &fakeKubelet{} fw.serverUnderTest = &Server{ Kubelet: fw.fakeKubelet, UpdateChannel: fw.updateChan, } fw.testHTTPServer = httptest.NewServer(fw.serverUnderTest) return fw } func readResp(resp *http.Response) (string, error) { defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) return string(body), err } func TestContainer(t *testing.T) { fw := makeServerTest() expected := []api.ContainerManifest{ {ID: "test_manifest"}, } body := bytes.NewBuffer([]byte(util.MakeJSONString(expected[0]))) // Only send a single ContainerManifest resp, err := http.Post(fw.testHTTPServer.URL+"/container", "application/json", body) if err != nil { t.Errorf("Post returned: %v", err) } resp.Body.Close() close(fw.updateChan) received := fw.updateReader.GetList() if len(received) != 1 { t.Errorf("Expected 1 manifest, but got %v", len(received)) } if !reflect.DeepEqual(expected, received[0]) { t.Errorf("Expected %#v, but got %#v", expected, received[0]) } } func TestContainers(t *testing.T) { fw := makeServerTest() expected := []api.ContainerManifest{ {ID: "test_manifest_1"}, {ID: "test_manifest_2"}, } body := bytes.NewBuffer([]byte(util.MakeJSONString(expected))) resp, err := http.Post(fw.testHTTPServer.URL+"/containers", "application/json", body) if err != nil { t.Errorf("Post returned: %v", err) } resp.Body.Close() close(fw.updateChan) received := fw.updateReader.GetList() if len(received) != 1 { t.Errorf("Expected 1 update, but got %v", len(received)) } if !reflect.DeepEqual(expected, received[0]) { t.Errorf("Expected %#v, but got %#v", expected, received[0]) } } func TestPodInfo(t *testing.T) { fw := makeServerTest() expected := api.PodInfo{"goodpod": docker.Container{ID: "myContainerID"}} fw.fakeKubelet.infoFunc = func(name string) (api.PodInfo, error) { if name == "goodpod" { return expected, nil } return nil, fmt.Errorf("bad pod") } resp, err := http.Get(fw.testHTTPServer.URL + "/podInfo?podID=goodpod") if err != nil { t.Errorf("Got error GETing: %v", err) } got, err := readResp(resp) if err != nil { t.Errorf("Error reading body: %v", err) } expectedBytes, err := json.Marshal(expected) if err != nil { t.Fatalf("Unexpected marshal error %v", err) } if got != string(expectedBytes) { t.Errorf("Expected: '%v', got: '%v'", expected, got) } } func TestContainerInfo(t *testing.T) { fw := makeServerTest() expectedInfo := &info.ContainerInfo{ StatsPercentiles: &info.ContainerStatsPercentiles{ MaxMemoryUsage: 1024001, CpuUsagePercentiles: []info.Percentile{ {50, 150}, {80, 180}, {90, 190}, }, MemoryUsagePercentiles: []info.Percentile{ {50, 150}, {80, 180}, {90, 190}, }, }, } expectedPodID := "somepod" expectedContainerName := "goodcontainer" fw.fakeKubelet.containerInfoFunc = func(podID, containerName string, req *info.ContainerInfoRequest) (*info.ContainerInfo, error) { if podID != expectedPodID || containerName != expectedContainerName { return nil, fmt.Errorf("bad podID or containerName: podID=%v; containerName=%v", podID, containerName) } return expectedInfo, nil } resp, err := http.Get(fw.testHTTPServer.URL + fmt.Sprintf("/stats/%v/%v", expectedPodID, expectedContainerName)) if err != nil { t.Fatalf("Got error GETing: %v", err) } defer resp.Body.Close() var receivedInfo info.ContainerInfo err = json.NewDecoder(resp.Body).Decode(&receivedInfo) if err != nil { t.Fatalf("received invalid json data: %v", err) } if !reflect.DeepEqual(&receivedInfo, expectedInfo) { t.Errorf("received wrong data: %#v", receivedInfo) } } func TestRootInfo(t *testing.T) { fw := makeServerTest() expectedInfo := &info.ContainerInfo{ StatsPercentiles: &info.ContainerStatsPercentiles{ MaxMemoryUsage: 1024001, CpuUsagePercentiles: []info.Percentile{ {50, 150}, {80, 180}, {90, 190}, }, MemoryUsagePercentiles: []info.Percentile{ {50, 150}, {80, 180}, {90, 190}, }, }, } fw.fakeKubelet.rootInfoFunc = func(req *info.ContainerInfoRequest) (*info.ContainerInfo, error) { return expectedInfo, nil } resp, err := http.Get(fw.testHTTPServer.URL + "/stats") if err != nil { t.Fatalf("Got error GETing: %v", err) } defer resp.Body.Close() var receivedInfo info.ContainerInfo err = json.NewDecoder(resp.Body).Decode(&receivedInfo) if err != nil { t.Fatalf("received invalid json data: %v", err) } if !reflect.DeepEqual(&receivedInfo, expectedInfo) { t.Errorf("received wrong data: %#v", receivedInfo) } } func TestMachineInfo(t *testing.T) { fw := makeServerTest() expectedInfo := &info.MachineInfo{ NumCores: 4, MemoryCapacity: 1024, } fw.fakeKubelet.machineInfoFunc = func() (*info.MachineInfo, error) { return expectedInfo, nil } resp, err := http.Get(fw.testHTTPServer.URL + "/spec") if err != nil { t.Fatalf("Got error GETing: %v", err) } defer resp.Body.Close() var receivedInfo info.MachineInfo err = json.NewDecoder(resp.Body).Decode(&receivedInfo) if err != nil { t.Fatalf("received invalid json data: %v", err) } if !reflect.DeepEqual(&receivedInfo, expectedInfo) { t.Errorf("received wrong data: %#v", receivedInfo) } } func TestServeLogs(t *testing.T) { fw := makeServerTest() content := string(`
kubelet.loggoogle.log`) fw.fakeKubelet.logFunc = func(w http.ResponseWriter, req *http.Request) { w.WriteHeader(http.StatusOK) w.Header().Add("Content-Type", "text/html") w.Write([]byte(content)) } resp, err := http.Get(fw.testHTTPServer.URL + "/logs/") if err != nil { t.Fatalf("Got error GETing: %v", err) } defer resp.Body.Close() body, err := httputil.DumpResponse(resp, true) if err != nil { // copying the response body did not work t.Errorf("Cannot copy resp: %#v", err) } result := string(body) if !strings.Contains(result, "kubelet.log") || !strings.Contains(result, "google.log") { t.Errorf("Received wrong data: %s", result) } }