mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.4 KiB
63 lines
1.4 KiB
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)
|
|
}
|
|
}
|