Added junit testcase for EchoService.java 09/76109/1
authorChandan Ghosh <cghosh12@in.ibm.com>
Tue, 22 Jan 2019 09:32:34 +0000 (15:02 +0530)
committerChandan Ghosh <cghosh12@in.ibm.com>
Tue, 22 Jan 2019 09:32:42 +0000 (15:02 +0530)
Added junit testcse for EchoService

Issue-ID: AAI-2108
Change-Id: I534f00970da5c9b29beb56eb33124ae8b576c42e
Signed-off-by: Chandan Ghosh <cghosh12@in.ibm.com>
src/test/java/org/onap/aai/spike/service/EchoServiceTest.java [new file with mode: 0644]

diff --git a/src/test/java/org/onap/aai/spike/service/EchoServiceTest.java b/src/test/java/org/onap/aai/spike/service/EchoServiceTest.java
new file mode 100644 (file)
index 0000000..05fe1a6
--- /dev/null
@@ -0,0 +1,53 @@
+/**\r
+ * ============LICENSE_START=======================================================\r
+ * org.onap.aai\r
+ * ================================================================================\r
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.\r
+ * Copyright © 2017-2018 Amdocs\r
+ * ================================================================================\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *       http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * ============LICENSE_END=========================================================\r
+ */\r
+package org.onap.aai.spike.service;\r
+\r
+import javax.servlet.http.HttpServletRequest;\r
+\r
+import org.junit.Assert;\r
+import org.junit.Test;\r
+import org.junit.runner.RunWith;\r
+import org.mockito.InjectMocks;\r
+import org.mockito.Mock;\r
+import org.mockito.Mockito;\r
+import org.mockito.junit.MockitoJUnitRunner;\r
+import org.springframework.http.HttpHeaders;\r
+\r
+@RunWith(MockitoJUnitRunner.Silent.class)\r
+public class EchoServiceTest {\r
+\r
+       @InjectMocks\r
+       EchoService echoService;\r
+\r
+       @Mock\r
+       HttpHeaders headers;\r
+\r
+       @Mock\r
+       HttpServletRequest req;\r
+\r
+       @Test\r
+       public void pingTest() {\r
+               Mockito.when(req.getMethod()).thenReturn("GET");\r
+               Mockito.when(req.getRequestURL()).thenReturn(new StringBuffer("url"));\r
+               Mockito.when(req.getRemoteHost()).thenReturn("localhost");\r
+               Assert.assertNotNull(echoService.ping(headers, req));\r
+       }\r
+}\r