-
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.
Merge pull request #2886 from hashicorp/sethvargo/renew_api
Add API helper for renewing a secret
- Loading branch information
Showing
5 changed files
with
731 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
package api_test | ||
|
||
import ( | ||
"database/sql" | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/hashicorp/vault/api" | ||
"github.com/hashicorp/vault/builtin/logical/pki" | ||
"github.com/hashicorp/vault/builtin/logical/transit" | ||
"github.com/hashicorp/vault/logical" | ||
"github.com/hashicorp/vault/vault" | ||
|
||
vaulthttp "github.com/hashicorp/vault/http" | ||
logxi "github.com/mgutz/logxi/v1" | ||
dockertest "gopkg.in/ory-am/dockertest.v3" | ||
) | ||
|
||
var testVaultServerDefaultBackends = map[string]logical.Factory{ | ||
"transit": transit.Factory, | ||
"pki": pki.Factory, | ||
} | ||
|
||
func testVaultServer(t testing.TB) (*api.Client, func()) { | ||
return testVaultServerBackends(t, testVaultServerDefaultBackends) | ||
} | ||
|
||
func testVaultServerBackends(t testing.TB, backends map[string]logical.Factory) (*api.Client, func()) { | ||
coreConfig := &vault.CoreConfig{ | ||
DisableMlock: true, | ||
DisableCache: true, | ||
Logger: logxi.NullLog, | ||
LogicalBackends: backends, | ||
} | ||
|
||
cluster := vault.NewTestCluster(t, coreConfig, true) | ||
cluster.StartListeners() | ||
for _, core := range cluster.Cores { | ||
core.Handler.Handle("/", vaulthttp.Handler(core.Core)) | ||
} | ||
|
||
// make it easy to get access to the active | ||
core := cluster.Cores[0].Core | ||
vault.TestWaitActive(t, core) | ||
|
||
// Grab the root token | ||
rootToken := cluster.Cores[0].Root | ||
|
||
client := cluster.Cores[0].Client | ||
client.SetToken(rootToken) | ||
|
||
// Sanity check | ||
secret, err := client.Auth().Token().LookupSelf() | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if secret == nil || secret.Data["id"].(string) != rootToken { | ||
t.Fatalf("token mismatch: %#v vs %q", secret, rootToken) | ||
} | ||
return client, func() { defer cluster.CloseListeners() } | ||
} | ||
|
||
// testPostgresDB creates a testing postgres database in a Docker container, | ||
// returning the connection URL and the associated closer function. | ||
func testPostgresDB(t testing.TB) (string, func()) { | ||
pool, err := dockertest.NewPool("") | ||
if err != nil { | ||
t.Fatalf("postgresdb: failed to connect to docker: %s", err) | ||
} | ||
|
||
resource, err := pool.Run("postgres", "latest", []string{ | ||
"POSTGRES_PASSWORD=secret", | ||
"POSTGRES_DB=database", | ||
}) | ||
if err != nil { | ||
t.Fatalf("postgresdb: could not start container: %s", err) | ||
} | ||
|
||
addr := fmt.Sprintf("postgres://postgres:secret@localhost:%s/database?sslmode=disable", resource.GetPort("5432/tcp")) | ||
|
||
if err := pool.Retry(func() error { | ||
db, err := sql.Open("postgres", addr) | ||
if err != nil { | ||
return err | ||
} | ||
return db.Ping() | ||
}); err != nil { | ||
t.Fatalf("postgresdb: could not connect: %s", err) | ||
} | ||
|
||
return addr, func() { | ||
if err := pool.Purge(resource); err != nil { | ||
t.Fatalf("postgresdb: failed to cleanup container: %s", err) | ||
} | ||
} | ||
} |
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
Oops, something went wrong.