|
|
|
/*
|
|
|
|
Copyright 2016 The Kubernetes Authors 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 main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/kubernetes/helm/pkg/common"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestHealthz(t *testing.T) {
|
|
|
|
c := stubContext()
|
|
|
|
s := httpHarness(c, "GET /", healthz)
|
|
|
|
defer s.Close()
|
|
|
|
|
|
|
|
res, err := http.Get(s.URL)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err on http get: %v", err)
|
|
|
|
}
|
|
|
|
body, err := ioutil.ReadAll(res.Body)
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to GET healthz: %s", err)
|
|
|
|
} else if res.StatusCode != 200 {
|
|
|
|
t.Fatalf("Unexpected status: %d", res.StatusCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedBody := "OK"
|
|
|
|
if bytes.Equal(body, []byte(expectedBody)) {
|
|
|
|
t.Fatalf("Expected response body: %s, Actual response body: %s",
|
|
|
|
expectedBody, string(body))
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedContentType := "text/plain"
|
|
|
|
contentType := res.Header["Content-Type"][0]
|
|
|
|
if !strings.Contains(contentType, expectedContentType) {
|
|
|
|
t.Fatalf("Expected Content-Type to include %s", expectedContentType)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCreateDeployments(t *testing.T) {
|
|
|
|
c := stubContext()
|
|
|
|
tpl := &common.Template{Name: "foo"}
|
|
|
|
s := httpHarness(c, "POST /deployments", createDeploymentHandlerFunc)
|
|
|
|
defer s.Close()
|
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
if err := json.NewEncoder(&b).Encode(tpl); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := http.Post(s.URL+"/deployments", "application/json", &b)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Failed POST: %s", err)
|
|
|
|
} else if res.StatusCode != http.StatusCreated {
|
|
|
|
t.Errorf("Expected status %d, got %d", http.StatusCreated, res.StatusCode)
|
|
|
|
}
|
|
|
|
}
|