Minor test changes

Changed Thread.sleep() to TimeUnit.SECONDS.sleep()
This commit is contained in:
Stefan Kalscheuer 2018-02-20 19:25:07 +01:00
parent b2082925d5
commit 9362e245ee

View File

@ -35,6 +35,7 @@ import java.nio.file.Paths;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
import java.util.concurrent.TimeUnit;
import static org.apache.commons.io.FileUtils.copyDirectory; import static org.apache.commons.io.FileUtils.copyDirectory;
import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.MatcherAssert.assertThat;
@ -92,7 +93,7 @@ public class HTTPVaultConnectorTest {
/* Initialize Vault */ /* Initialize Vault */
VaultConfiguration config = initializeVault(isTls); VaultConfiguration config = initializeVault(isTls);
try { try {
Thread.sleep(1000); TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) { } catch (InterruptedException e) {
e.printStackTrace(); e.printStackTrace();
} }
@ -905,7 +906,7 @@ public class HTTPVaultConnectorTest {
fail("Overwriting token should fail as of Vault 0.8.0"); fail("Overwriting token should fail as of Vault 0.8.0");
} catch (VaultConnectorException e) { } catch (VaultConnectorException e) {
assertThat(e, is(instanceOf(InvalidResponseException.class))); assertThat(e, is(instanceOf(InvalidResponseException.class)));
assertThat(((InvalidResponseException)e).getStatusCode(), is(400)); assertThat(((InvalidResponseException) e).getStatusCode(), is(400));
/* Assert that the exception does not reveal token ID */ /* Assert that the exception does not reveal token ID */
assertThat(stackTrace(e), not(stringContainsInOrder(token.getId()))); assertThat(stackTrace(e), not(stringContainsInOrder(token.getId())));
} }