Hashicorp Vault Module

Testcontainers module for Vault. Vault is a tool for managing secrets. More information on Vault here.

Usage example

Running Vault in your Junit tests is easily done with an @Rule or @ClassRule such as the following:

public class SomeTest {

    @ClassRule
    public static VaultContainer vaultContainer = new VaultContainer<>()
            .withVaultToken("my-root-token")
            .withVaultPort(8200)
            .withSecretInVault("secret/testing", "top_secret=password1","db_password=dbpassword1");

    @Test
    public void someTestMethod() {
       //interact with Vault via the container's host, port and Vault token. 

       //There are many integration clients for Vault so let's just define a general one here:
       VaultClient client = new VaultClient(
               vaultContainer.getContainerIpAddress(),
               vaultContainer.getMappedPort(8200),
               "my-root-token");

       List<String> secrets = client.readSecret("secret/testing");

    }

Why Vault in Junit tests?

With the increasing popularity of Vault and secret management, applications are now needing to source secrets from Vault. This can prove challenging in the development phase without a running Vault instance readily on hand. This library aims to solve your apps integration testing with Vault. You can also use it to test how your application behaves with Vault by writing different test scenarios in Junit.

Adding this module to your project dependencies

Add the following dependency to your pom.xml/build.gradle file:

testCompile "org.testcontainers:vault:1.14.1"
<dependency>
    <groupId>org.testcontainers</groupId>
    <artifactId>vault</artifactId>
    <version>1.14.1</version>
    <scope>test</scope>
</dependency>

License

See LICENSE.

Copyright (c) 2017 Capital One Services, LLC and other authors.

See AUTHORS for contributors.