open-vault/vault/dynamic_system_view_test.go

152 lines
3.6 KiB
Go

package vault
import (
"testing"
log "github.com/hashicorp/go-hclog"
ldapcred "github.com/hashicorp/vault/builtin/credential/ldap"
"github.com/hashicorp/vault/helper/namespace"
"github.com/hashicorp/vault/sdk/framework"
"github.com/hashicorp/vault/sdk/logical"
)
func TestIdentity_BackendTemplating(t *testing.T) {
var err error
coreConfig := &CoreConfig{
DisableMlock: true,
DisableCache: true,
Logger: log.NewNullLogger(),
CredentialBackends: map[string]logical.Factory{
"ldap": ldapcred.Factory,
},
}
cluster := NewTestCluster(t, coreConfig, &TestClusterOptions{})
cluster.Start()
defer cluster.Cleanup()
core := cluster.Cores[0].Core
TestWaitActive(t, core)
req := logical.TestRequest(t, logical.UpdateOperation, "sys/auth/ldap")
req.ClientToken = cluster.RootToken
req.Data["type"] = "ldap"
resp, err := core.HandleRequest(namespace.RootContext(nil), req)
if err != nil {
t.Fatalf("err: %v", err)
}
if resp != nil {
t.Fatalf("bad: %v", resp)
}
req = logical.TestRequest(t, logical.ReadOperation, "sys/auth")
req.ClientToken = cluster.RootToken
resp, err = core.HandleRequest(namespace.RootContext(nil), req)
if err != nil {
t.Fatalf("err: %v", err)
}
accessor := resp.Data["ldap/"].(map[string]interface{})["accessor"].(string)
// Create an entity
req = logical.TestRequest(t, logical.UpdateOperation, "identity/entity")
req.ClientToken = cluster.RootToken
req.Data["name"] = "entity1"
req.Data["metadata"] = map[string]string{
"organization": "hashicorp",
"team": "vault",
}
resp, err = core.HandleRequest(namespace.RootContext(nil), req)
if err != nil {
t.Fatal(err)
}
entityID := resp.Data["id"].(string)
// Create an alias
req = logical.TestRequest(t, logical.UpdateOperation, "identity/entity-alias")
req.ClientToken = cluster.RootToken
req.Data["name"] = "alias1"
req.Data["canonical_id"] = entityID
req.Data["mount_accessor"] = accessor
resp, err = core.HandleRequest(namespace.RootContext(nil), req)
if err != nil {
t.Fatal(err)
}
aliasID := resp.Data["id"].(string)
// Create a group
req = logical.TestRequest(t, logical.UpdateOperation, "identity/group")
req.ClientToken = cluster.RootToken
req.Data["name"] = "group1"
req.Data["member_entity_ids"] = []string{entityID}
req.Data["metadata"] = map[string]string{
"group": "vault",
}
resp, err = core.HandleRequest(namespace.RootContext(nil), req)
if err != nil {
t.Fatal(err)
}
groupID := resp.Data["id"].(string)
// Get the ldap mount
sysView := core.router.MatchingSystemView(namespace.RootContext(nil), "auth/ldap/")
tCases := []struct {
tpl string
expected string
}{
{
tpl: "{{identity.entity.id}}",
expected: entityID,
},
{
tpl: "{{identity.entity.name}}",
expected: "entity1",
},
{
tpl: "{{identity.entity.metadata.organization}}",
expected: "hashicorp",
},
{
tpl: "{{identity.entity.aliases." + accessor + ".id}}",
expected: aliasID,
},
{
tpl: "{{identity.entity.aliases." + accessor + ".name}}",
expected: "alias1",
},
{
tpl: "{{identity.groups.ids." + groupID + ".name}}",
expected: "group1",
},
{
tpl: "{{identity.groups.names.group1.id}}",
expected: groupID,
},
{
tpl: "{{identity.groups.names.group1.metadata.group}}",
expected: "vault",
},
{
tpl: "{{identity.groups.ids." + groupID + ".metadata.group}}",
expected: "vault",
},
}
for _, tCase := range tCases {
out, err := framework.PopulateIdentityTemplate(tCase.tpl, entityID, sysView)
if err != nil {
t.Fatal(err)
}
if out != tCase.expected {
t.Fatalf("got %q, expected %q", out, tCase.expected)
}
}
}