summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java16
1 files changed, 14 insertions, 2 deletions
diff --git a/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java b/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java
index 27236ca7..bd701206 100644
--- a/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java
+++ b/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java
@@ -16,12 +16,12 @@
package org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.csm.connect;
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
import org.apache.commons.httpclient.protocol.ProtocolSocketFactory;
import org.junit.Test;
import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.VnfmException;
-import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.csm.connect.SslProtocolSocketFactory;
public class SslProtocolSocketFactoryTest {
@@ -45,4 +45,16 @@ public class SslProtocolSocketFactoryTest {
SslProtocolSocketFactory.getInstance().refresh("Anonymous");
assertTrue(true);
}
+ @Test
+ public void getAnonymousTest() throws VnfmException{
+ String authenticateMode="Anonymous";
+ SslProtocolSocketFactory.getInstance().get(authenticateMode);
+ assertTrue(true);
+ }
+ @Test
+ public void getCertificateTest() throws VnfmException{
+ String authenticateMode="Certificate";
+ SslProtocolSocketFactory.getInstance().get(authenticateMode);
+ assertTrue(true);
+ }
}