1
0
Fork 0

Remove obsolete test

master
Philip O'Toole 1 year ago
parent 9b9ba1bd01
commit 3172ce83cc

@ -215,38 +215,6 @@ func Test_404Routes(t *testing.T) {
}
}
func Test_404Routes_ExpvarPprofDisabled(t *testing.T) {
m := &MockStore{}
c := &mockClusterService{}
s := New("127.0.0.1:0", m, c, nil)
if err := s.Start(); err != nil {
t.Fatalf("failed to start service")
}
defer s.Close()
host := fmt.Sprintf("http://%s", s.Addr().String())
client := &http.Client{}
for _, path := range []string{
"/debug/vars",
"/debug/pprof/cmdline",
"/debug/pprof/profile",
"/debug/pprof/symbol",
} {
req, err := http.NewRequest("GET", host+path, nil)
if err != nil {
t.Fatalf("failed to create request: %s", err.Error())
}
resp, err := client.Do(req)
if err != nil {
t.Fatalf("failed to make request: %s", err.Error())
}
if resp.StatusCode != 404 {
t.Fatalf("failed to get expected 404 for path %s, got %d", path, resp.StatusCode)
}
}
}
func Test_405Routes(t *testing.T) {
m := &MockStore{}
c := &mockClusterService{}

Loading…
Cancel
Save