Test against 0.9.4
This commit is contained in:
parent
5f419e3f9b
commit
41c15f285c
@ -14,10 +14,10 @@ addons:
|
|||||||
env:
|
env:
|
||||||
- PATH=$PATH:.
|
- PATH=$PATH:.
|
||||||
before_script:
|
before_script:
|
||||||
- wget https://releases.hashicorp.com/vault/0.9.3/vault_0.9.3_linux_amd64.zip
|
- wget https://releases.hashicorp.com/vault/0.9.4/vault_0.9.4_linux_amd64.zip
|
||||||
- wget -q -O - https://releases.hashicorp.com/vault/0.9.3/vault_0.9.3_SHA256SUMS | grep linux_amd64 | sha256sum -c
|
- wget -q -O - https://releases.hashicorp.com/vault/0.9.4/vault_0.9.4_SHA256SUMS | grep linux_amd64 | sha256sum -c
|
||||||
- unzip vault_0.9.3_linux_amd64.zip
|
- unzip vault_0.9.4_linux_amd64.zip
|
||||||
- rm vault_0.9.3_linux_amd64.zip
|
- rm vault_0.9.4_linux_amd64.zip
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- '$HOME/.m2/repository'
|
- '$HOME/.m2/repository'
|
||||||
|
@ -31,7 +31,7 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject
|
|||||||
* Raw secret content or JSON decoding
|
* Raw secret content or JSON decoding
|
||||||
* SQL secret handling
|
* SQL secret handling
|
||||||
* Connector Factory with builder pattern
|
* Connector Factory with builder pattern
|
||||||
* Tested against Vault 0.9.3
|
* Tested against Vault 0.9.4
|
||||||
|
|
||||||
|
|
||||||
## Maven Artifact
|
## Maven Artifact
|
||||||
|
@ -56,7 +56,7 @@ import static org.junit.jupiter.api.Assumptions.assumeTrue;
|
|||||||
*/
|
*/
|
||||||
@EnableRuleMigrationSupport
|
@EnableRuleMigrationSupport
|
||||||
public class HTTPVaultConnectorTest {
|
public class HTTPVaultConnectorTest {
|
||||||
private static final String VAULT_VERISON = "0.9.3"; // the vault version this test is supposed to run against
|
private static final String VAULT_VERISON = "0.9.4"; // the vault version this test is supposed to run against
|
||||||
private static final String KEY = "81011a8061e5c028bd0d9503eeba40bd9054b9af0408d080cb24f57405c27a61";
|
private static final String KEY = "81011a8061e5c028bd0d9503eeba40bd9054b9af0408d080cb24f57405c27a61";
|
||||||
private static final String TOKEN_ROOT = "d1bd50e2-587b-6e68-d80b-a9a507625cb7";
|
private static final String TOKEN_ROOT = "d1bd50e2-587b-6e68-d80b-a9a507625cb7";
|
||||||
private static final String USER_VALID = "validUser";
|
private static final String USER_VALID = "validUser";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user