-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AppRole: Cleanup accessor indexes and dangling accessor indexes (#3924)
* Cleanup accessor indexes and dangling accessor indexes * Add a test that exercises the accessor cleanup
- Loading branch information
1 parent
85c7b52
commit 462caf4
Showing
2 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package approle | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"github.com/hashicorp/vault/logical" | ||
) | ||
|
||
func TestAppRole_TidyDanglingAccessors(t *testing.T) { | ||
var resp *logical.Response | ||
var err error | ||
b, storage := createBackendWithStorage(t) | ||
|
||
// Create a role | ||
createRole(t, b, storage, "role1", "a,b,c") | ||
|
||
// Create a secret-id | ||
roleSecretIDReq := &logical.Request{ | ||
Operation: logical.UpdateOperation, | ||
Path: "role/role1/secret-id", | ||
Storage: storage, | ||
} | ||
resp, err = b.HandleRequest(context.Background(), roleSecretIDReq) | ||
if err != nil || (resp != nil && resp.IsError()) { | ||
t.Fatalf("err:%v resp:%#v", err, resp) | ||
} | ||
|
||
accessorHashes, err := storage.List(context.Background(), "accessor/") | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if len(accessorHashes) != 1 { | ||
t.Fatalf("bad: len(accessorHashes); expect 1, got %d", len(accessorHashes)) | ||
} | ||
|
||
entry1, err := logical.StorageEntryJSON( | ||
"accessor/invalid1", | ||
&secretIDAccessorStorageEntry{ | ||
SecretIDHMAC: "samplesecretidhmac", | ||
}, | ||
) | ||
err = storage.Put(context.Background(), entry1) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
entry2, err := logical.StorageEntryJSON( | ||
"accessor/invalid2", | ||
&secretIDAccessorStorageEntry{ | ||
SecretIDHMAC: "samplesecretidhmac2", | ||
}, | ||
) | ||
err = storage.Put(context.Background(), entry2) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
accessorHashes, err = storage.List(context.Background(), "accessor/") | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if len(accessorHashes) != 3 { | ||
t.Fatalf("bad: len(accessorHashes); expect 3, got %d", len(accessorHashes)) | ||
} | ||
|
||
err = b.tidySecretID(context.Background(), storage) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
accessorHashes, err = storage.List(context.Background(), "accessor/") | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if len(accessorHashes) != 1 { | ||
t.Fatalf("bad: len(accessorHashes); expect 1, got %d", len(accessorHashes)) | ||
} | ||
} |