golovnin / embedded-vault

Embedded Vault based on https://github.com/flapdoodle-oss/de.flapdoodle.embed.process

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Embedded Vault

Embedded Vault provides a platform neutral way for running Vault in tests. This library is based on Flapdoodle OSS's embed process.

Gradle

The artifacts are available on JCenter. Therefore you must add JCenter to your build script repositories:

repositories {
    jcenter()
}

Add a Gradle compile dependency to the build.gradle file of your project:

testCompile 'com.github.golovnin:embedded-vault:0.11.1.0'

Usage

Here is the example of how to launch the Vault instance:

VaultServerConfig config = new VaultServerConfig.Builder()
    .build();
VaultServerStarter starter = VaultServerStarter.getDefaultInstance();
VaultServerExecutable executable = starter.prepare(config);
VaultServerProcess process = executable.start();
String unsealKey = process.getUnsealKey();

// Execute your tests here

process.stop();

Here is the example of how to launch the Vault instance using a custom version:

VaultServerConfig config = new VaultServerConfig.Builder()
    .version("0.7.2")
    .build();
VaultServerStarter starter = VaultServerStarter.getDefaultInstance();
VaultServerExecutable executable = starter.prepare(config);
VaultServerProcess process = executable.start();
String unsealKey = process.getUnsealKey();

// Execute your tests here

process.stop();

Supported Vault versions and platforms

Versions: 0.11.1 and any custom

Platforms: Mac OS X, FreeBSD, Linux, Solaris and Windows

Copyright (c) 2018, Andrej Golovnin

About

Embedded Vault based on https://github.com/flapdoodle-oss/de.flapdoodle.embed.process

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Java 100.0%