2016-03-03 17:24:28 +00:00
|
|
|
package vault
|
2016-03-05 05:03:55 +00:00
|
|
|
|
|
|
|
import (
|
2018-01-08 18:31:38 +00:00
|
|
|
"context"
|
2016-03-05 05:03:55 +00:00
|
|
|
"reflect"
|
2017-11-03 15:20:10 +00:00
|
|
|
"sort"
|
2016-03-05 05:03:55 +00:00
|
|
|
"testing"
|
2018-06-03 22:14:51 +00:00
|
|
|
"time"
|
2017-11-03 15:20:10 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/vault/logical"
|
2016-03-05 05:03:55 +00:00
|
|
|
)
|
|
|
|
|
2017-11-03 15:20:10 +00:00
|
|
|
func TestCapabilities_DerivedPolicies(t *testing.T) {
|
|
|
|
var resp *logical.Response
|
|
|
|
var err error
|
|
|
|
|
|
|
|
i, _, c := testIdentityStoreWithGithubAuth(t)
|
|
|
|
|
|
|
|
policy1 := `
|
|
|
|
name = "policy1"
|
|
|
|
path "secret/sample" {
|
|
|
|
capabilities = ["update", "create", "sudo"]
|
|
|
|
}
|
|
|
|
`
|
|
|
|
policy2 := `
|
|
|
|
name = "policy2"
|
|
|
|
path "secret/sample" {
|
|
|
|
capabilities = ["read", "delete"]
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
policy3 := `
|
|
|
|
name = "policy3"
|
|
|
|
path "secret/sample" {
|
|
|
|
capabilities = ["list", "list"]
|
|
|
|
}
|
|
|
|
`
|
|
|
|
// Create the above policies
|
|
|
|
policy, _ := ParseACLPolicy(policy1)
|
2018-01-19 06:44:44 +00:00
|
|
|
err = c.policyStore.SetPolicy(context.Background(), policy)
|
2017-11-03 15:20:10 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
policy, _ = ParseACLPolicy(policy2)
|
2018-01-19 06:44:44 +00:00
|
|
|
err = c.policyStore.SetPolicy(context.Background(), policy)
|
2017-11-03 15:20:10 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
policy, _ = ParseACLPolicy(policy3)
|
2018-01-19 06:44:44 +00:00
|
|
|
err = c.policyStore.SetPolicy(context.Background(), policy)
|
2017-11-03 15:20:10 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create an entity and assign policy1 to it
|
|
|
|
entityReq := &logical.Request{
|
|
|
|
Path: "entity",
|
|
|
|
Operation: logical.UpdateOperation,
|
|
|
|
Data: map[string]interface{}{
|
|
|
|
"policies": "policy1",
|
|
|
|
},
|
|
|
|
}
|
2018-01-08 18:31:38 +00:00
|
|
|
resp, err = i.HandleRequest(context.Background(), entityReq)
|
2017-11-03 15:20:10 +00:00
|
|
|
if err != nil || (resp != nil && resp.IsError()) {
|
|
|
|
t.Fatalf("bad: resp: %#v\nerr: %#v\n", resp, err)
|
|
|
|
}
|
|
|
|
entityID := resp.Data["id"].(string)
|
|
|
|
|
|
|
|
// Create a token for the entity and assign policy2 on the token
|
2018-06-08 21:24:27 +00:00
|
|
|
ent := &logical.TokenEntry{
|
2017-11-03 15:20:10 +00:00
|
|
|
ID: "capabilitiestoken",
|
|
|
|
Path: "secret/sample",
|
|
|
|
Policies: []string{"policy2"},
|
|
|
|
EntityID: entityID,
|
2018-06-03 22:14:51 +00:00
|
|
|
TTL: time.Hour,
|
2017-11-03 15:20:10 +00:00
|
|
|
}
|
2018-06-03 22:14:51 +00:00
|
|
|
testMakeTokenDirectly(t, c.tokenStore, ent)
|
2017-11-03 15:20:10 +00:00
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
actual, err := c.Capabilities(context.Background(), "capabilitiestoken", "secret/sample")
|
2017-11-03 15:20:10 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
expected := []string{"create", "read", "sudo", "delete", "update"}
|
|
|
|
sort.Strings(actual)
|
|
|
|
sort.Strings(expected)
|
|
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
|
|
t.Fatalf("bad: got\n%#v\nexpected\n%#v\n", actual, expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a group and add the above created entity to it
|
|
|
|
groupReq := &logical.Request{
|
|
|
|
Path: "group",
|
|
|
|
Operation: logical.UpdateOperation,
|
|
|
|
Data: map[string]interface{}{
|
|
|
|
"member_entity_ids": []string{entityID},
|
|
|
|
"policies": "policy3",
|
|
|
|
},
|
|
|
|
}
|
2018-01-08 18:31:38 +00:00
|
|
|
resp, err = i.HandleRequest(context.Background(), groupReq)
|
2017-11-03 15:20:10 +00:00
|
|
|
if err != nil || (resp != nil && resp.IsError()) {
|
|
|
|
t.Fatalf("bad: resp: %#v\nerr: %#v\n", resp, err)
|
|
|
|
}
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
actual, err = c.Capabilities(context.Background(), "capabilitiestoken", "secret/sample")
|
2017-11-03 15:20:10 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
expected = []string{"create", "read", "sudo", "delete", "update", "list"}
|
|
|
|
sort.Strings(actual)
|
|
|
|
sort.Strings(expected)
|
|
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
|
|
t.Fatalf("bad: got\n%#v\nexpected\n%#v\n", actual, expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-09 17:50:26 +00:00
|
|
|
func TestCapabilities(t *testing.T) {
|
2016-03-05 05:03:55 +00:00
|
|
|
c, _, token := TestCoreUnsealed(t)
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
actual, err := c.Capabilities(context.Background(), token, "path")
|
2016-03-05 05:03:55 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
expected := []string{"root"}
|
|
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
|
|
t.Fatalf("bad: got\n%#v\nexpected\n%#v\n", actual, expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a policy
|
2017-10-23 20:42:56 +00:00
|
|
|
policy, _ := ParseACLPolicy(aclPolicy)
|
2018-01-19 06:44:44 +00:00
|
|
|
err = c.policyStore.SetPolicy(context.Background(), policy)
|
2016-03-05 05:03:55 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a token for the policy
|
2018-06-08 21:24:27 +00:00
|
|
|
ent := &logical.TokenEntry{
|
2016-03-05 05:03:55 +00:00
|
|
|
ID: "capabilitiestoken",
|
|
|
|
Path: "testpath",
|
|
|
|
Policies: []string{"dev"},
|
2018-06-03 22:14:51 +00:00
|
|
|
TTL: time.Hour,
|
2016-03-05 05:03:55 +00:00
|
|
|
}
|
2018-06-03 22:14:51 +00:00
|
|
|
testMakeTokenDirectly(t, c.tokenStore, ent)
|
2016-03-05 05:03:55 +00:00
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
actual, err = c.Capabilities(context.Background(), "capabilitiestoken", "foo/bar")
|
2016-03-05 05:03:55 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2016-03-18 16:55:18 +00:00
|
|
|
expected = []string{"create", "read", "sudo"}
|
2016-03-05 05:03:55 +00:00
|
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
|
|
t.Fatalf("bad: got\n%#v\nexpected\n%#v\n", actual, expected)
|
|
|
|
}
|
|
|
|
}
|