open-vault/http/help_test.go

30 lines
639 B
Go
Raw Normal View History

2015-04-03 05:21:33 +00:00
package http
import (
"net/http"
2015-04-03 05:21:33 +00:00
"testing"
"github.com/hashicorp/vault/vault"
)
func TestHelp(t *testing.T) {
core, _, token := vault.TestCoreUnsealed(t)
ln, addr := TestServer(t, core)
defer ln.Close()
TestServerAuth(t, addr, token)
resp := testHttpGet(t, "", addr+"/v1/sys/mounts?help=1")
if resp.StatusCode != http.StatusBadRequest {
t.Fatal("expected bad request with no token")
}
resp = testHttpGet(t, token, addr+"/v1/sys/mounts?help=1")
2015-04-03 05:21:33 +00:00
var actual map[string]interface{}
testResponseStatus(t, resp, 200)
testResponseBody(t, resp, &actual)
if _, ok := actual["help"]; !ok {
t.Fatalf("bad: %#v", actual)
}
}