open-vault/http/logical_test.go

206 lines
5.1 KiB
Go
Raw Normal View History

package http
import (
2015-05-27 21:19:12 +00:00
"bytes"
"io"
"reflect"
"testing"
2015-04-05 00:42:19 +00:00
"time"
2015-04-19 20:18:09 +00:00
"github.com/hashicorp/vault/physical"
"github.com/hashicorp/vault/vault"
)
func TestLogical(t *testing.T) {
2015-03-29 23:14:54 +00:00
core, _, token := vault.TestCoreUnsealed(t)
ln, addr := TestServer(t, core)
defer ln.Close()
2015-03-29 23:14:54 +00:00
TestServerAuth(t, addr, token)
2015-04-07 18:04:06 +00:00
// WRITE
2015-08-22 00:36:19 +00:00
resp := testHttpPut(t, token, addr+"/v1/secret/foo", map[string]interface{}{
"data": "bar",
})
testResponseStatus(t, resp, 204)
2015-04-07 18:04:06 +00:00
// READ
2015-08-22 00:36:19 +00:00
resp = testHttpGet(t, token, addr+"/v1/secret/foo")
var actual map[string]interface{}
2015-10-07 21:21:41 +00:00
var nilWarnings interface{}
expected := map[string]interface{}{
2015-03-16 20:29:51 +00:00
"renewable": false,
2015-04-05 00:42:19 +00:00
"lease_duration": float64((30 * 24 * time.Hour) / time.Second),
"data": map[string]interface{}{
"data": "bar",
},
2015-10-07 21:21:41 +00:00
"auth": nil,
"warnings": nilWarnings,
}
testResponseStatus(t, resp, 200)
testResponseBody(t, resp, &actual)
delete(actual, "lease_id")
if !reflect.DeepEqual(actual, expected) {
2015-10-07 21:21:41 +00:00
t.Fatalf("bad:\nactual:\n%#v\nexpected:\n%#v", actual, expected)
}
2015-04-07 18:04:06 +00:00
// DELETE
2015-08-22 00:36:19 +00:00
resp = testHttpDelete(t, token, addr+"/v1/secret/foo")
2015-04-07 18:04:06 +00:00
testResponseStatus(t, resp, 204)
2015-08-22 00:36:19 +00:00
resp = testHttpGet(t, token, addr+"/v1/secret/foo")
2015-04-07 18:04:06 +00:00
testResponseStatus(t, resp, 404)
}
func TestLogical_noExist(t *testing.T) {
2015-03-29 23:14:54 +00:00
core, _, token := vault.TestCoreUnsealed(t)
ln, addr := TestServer(t, core)
defer ln.Close()
2015-03-29 23:14:54 +00:00
TestServerAuth(t, addr, token)
2015-08-22 00:36:19 +00:00
resp := testHttpGet(t, token, addr+"/v1/secret/foo")
testResponseStatus(t, resp, 404)
}
2015-04-19 20:18:09 +00:00
func TestLogical_StandbyRedirect(t *testing.T) {
ln1, addr1 := TestListener(t)
defer ln1.Close()
ln2, addr2 := TestListener(t)
defer ln2.Close()
// Create an HA Vault
inm := physical.NewInmemHA()
2015-04-29 01:12:57 +00:00
conf := &vault.CoreConfig{
Physical: inm,
AdvertiseAddr: addr1,
DisableMlock: true,
}
2015-04-19 20:18:09 +00:00
core1, err := vault.NewCore(conf)
if err != nil {
t.Fatalf("err: %v", err)
}
key, root := vault.TestCoreInit(t, core1)
if _, err := core1.Unseal(vault.TestKeyCopy(key)); err != nil {
t.Fatalf("unseal err: %s", err)
}
// Create a second HA Vault
2015-04-29 01:12:57 +00:00
conf2 := &vault.CoreConfig{
Physical: inm,
AdvertiseAddr: addr2,
DisableMlock: true,
}
2015-04-19 20:18:09 +00:00
core2, err := vault.NewCore(conf2)
if err != nil {
t.Fatalf("err: %v", err)
}
if _, err := core2.Unseal(vault.TestKeyCopy(key)); err != nil {
t.Fatalf("unseal err: %s", err)
}
TestServerWithListener(t, ln1, addr1, core1)
TestServerWithListener(t, ln2, addr2, core2)
TestServerAuth(t, addr1, root)
// WRITE to STANDBY
2015-08-22 00:36:19 +00:00
resp := testHttpPut(t, root, addr2+"/v1/secret/foo", map[string]interface{}{
2015-04-19 20:18:09 +00:00
"data": "bar",
})
testResponseStatus(t, resp, 307)
//// READ to standby
2015-08-22 00:36:19 +00:00
resp = testHttpGet(t, root, addr2+"/v1/auth/token/lookup-self")
2015-04-19 20:18:09 +00:00
var actual map[string]interface{}
2015-10-07 21:21:41 +00:00
var nilWarnings interface{}
2015-04-19 20:18:09 +00:00
expected := map[string]interface{}{
"renewable": false,
"lease_duration": float64(0),
"data": map[string]interface{}{
"meta": nil,
"num_uses": float64(0),
"path": "auth/token/root",
"policies": []interface{}{"root"},
"display_name": "root",
"id": root,
"ttl": float64(0),
2015-04-19 20:18:09 +00:00
},
2015-10-07 21:21:41 +00:00
"warnings": nilWarnings,
"auth": nil,
2015-04-19 20:18:09 +00:00
}
2015-08-22 00:36:19 +00:00
2015-04-19 20:18:09 +00:00
testResponseStatus(t, resp, 200)
testResponseBody(t, resp, &actual)
actualDataMap := actual["data"].(map[string]interface{})
delete(actualDataMap, "creation_time")
actual["data"] = actualDataMap
2015-04-19 20:18:09 +00:00
delete(actual, "lease_id")
if !reflect.DeepEqual(actual, expected) {
t.Fatalf("bad: got %#v; expected %#v", actual, expected)
2015-04-19 20:18:09 +00:00
}
//// DELETE to standby
2015-08-22 00:36:19 +00:00
resp = testHttpDelete(t, root, addr2+"/v1/secret/foo")
2015-04-19 20:18:09 +00:00
testResponseStatus(t, resp, 307)
}
func TestLogical_CreateToken(t *testing.T) {
core, _, token := vault.TestCoreUnsealed(t)
ln, addr := TestServer(t, core)
defer ln.Close()
TestServerAuth(t, addr, token)
// WRITE
2015-08-22 00:36:19 +00:00
resp := testHttpPut(t, token, addr+"/v1/auth/token/create", map[string]interface{}{
"data": "bar",
})
var actual map[string]interface{}
expected := map[string]interface{}{
"lease_id": "",
"renewable": false,
"lease_duration": float64(0),
"data": nil,
"auth": map[string]interface{}{
"policies": []interface{}{"root"},
"metadata": nil,
"lease_duration": float64(0),
"renewable": false,
},
2015-10-07 21:21:41 +00:00
"warnings": []interface{}{"policy \"root\" does not exist"},
}
testResponseStatus(t, resp, 200)
testResponseBody(t, resp, &actual)
delete(actual["auth"].(map[string]interface{}), "client_token")
if !reflect.DeepEqual(actual, expected) {
2015-10-07 21:21:41 +00:00
t.Fatalf("bad:\nexpected:\n%#v\nactual:\n%#v", expected, actual)
}
}
2015-05-27 21:19:12 +00:00
func TestLogical_RawHTTP(t *testing.T) {
core, _, token := vault.TestCoreUnsealed(t)
ln, addr := TestServer(t, core)
defer ln.Close()
TestServerAuth(t, addr, token)
2015-08-22 00:36:19 +00:00
resp := testHttpPost(t, token, addr+"/v1/sys/mounts/foo", map[string]interface{}{
2015-05-27 21:19:12 +00:00
"type": "http",
})
testResponseStatus(t, resp, 204)
// Get the raw response
2015-08-22 00:36:19 +00:00
resp = testHttpGet(t, token, addr+"/v1/foo/raw")
2015-05-27 21:19:12 +00:00
testResponseStatus(t, resp, 200)
// Test the headers
if resp.Header.Get("Content-Type") != "plain/text" {
t.Fatalf("Bad: %#v", resp.Header)
}
// Get the body
body := new(bytes.Buffer)
io.Copy(body, resp.Body)
if string(body.Bytes()) != "hello world" {
t.Fatalf("Bad: %s", body.Bytes())
}
}