k3s/pkg/util/fake_handler_test.go

133 lines
3.0 KiB
Go
Raw Normal View History

2014-06-09 14:16:43 +00:00
package util
import (
"bytes"
"net/http"
"net/http/httptest"
2014-06-11 19:50:01 +00:00
"testing"
2014-06-09 14:16:43 +00:00
)
func expectNoError(t *testing.T, err error) {
if err != nil {
t.Errorf("Unexpected error: %#v", err)
}
}
func TestFakeHandlerPath(t *testing.T) {
handler := FakeHandler{}
server := httptest.NewServer(&handler)
method := "GET"
path := "/foo/bar"
body := "somebody"
2014-06-11 19:50:01 +00:00
req, err := http.NewRequest(method, server.URL+path, bytes.NewBufferString(body))
2014-06-09 14:16:43 +00:00
expectNoError(t, err)
client := http.Client{}
_, err = client.Do(req)
expectNoError(t, err)
2014-06-11 19:50:01 +00:00
2014-06-09 14:16:43 +00:00
handler.ValidateRequest(t, path, method, &body)
}
func TestFakeHandlerPathNoBody(t *testing.T) {
handler := FakeHandler{}
server := httptest.NewServer(&handler)
method := "GET"
path := "/foo/bar"
2014-06-11 19:50:01 +00:00
req, err := http.NewRequest(method, server.URL+path, nil)
2014-06-09 14:16:43 +00:00
expectNoError(t, err)
client := http.Client{}
_, err = client.Do(req)
expectNoError(t, err)
2014-06-11 19:50:01 +00:00
2014-06-09 14:16:43 +00:00
handler.ValidateRequest(t, path, method, nil)
}
type fakeError struct {
2014-06-11 19:50:01 +00:00
errors []string
2014-06-09 14:16:43 +00:00
}
func (f *fakeError) Errorf(format string, args ...interface{}) {
f.errors = append(f.errors, format)
}
func TestFakeHandlerWrongPath(t *testing.T) {
handler := FakeHandler{}
server := httptest.NewServer(&handler)
method := "GET"
path := "/foo/bar"
fakeT := fakeError{}
2014-06-11 19:50:01 +00:00
req, err := http.NewRequest(method, server.URL+"/foo/baz", nil)
2014-06-09 14:16:43 +00:00
expectNoError(t, err)
client := http.Client{}
_, err = client.Do(req)
expectNoError(t, err)
2014-06-11 19:50:01 +00:00
2014-06-09 14:16:43 +00:00
handler.ValidateRequest(&fakeT, path, method, nil)
if len(fakeT.errors) != 1 {
t.Errorf("Unexpected error set: %#v", fakeT.errors)
}
}
func TestFakeHandlerWrongMethod(t *testing.T) {
handler := FakeHandler{}
server := httptest.NewServer(&handler)
method := "GET"
path := "/foo/bar"
fakeT := fakeError{}
2014-06-11 19:50:01 +00:00
req, err := http.NewRequest("PUT", server.URL+path, nil)
2014-06-09 14:16:43 +00:00
expectNoError(t, err)
client := http.Client{}
_, err = client.Do(req)
expectNoError(t, err)
2014-06-11 19:50:01 +00:00
2014-06-09 14:16:43 +00:00
handler.ValidateRequest(&fakeT, path, method, nil)
if len(fakeT.errors) != 1 {
t.Errorf("Unexpected error set: %#v", fakeT.errors)
}
}
func TestFakeHandlerWrongBody(t *testing.T) {
handler := FakeHandler{}
server := httptest.NewServer(&handler)
method := "GET"
path := "/foo/bar"
body := "somebody"
fakeT := fakeError{}
2014-06-11 19:50:01 +00:00
req, err := http.NewRequest(method, server.URL+path, bytes.NewBufferString(body))
2014-06-09 14:16:43 +00:00
expectNoError(t, err)
client := http.Client{}
_, err = client.Do(req)
expectNoError(t, err)
2014-06-11 19:50:01 +00:00
2014-06-09 14:16:43 +00:00
otherbody := "otherbody"
handler.ValidateRequest(&fakeT, path, method, &otherbody)
if len(fakeT.errors) != 1 {
t.Errorf("Unexpected error set: %#v", fakeT.errors)
}
}
func TestFakeHandlerNilBody(t *testing.T) {
handler := FakeHandler{}
server := httptest.NewServer(&handler)
method := "GET"
path := "/foo/bar"
body := "somebody"
fakeT := fakeError{}
2014-06-11 19:50:01 +00:00
req, err := http.NewRequest(method, server.URL+path, nil)
2014-06-09 14:16:43 +00:00
expectNoError(t, err)
client := http.Client{}
_, err = client.Do(req)
expectNoError(t, err)
handler.ValidateRequest(&fakeT, path, method, &body)
if len(fakeT.errors) != 1 {
t.Errorf("Unexpected error set: %#v", fakeT.errors)
}
}