aboutsummaryrefslogtreecommitdiffstats
path: root/utils-test
diff options
context:
space:
mode:
Diffstat (limited to 'utils-test')
-rw-r--r--utils-test/src/test/java/org/onap/policy/common/utils/security/SelfSignedKeyStoreTest.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/utils-test/src/test/java/org/onap/policy/common/utils/security/SelfSignedKeyStoreTest.java b/utils-test/src/test/java/org/onap/policy/common/utils/security/SelfSignedKeyStoreTest.java
index b80dc2dc..62565bde 100644
--- a/utils-test/src/test/java/org/onap/policy/common/utils/security/SelfSignedKeyStoreTest.java
+++ b/utils-test/src/test/java/org/onap/policy/common/utils/security/SelfSignedKeyStoreTest.java
@@ -29,7 +29,6 @@ import java.io.IOException;
import java.util.concurrent.TimeUnit;
import org.junit.Before;
import org.junit.BeforeClass;
-import org.junit.Ignore;
import org.junit.Test;
public class SelfSignedKeyStoreTest {
@@ -56,7 +55,6 @@ public class SelfSignedKeyStoreTest {
delete(defaultKeystore);
}
- @Ignore
@Test
public void testSelfSignedKeyStore() throws Exception {
SelfSignedKeyStore ks = new SelfSignedKeyStore();
@@ -65,7 +63,6 @@ public class SelfSignedKeyStoreTest {
assertThat(defaultKeystore).exists();
}
- @Ignore
@Test
public void testSelfSignedKeyStoreString() throws IOException, InterruptedException {
String relName = "target/my-keystore";
@@ -83,7 +80,6 @@ public class SelfSignedKeyStoreTest {
/**
* Tests the constructor, when the keystore already exists.
*/
- @Ignore
@Test
public void testSelfSignedKeyStoreStringExists() throws Exception {
new SelfSignedKeyStore();
@@ -124,14 +120,12 @@ public class SelfSignedKeyStoreTest {
/**
* Tests the constructor, when keytool fails.
*/
- @Ignore
@Test
public void testSelfSignedKeyStoreStringKeytoolFailure() throws Exception {
assertThatThrownBy(() -> new SelfSignedKeyStore("target/unknown/path/to/keystore"))
.isInstanceOf(IOException.class).hasMessageContaining("keytool exited with");
}
- @Ignore
@Test
public void testGetKeystoreName() throws Exception {
String relpath = SelfSignedKeyStore.RELATIVE_PATH;