Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / activiti-extension / src / test / java / org / onap / workflow / activitiext / restservicetask / HttpUtilTest.java
index b117b97..2852e29 100644 (file)
@@ -19,95 +19,135 @@ import static org.powermock.api.mockito.PowerMockito.mock;
 
 import org.activiti.engine.ActivitiException;
 import org.activiti.engine.delegate.DelegateExecution;
+import org.activiti.engine.delegate.Expression;
 import org.activiti.engine.impl.persistence.entity.ExecutionEntity;
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.mockito.Mockito;
 import org.onap.workflow.activitiext.common.Parameter;
 import org.onap.workflow.activitiext.common.RestInfo;
 import org.powermock.api.mockito.PowerMockito;
-import org.powermock.core.classloader.annotations.PrepareForTest;
-import org.powermock.modules.junit4.PowerMockRunner;
 
-@PrepareForTest({HighLevelRestApi.class})
-@RunWith(PowerMockRunner.class)
+import com.alibaba.fastjson.JSON;
+
 public class HttpUtilTest {
 
-       private HttpUtil httpUtil;
-
-       @Before
-       public void setUp() {
-               httpUtil = new HttpUtil();
-       }
-       
-       @Test
-       public void testExecute(){
-               
-               DelegateExecution executionEntity = mock(ExecutionEntity.class);
-               
-               HttpUtil httpUtil1 = mock(HttpUtil.class);;
-               try {
-                       httpUtil1.execute(executionEntity);
-                       
-                       Assert.assertTrue(true);
-               } catch (Exception e) {
-                       // TODO Auto-generated catch block
-                       e.printStackTrace();
-                       Assert.assertTrue(false);
-               }
-       }
-
-       @Test
-       public void testExecuteMethod() {
-               
-               DelegateExecution executionEntity = mock(ExecutionEntity.class);
-               HttpUtil httpUtil1 = mock(HttpUtil.class);;
-               try {
-                       
-                       PowerMockito.when(executionEntity.getCurrentActivityId()).thenReturn("1111");
-                       
-                       HttpResponseMessage msg = new HttpResponseMessage();
-                       msg.setStatusCode(200);
-                       msg.setResponseBody(null);
-                       PowerMockito.mockStatic(HighLevelRestApi.class);
-                       PowerMockito.when(HighLevelRestApi.invoke(Mockito.anyObject())).thenReturn(msg);
-                       
-                       httpUtil1.executeMethod(executionEntity);
-                       Assert.assertTrue(true);
-               } catch (Exception e) {
-                       e.printStackTrace();
-                       Assert.assertTrue(false);
-               }
-       }
-       
-       @Test
-       public void testHandleParam(){
-               
-               try {
-                       DelegateExecution executionEntity = mock(ExecutionEntity.class);
-                       Parameter param = new Parameter();
-                       param.setName("id");
-                       param.setPosition("path");
-                       param.setType("");
-                       param.setValue("abc");
-                       
-                       RestInfo info = new RestInfo();
-                       info.setMethod("GET");
-                       info.setName("name");
-                       info.setPath("/catalog/v1");
-                       info.setRealUri("");
-                       info.setUrl("csars");
-                       info.setVersion("v1");
-                       
-                       httpUtil.handleParam(executionEntity, param, info);
-                       Assert.assertTrue(true);
-               } catch (ActivitiException e) {
-                       // TODO Auto-generated catch block
-                       e.printStackTrace();
-                       Assert.assertTrue(true);
-               }
-               
-       }
+  private HttpUtil httpUtil;
+
+  @Before
+  public void setUp() {
+    httpUtil = new HttpUtil();
+  }
+
+  @Test
+  public void testExecute() {
+
+    try {
+      DelegateExecution executionEntity = mock(ExecutionEntity.class);
+      HttpUtil httpUtil1 = mock(HttpUtil.class);
+      PowerMockito.when(httpUtil1.executeMethod(executionEntity)).thenReturn(true);
+      httpUtil1.execute(executionEntity);
+      Assert.assertTrue(true);
+    } catch (Exception e) {
+      Assert.assertTrue(false);
+    }
+  }
+
+  @Test
+  public void testExecuteMethod() {
+
+    DelegateExecution executionEntity = mock(ExecutionEntity.class);
+    try {
+      PowerMockito.when(executionEntity.getCurrentActivityId()).thenReturn("1111");
+      HttpResponseMessage msg = new HttpResponseMessage();
+      msg.setStatusCode(200);
+      msg.setResponseBody(null);
+      httpUtil.executeMethod(executionEntity);
+      Assert.assertTrue(false);
+    } catch (Exception e) {
+      Assert.assertTrue(true);
+    }
+  }
+
+  @Test
+  public void testHandleParam1() {
+
+    try {
+      DelegateExecution executionEntity = mock(ExecutionEntity.class);
+      Parameter param = new Parameter();
+      param.setName("id");
+      param.setPosition("path");
+      param.setType("");
+      param.setValue("abc");
+
+      RestInfo info = new RestInfo();
+      info.setMethod("GET");
+      info.setName("name");
+      info.setPath("/catalog/v1");
+      info.setRealUri("");
+      info.setUrl("csars");
+      info.setVersion("v1");
+
+      httpUtil.handleParam(executionEntity, param, info);
+      Assert.assertTrue(true);
+    } catch (ActivitiException e) {
+      Assert.assertTrue(true);
+    }
+
+  }
+
+  @Test
+  public void testHandleParam2() {
+    try {
+      DelegateExecution executionEntity = mock(ExecutionEntity.class);
+      Parameter param = new Parameter();
+      param.setName("id");
+      param.setPosition("query");
+      param.setType("");
+      param.setValue("abc");
+
+      RestInfo info = new RestInfo();
+      info.setMethod("GET");
+      info.setName("name");
+      info.setPath("/catalog/v1");
+      info.setRealUri("");
+      info.setUrl("csars");
+      info.setVersion("v1");
+
+      httpUtil.handleParam(executionEntity, param, info);
+      Assert.assertTrue(true);
+    } catch (ActivitiException e) {
+      Assert.assertTrue(true);
+    }
+
+  }
+
+  @Test
+  public void testGetValue() {
+    DelegateExecution executionEntity = mock(ExecutionEntity.class);
+    Expression expression = mock(Expression.class);
+    Object res = new String("result");
+
+    PowerMockito.when(expression.getValue(executionEntity)).thenReturn(res);
+
+    Assert.assertEquals(res, httpUtil.getValue(expression, executionEntity));
+  }
+
+  @SuppressWarnings("static-access")
+  @Test
+  public void testParsePlanExpression() {
+
+    String exp = "[node0].[responseBody].[id]";
+    String json = "{'id':'123'}";
+    JSON obj = (JSON) JSON.parse(json);
+    HttpResponseMessage msg = new HttpResponseMessage();
+    msg.setStatusCode(200);
+    msg.setResponseBody(obj);
+
+    DelegateExecution executionEntity = mock(ExecutionEntity.class);
+
+    PowerMockito.when(executionEntity.getVariable("node0")).thenReturn(msg);
+
+    Assert.assertEquals("123", httpUtil.parsePlanExpression(exp, executionEntity));
+  }
 }