package http import ( "net/http" "reflect" "testing" "github.com/hashicorp/vault/vault" ) func TestLogical(t *testing.T) { core, _ := vault.TestCoreUnsealed(t) ln, addr := TestServer(t, core) defer ln.Close() resp := testHttpPut(t, addr+"/v1/secret/foo", map[string]interface{}{ "data": "bar", }) testResponseStatus(t, resp, 204) resp, err := http.Get(addr + "/v1/secret/foo") if err != nil { t.Fatalf("err: %s", err) } var actual map[string]interface{} expected := map[string]interface{}{ "vault_id": "", "renewable": false, "lease_duration": float64(0), "data": map[string]interface{}{ "data": "bar", }, } testResponseStatus(t, resp, 200) testResponseBody(t, resp, &actual) if !reflect.DeepEqual(actual, expected) { t.Fatalf("bad: %#v", actual) } } func TestLogical_noExist(t *testing.T) { core, _ := vault.TestCoreUnsealed(t) ln, addr := TestServer(t, core) defer ln.Close() resp, err := http.Get(addr + "/v1/secret/foo") if err != nil { t.Fatalf("err: %s", err) } testResponseStatus(t, resp, 404) }