aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChuanyuChen <chenchuanyu@huawei.com>2022-09-01 16:13:50 +0800
committerChuanyuChen <chenchuanyu@huawei.com>2022-09-01 16:13:50 +0800
commit36ec2e8babb52bdc3c7cd71132400f61ead6a965 (patch)
tree405db774e9e6c91b618faf436a90b04b949a304d
parentd004c121a83dfea3654d9ac47bd558e2237b7e6f (diff)
Add RestFulServices UT
Add RestFulServices UT Issue-ID: USECASEUI-716 Signed-off-by: ChuanyuChen <chenchuanyu@huawei.com> Change-Id: I17b1773fe1a042362ee8eec565b3ee7388687700
-rw-r--r--intentanalysis/src/test/java/org/onap/usecaseui/intentanalysis/test/util/RestFulServicesTest.java78
1 files changed, 78 insertions, 0 deletions
diff --git a/intentanalysis/src/test/java/org/onap/usecaseui/intentanalysis/test/util/RestFulServicesTest.java b/intentanalysis/src/test/java/org/onap/usecaseui/intentanalysis/test/util/RestFulServicesTest.java
new file mode 100644
index 0000000..6af9820
--- /dev/null
+++ b/intentanalysis/src/test/java/org/onap/usecaseui/intentanalysis/test/util/RestFulServicesTest.java
@@ -0,0 +1,78 @@
+/*
+ * Copyright 2022 Huawei Technologies Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ */
+
+package org.onap.usecaseui.intentanalysis.test.util;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.UnsupportedEncodingException;
+import java.security.Principal;
+import java.util.Collection;
+import java.util.Enumeration;
+import java.util.Locale;
+import java.util.Map;
+import javax.servlet.AsyncContext;
+import javax.servlet.DispatcherType;
+import javax.servlet.RequestDispatcher;
+import javax.servlet.ServletContext;
+import javax.servlet.ServletException;
+import javax.servlet.ServletInputStream;
+import javax.servlet.ServletRequest;
+import javax.servlet.ServletResponse;
+import javax.servlet.http.Cookie;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.servlet.http.HttpSession;
+import javax.servlet.http.HttpUpgradeHandler;
+import javax.servlet.http.Part;
+import okhttp3.RequestBody;
+import org.junit.Assert;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.onap.usecaseui.intentanalysis.adapters.policy.apicall.PolicyAPICall;
+import org.onap.usecaseui.intentanalysis.test.IntentAnalysisApplicationTests;
+import org.onap.usecaseui.intentanalysis.util.RestfulServices;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.mock.web.MockHttpServletRequest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@SpringBootTest(classes = IntentAnalysisApplicationTests.class)
+@RunWith(SpringRunner.class)
+public class RestFulServicesTest {
+
+ @Test
+ public void testCreateSuccess() {
+ PolicyAPICall call = RestfulServices.create("https://localhost/testurl/", PolicyAPICall.class);
+ Assert.assertNotNull(call);
+ }
+
+ @Test
+ public void testCreateWithAuthSuccess() {
+ PolicyAPICall call = RestfulServices.create(PolicyAPICall.class, "testUser", "testPwd");
+ Assert.assertNotNull(call);
+ }
+
+ @Test
+ public void testGetMSBAddressSuccess() {
+ String msbAddress = RestfulServices.getMSBIAGAddress();
+ Assert.assertNotNull(msbAddress);
+ }
+
+ @Test
+ public void testExtractBodySuccess() throws IOException {
+ HttpServletRequest request = new MockHttpServletRequest();
+ RequestBody requestBody = RestfulServices.extractBody(request);
+ Assert.assertNotNull(requestBody);
+ }
+}