2017-10-11 17:21:20 +00:00
|
|
|
package vault
|
|
|
|
|
|
|
|
import (
|
2018-01-08 18:31:38 +00:00
|
|
|
"context"
|
2017-10-11 17:21:20 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2018-08-09 20:37:36 +00:00
|
|
|
"github.com/go-test/deep"
|
|
|
|
"github.com/golang/protobuf/ptypes"
|
2018-05-31 14:18:34 +00:00
|
|
|
uuid "github.com/hashicorp/go-uuid"
|
2017-10-11 17:21:20 +00:00
|
|
|
credGithub "github.com/hashicorp/vault/builtin/credential/github"
|
2018-08-09 20:37:36 +00:00
|
|
|
"github.com/hashicorp/vault/helper/identity"
|
|
|
|
"github.com/hashicorp/vault/helper/storagepacker"
|
2017-10-11 17:21:20 +00:00
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
)
|
|
|
|
|
2018-05-31 14:18:34 +00:00
|
|
|
func TestIdentityStore_EntityIDPassthrough(t *testing.T) {
|
|
|
|
// Enable GitHub auth and initialize
|
|
|
|
is, ghAccessor, core := testIdentityStoreWithGithubAuth(t)
|
|
|
|
alias := &logical.Alias{
|
|
|
|
MountType: "github",
|
|
|
|
MountAccessor: ghAccessor,
|
|
|
|
Name: "githubuser",
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create an entity with GitHub alias
|
|
|
|
entity, err := is.CreateOrFetchEntity(alias)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if entity == nil {
|
|
|
|
t.Fatalf("expected a non-nil entity")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a token with the above created entity set on it
|
2018-06-08 21:24:27 +00:00
|
|
|
ent := &logical.TokenEntry{
|
2018-05-31 14:18:34 +00:00
|
|
|
ID: "testtokenid",
|
|
|
|
Path: "test",
|
|
|
|
Policies: []string{"root"},
|
|
|
|
CreationTime: time.Now().Unix(),
|
|
|
|
EntityID: entity.ID,
|
|
|
|
}
|
|
|
|
if err := core.tokenStore.create(context.Background(), ent); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set a request handler to the noop backend which responds with the entity
|
|
|
|
// ID received in the request object
|
|
|
|
requestHandler := func(ctx context.Context, req *logical.Request) (*logical.Response, error) {
|
|
|
|
return &logical.Response{
|
|
|
|
Data: map[string]interface{}{
|
|
|
|
"entity_id": req.EntityID,
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
noop := &NoopBackend{
|
|
|
|
RequestHandler: requestHandler,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mount the noop backend
|
|
|
|
_, barrier, _ := mockBarrier(t)
|
|
|
|
view := NewBarrierView(barrier, "logical/")
|
|
|
|
meUUID, err := uuid.GenerateUUID()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
err = core.router.Mount(noop, "test/backend/", &MountEntry{Path: "test/backend/", Type: "noop", UUID: meUUID, Accessor: "noop-accessor"}, view)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the request with the above created token
|
2018-07-24 21:50:49 +00:00
|
|
|
resp, err := core.HandleRequest(context.Background(), &logical.Request{
|
2018-05-31 14:18:34 +00:00
|
|
|
ClientToken: "testtokenid",
|
|
|
|
Operation: logical.ReadOperation,
|
|
|
|
Path: "test/backend/foo",
|
|
|
|
})
|
|
|
|
if err != nil || (resp != nil && resp.IsError()) {
|
|
|
|
t.Fatalf("bad: resp: %#v\n err: %v", resp, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expected entity ID to be in the response
|
|
|
|
if resp.Data["entity_id"] != entity.ID {
|
|
|
|
t.Fatalf("expected entity ID to be passed through to the backend")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-09 15:40:56 +00:00
|
|
|
func TestIdentityStore_CreateOrFetchEntity(t *testing.T) {
|
2017-10-11 17:21:20 +00:00
|
|
|
is, ghAccessor, _ := testIdentityStoreWithGithubAuth(t)
|
|
|
|
alias := &logical.Alias{
|
|
|
|
MountType: "github",
|
|
|
|
MountAccessor: ghAccessor,
|
|
|
|
Name: "githubuser",
|
|
|
|
}
|
|
|
|
|
2018-02-09 15:40:56 +00:00
|
|
|
entity, err := is.CreateOrFetchEntity(alias)
|
2017-10-11 17:21:20 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if entity == nil {
|
|
|
|
t.Fatalf("expected a non-nil entity")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(entity.Aliases) != 1 {
|
|
|
|
t.Fatalf("bad: length of aliases; expected: 1, actual: %d", len(entity.Aliases))
|
|
|
|
}
|
|
|
|
|
|
|
|
if entity.Aliases[0].Name != alias.Name {
|
|
|
|
t.Fatalf("bad: alias name; expected: %q, actual: %q", alias.Name, entity.Aliases[0].Name)
|
|
|
|
}
|
|
|
|
|
2018-02-09 15:40:56 +00:00
|
|
|
entity, err = is.CreateOrFetchEntity(alias)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if entity == nil {
|
|
|
|
t.Fatalf("expected a non-nil entity")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(entity.Aliases) != 1 {
|
|
|
|
t.Fatalf("bad: length of aliases; expected: 1, actual: %d", len(entity.Aliases))
|
|
|
|
}
|
|
|
|
|
|
|
|
if entity.Aliases[0].Name != alias.Name {
|
|
|
|
t.Fatalf("bad: alias name; expected: %q, actual: %q", alias.Name, entity.Aliases[0].Name)
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIdentityStore_EntityByAliasFactors(t *testing.T) {
|
|
|
|
var err error
|
|
|
|
var resp *logical.Response
|
|
|
|
|
|
|
|
is, ghAccessor, _ := testIdentityStoreWithGithubAuth(t)
|
|
|
|
|
|
|
|
registerData := map[string]interface{}{
|
|
|
|
"name": "testentityname",
|
|
|
|
"metadata": []string{"someusefulkey=someusefulvalue"},
|
|
|
|
"policies": []string{"testpolicy1", "testpolicy2"},
|
|
|
|
}
|
|
|
|
|
|
|
|
registerReq := &logical.Request{
|
|
|
|
Operation: logical.UpdateOperation,
|
|
|
|
Path: "entity",
|
|
|
|
Data: registerData,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register the entity
|
2018-01-08 18:31:38 +00:00
|
|
|
resp, err = is.HandleRequest(context.Background(), registerReq)
|
2017-10-11 17:21:20 +00:00
|
|
|
if err != nil || (resp != nil && resp.IsError()) {
|
|
|
|
t.Fatalf("err:%v resp:%#v", err, resp)
|
|
|
|
}
|
|
|
|
idRaw, ok := resp.Data["id"]
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("entity id not present in response")
|
|
|
|
}
|
|
|
|
entityID := idRaw.(string)
|
|
|
|
if entityID == "" {
|
|
|
|
t.Fatalf("invalid entity id")
|
|
|
|
}
|
|
|
|
|
|
|
|
aliasData := map[string]interface{}{
|
|
|
|
"entity_id": entityID,
|
|
|
|
"name": "alias_name",
|
|
|
|
"mount_accessor": ghAccessor,
|
|
|
|
}
|
|
|
|
aliasReq := &logical.Request{
|
|
|
|
Operation: logical.UpdateOperation,
|
|
|
|
Path: "alias",
|
|
|
|
Data: aliasData,
|
|
|
|
}
|
|
|
|
|
2018-01-08 18:31:38 +00:00
|
|
|
resp, err = is.HandleRequest(context.Background(), aliasReq)
|
2017-10-11 17:21:20 +00:00
|
|
|
if err != nil || (resp != nil && resp.IsError()) {
|
|
|
|
t.Fatalf("err:%v resp:%#v", err, resp)
|
|
|
|
}
|
|
|
|
if resp == nil {
|
|
|
|
t.Fatalf("expected a non-nil response")
|
|
|
|
}
|
|
|
|
|
2017-11-02 20:05:48 +00:00
|
|
|
entity, err := is.entityByAliasFactors(ghAccessor, "alias_name", false)
|
2017-10-11 17:21:20 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if entity == nil {
|
|
|
|
t.Fatalf("expected a non-nil entity")
|
|
|
|
}
|
|
|
|
if entity.ID != entityID {
|
|
|
|
t.Fatalf("bad: entity ID; expected: %q actual: %q", entityID, entity.ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIdentityStore_WrapInfoInheritance(t *testing.T) {
|
|
|
|
var err error
|
|
|
|
var resp *logical.Response
|
|
|
|
|
|
|
|
core, is, ts, _ := testCoreWithIdentityTokenGithub(t)
|
|
|
|
|
|
|
|
registerData := map[string]interface{}{
|
|
|
|
"name": "testentityname",
|
|
|
|
"metadata": []string{"someusefulkey=someusefulvalue"},
|
|
|
|
"policies": []string{"testpolicy1", "testpolicy2"},
|
|
|
|
}
|
|
|
|
|
|
|
|
registerReq := &logical.Request{
|
|
|
|
Operation: logical.UpdateOperation,
|
|
|
|
Path: "entity",
|
|
|
|
Data: registerData,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register the entity
|
2018-01-08 18:31:38 +00:00
|
|
|
resp, err = is.HandleRequest(context.Background(), registerReq)
|
2017-10-11 17:21:20 +00:00
|
|
|
if err != nil || (resp != nil && resp.IsError()) {
|
|
|
|
t.Fatalf("err:%v resp:%#v", err, resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
idRaw, ok := resp.Data["id"]
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("entity id not present in response")
|
|
|
|
}
|
|
|
|
entityID := idRaw.(string)
|
|
|
|
if entityID == "" {
|
|
|
|
t.Fatalf("invalid entity id")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a token which has EntityID set and has update permissions to
|
|
|
|
// sys/wrapping/wrap
|
2018-06-08 21:24:27 +00:00
|
|
|
te := &logical.TokenEntry{
|
2017-10-11 17:21:20 +00:00
|
|
|
Path: "test",
|
|
|
|
Policies: []string{"default", responseWrappingPolicyName},
|
|
|
|
EntityID: entityID,
|
2018-06-03 22:14:51 +00:00
|
|
|
TTL: time.Hour,
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
2018-06-03 22:14:51 +00:00
|
|
|
testMakeTokenDirectly(t, ts, te)
|
2017-10-11 17:21:20 +00:00
|
|
|
|
|
|
|
wrapReq := &logical.Request{
|
|
|
|
Path: "sys/wrapping/wrap",
|
|
|
|
ClientToken: te.ID,
|
|
|
|
Operation: logical.UpdateOperation,
|
|
|
|
Data: map[string]interface{}{
|
|
|
|
"foo": "bar",
|
|
|
|
},
|
|
|
|
WrapInfo: &logical.RequestWrapInfo{
|
|
|
|
TTL: time.Duration(5 * time.Second),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-07-24 21:50:49 +00:00
|
|
|
resp, err = core.HandleRequest(context.Background(), wrapReq)
|
2017-10-11 17:21:20 +00:00
|
|
|
if err != nil || (resp != nil && resp.IsError()) {
|
|
|
|
t.Fatalf("bad: resp: %#v, err: %v", resp, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.WrapInfo == nil {
|
|
|
|
t.Fatalf("expected a non-nil WrapInfo")
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.WrapInfo.WrappedEntityID != entityID {
|
|
|
|
t.Fatalf("bad: WrapInfo in response not having proper entity ID set; expected: %q, actual:%q", entityID, resp.WrapInfo.WrappedEntityID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIdentityStore_TokenEntityInheritance(t *testing.T) {
|
2018-06-03 22:14:51 +00:00
|
|
|
c, _, _ := TestCoreUnsealed(t)
|
|
|
|
ts := c.tokenStore
|
2017-10-11 17:21:20 +00:00
|
|
|
|
|
|
|
// Create a token which has EntityID set
|
2018-06-08 21:24:27 +00:00
|
|
|
te := &logical.TokenEntry{
|
2017-10-11 17:21:20 +00:00
|
|
|
Path: "test",
|
|
|
|
Policies: []string{"dev", "prod"},
|
|
|
|
EntityID: "testentityid",
|
2018-06-03 22:14:51 +00:00
|
|
|
TTL: time.Hour,
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
2018-06-03 22:14:51 +00:00
|
|
|
testMakeTokenDirectly(t, ts, te)
|
2017-10-11 17:21:20 +00:00
|
|
|
|
|
|
|
// Create a child token; this should inherit the EntityID
|
|
|
|
tokenReq := &logical.Request{
|
|
|
|
Operation: logical.UpdateOperation,
|
|
|
|
Path: "create",
|
|
|
|
ClientToken: te.ID,
|
|
|
|
}
|
|
|
|
|
2018-01-08 18:31:38 +00:00
|
|
|
resp, err := ts.HandleRequest(context.Background(), tokenReq)
|
2017-10-11 17:21:20 +00:00
|
|
|
if err != nil || (resp != nil && resp.IsError()) {
|
|
|
|
t.Fatalf("bad: resp: %#v err: %v", err, resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.Auth.EntityID != te.EntityID {
|
|
|
|
t.Fatalf("bad: entity ID; expected: %v, actual: %v", te.EntityID, resp.Auth.EntityID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create an orphan token; this should not inherit the EntityID
|
|
|
|
tokenReq.Path = "create-orphan"
|
2018-01-08 18:31:38 +00:00
|
|
|
resp, err = ts.HandleRequest(context.Background(), tokenReq)
|
2017-10-11 17:21:20 +00:00
|
|
|
if err != nil || (resp != nil && resp.IsError()) {
|
|
|
|
t.Fatalf("bad: resp: %#v err: %v", err, resp)
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.Auth.EntityID != "" {
|
|
|
|
t.Fatalf("expected entity ID to be not set")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 20:37:36 +00:00
|
|
|
func TestIdentityStore_MergeConflictingAliases(t *testing.T) {
|
|
|
|
err := AddTestCredentialBackend("github", credGithub.Factory)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
c, unsealKey, root := TestCoreUnsealed(t)
|
|
|
|
|
|
|
|
meGH := &MountEntry{
|
|
|
|
Table: credentialTableType,
|
|
|
|
Path: "github/",
|
|
|
|
Type: "github",
|
|
|
|
Description: "github auth",
|
|
|
|
}
|
|
|
|
|
|
|
|
err = c.enableCredential(context.Background(), meGH)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
alias := &identity.Alias{
|
|
|
|
ID: "alias1",
|
|
|
|
CanonicalID: "entity1",
|
|
|
|
MountType: "github",
|
|
|
|
MountAccessor: meGH.Accessor,
|
|
|
|
Name: "githubuser",
|
|
|
|
}
|
|
|
|
entity := &identity.Entity{
|
|
|
|
ID: "entity1",
|
|
|
|
Name: "name1",
|
|
|
|
Policies: []string{"foo", "bar"},
|
|
|
|
Aliases: []*identity.Alias{
|
|
|
|
alias,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
entity.BucketKeyHash = c.identityStore.entityPacker.BucketKeyHashByItemID(entity.ID)
|
|
|
|
// Now add the alias to two entities, skipping all existing checking by
|
|
|
|
// writing directly
|
|
|
|
entityAny, err := ptypes.MarshalAny(entity)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
item := &storagepacker.Item{
|
|
|
|
ID: entity.ID,
|
|
|
|
Message: entityAny,
|
|
|
|
}
|
|
|
|
if err = c.identityStore.entityPacker.PutItem(item); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
entity.ID = "entity2"
|
|
|
|
entity.Name = "name2"
|
|
|
|
entity.Policies = []string{"bar", "baz"}
|
|
|
|
alias.ID = "alias2"
|
|
|
|
alias.CanonicalID = "entity2"
|
|
|
|
entity.BucketKeyHash = c.identityStore.entityPacker.BucketKeyHashByItemID(entity.ID)
|
|
|
|
entityAny, err = ptypes.MarshalAny(entity)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
item = &storagepacker.Item{
|
|
|
|
ID: entity.ID,
|
|
|
|
Message: entityAny,
|
|
|
|
}
|
|
|
|
if err = c.identityStore.entityPacker.PutItem(item); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Seal and unseal. If things are broken, we will now fail to unseal.
|
|
|
|
if err = c.Seal(root); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var unsealed bool
|
|
|
|
for i := 0; i < 3; i++ {
|
|
|
|
unsealed, err = c.Unseal(unsealKey[i])
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !unsealed {
|
|
|
|
t.Fatal("still sealed")
|
|
|
|
}
|
|
|
|
|
|
|
|
newEntity, err := c.identityStore.CreateOrFetchEntity(&logical.Alias{
|
|
|
|
MountAccessor: meGH.Accessor,
|
|
|
|
MountType: "github",
|
|
|
|
Name: "githubuser",
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if newEntity == nil {
|
|
|
|
t.Fatal("nil new entity")
|
|
|
|
}
|
|
|
|
|
|
|
|
entityToUse := "entity1"
|
|
|
|
if newEntity.ID == "entity1" {
|
|
|
|
entityToUse = "entity2"
|
|
|
|
}
|
|
|
|
if len(newEntity.MergedEntityIDs) != 1 || newEntity.MergedEntityIDs[0] != entityToUse {
|
|
|
|
t.Fatalf("bad merged entity ids: %v", newEntity.MergedEntityIDs)
|
|
|
|
}
|
|
|
|
if diff := deep.Equal(newEntity.Policies, []string{"bar", "baz", "foo"}); diff != nil {
|
|
|
|
t.Fatal(diff)
|
|
|
|
}
|
|
|
|
|
|
|
|
newEntity, err = c.identityStore.MemDBEntityByID(entityToUse, false)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if newEntity != nil {
|
|
|
|
t.Fatal("got a non-nil entity")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-11 17:21:20 +00:00
|
|
|
func testCoreWithIdentityTokenGithub(t *testing.T) (*Core, *IdentityStore, *TokenStore, string) {
|
|
|
|
is, ghAccessor, core := testIdentityStoreWithGithubAuth(t)
|
2018-06-03 22:14:51 +00:00
|
|
|
return core, is, core.tokenStore, ghAccessor
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 20:31:32 +00:00
|
|
|
func testCoreWithIdentityTokenGithubRoot(t *testing.T) (*Core, *IdentityStore, *TokenStore, string, string) {
|
|
|
|
is, ghAccessor, core, root := testIdentityStoreWithGithubAuthRoot(t)
|
2018-06-03 22:14:51 +00:00
|
|
|
return core, is, core.tokenStore, ghAccessor, root
|
2017-11-13 20:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func testIdentityStoreWithGithubAuth(t *testing.T) (*IdentityStore, string, *Core) {
|
|
|
|
is, ghA, c, _ := testIdentityStoreWithGithubAuthRoot(t)
|
|
|
|
return is, ghA, c
|
|
|
|
}
|
|
|
|
|
2018-06-19 16:57:19 +00:00
|
|
|
// testIdentityStoreWithGithubAuthRoot returns an instance of identity store
|
|
|
|
// which is mounted by default. This function also enables the github auth
|
|
|
|
// backend to assist with testing aliases and entities that require an valid
|
|
|
|
// mount accessor of an auth backend.
|
2017-11-13 20:31:32 +00:00
|
|
|
func testIdentityStoreWithGithubAuthRoot(t *testing.T) (*IdentityStore, string, *Core, string) {
|
2017-10-11 17:21:20 +00:00
|
|
|
// Add github credential factory to core config
|
|
|
|
err := AddTestCredentialBackend("github", credGithub.Factory)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
2017-11-13 20:31:32 +00:00
|
|
|
c, _, root := TestCoreUnsealed(t)
|
2017-10-11 17:21:20 +00:00
|
|
|
|
|
|
|
meGH := &MountEntry{
|
|
|
|
Table: credentialTableType,
|
|
|
|
Path: "github/",
|
|
|
|
Type: "github",
|
|
|
|
Description: "github auth",
|
|
|
|
}
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
err = c.enableCredential(context.Background(), meGH)
|
2017-10-11 17:21:20 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2018-06-19 16:57:19 +00:00
|
|
|
return c.identityStore, meGH.Accessor, c, root
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestIdentityStore_MetadataKeyRegex(t *testing.T) {
|
|
|
|
key := "validVALID012_-=+/"
|
|
|
|
|
|
|
|
if !metaKeyFormatRegEx(key) {
|
|
|
|
t.Fatal("failed to accept valid metadata key")
|
|
|
|
}
|
|
|
|
|
|
|
|
key = "a:b"
|
|
|
|
if metaKeyFormatRegEx(key) {
|
|
|
|
t.Fatal("accepted invalid metadata key")
|
|
|
|
}
|
|
|
|
}
|