aboutsummaryrefslogtreecommitdiffstats
path: root/utils-test
diff options
context:
space:
mode:
authorRam Krishna Verma <ram_krishna.verma@bell.ca>2021-09-20 10:30:43 -0400
committerRam Krishna Verma <ram_krishna.verma@bell.ca>2021-09-20 10:30:51 -0400
commit340dce2b7c9d79c994e4be7f45428820b9b8c50b (patch)
tree920bd61273891b3206ddcb3878ae9f642234fb96 /utils-test
parent7bc41c591380f0d0e267aa5ada8a038d41d0912d (diff)
Revert ignoring tests in common
Reverting the ignoring of tests in common as the staging jobs have been marked to skip tests. Issue-ID: POLICY-3587 Change-Id: Idcb9f432d1f563ba5e072c0c7511de7b650163fa Signed-off-by: Ram Krishna Verma <ram_krishna.verma@bell.ca>
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;