27c3ddc1efe878b0e37f86f014977384c68403cf
[vfc/nfvo/wfengine.git] / wfenginemgrservice / src / test / java / org / onap / workflow / common / RestClientTest.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.workflow.common;
17
18 import static org.powermock.api.mockito.PowerMockito.mock;
19
20 import org.apache.http.HttpEntity;
21 import org.apache.http.HttpHost;
22 import org.apache.http.HttpRequest;
23 import org.apache.http.client.methods.CloseableHttpResponse;
24 import org.apache.http.impl.client.CloseableHttpClient;
25 import org.apache.http.impl.client.HttpClients;
26 import org.junit.After;
27 import org.junit.AfterClass;
28 import org.junit.Before;
29 import org.junit.BeforeClass;
30 import org.junit.Test;
31 import org.junit.runner.RunWith;
32 import org.mockito.Mockito;
33 import org.onap.workflow.common.RestClient;
34 import org.onap.workflow.common.RestClient.HttpMethod;
35 import org.onap.workflow.externalservice.entity.activitientitiy.ActivitiStartProcessRequest;
36 import org.powermock.api.mockito.PowerMockito;
37 import org.powermock.core.classloader.annotations.PowerMockIgnore;
38 import org.powermock.core.classloader.annotations.PrepareForTest;
39 import org.powermock.modules.junit4.PowerMockRunner;
40
41
42 @PrepareForTest({RestClient.class, HttpClients.class})
43 @RunWith(PowerMockRunner.class)
44 @PowerMockIgnore("javax.net.ssl.*")
45 public class RestClientTest {
46   private RestClient restClient;
47   @Before
48   public void setUp() throws Exception {
49     restClient = new RestClient();
50   }
51
52   @After
53   public void tearDown() throws Exception {}
54
55   @Test
56   public final void testExecuteHttp() throws Exception {
57     HttpEntity httpEntity = mock(HttpEntity.class);
58     PowerMockito.mockStatic(HttpClients.class);
59     CloseableHttpClient tt = mock(CloseableHttpClient.class);
60     CloseableHttpResponse reponse = mock(CloseableHttpResponse.class);
61     
62     PowerMockito.when(HttpClients.createDefault()).thenReturn(tt);
63     PowerMockito.when(tt.execute(Mockito.any(HttpHost.class), Mockito.any(HttpRequest.class)))
64         .thenReturn(reponse);
65     PowerMockito.when(reponse.getEntity()).thenReturn(httpEntity);
66     
67     restClient.executeHttp(HttpMethod.POST, "127.0.0.1", 80, "test", httpEntity);
68   }
69
70   @Test
71   public final void testExecuteHttpDeleteDeploy() throws Exception {
72     HttpEntity httpEntity = mock(HttpEntity.class);
73     PowerMockito.mockStatic(HttpClients.class);
74     CloseableHttpClient tt = mock(CloseableHttpClient.class);
75     CloseableHttpResponse reponse = mock(CloseableHttpResponse.class);
76     PowerMockito.when(HttpClients.createDefault()).thenReturn(tt);
77     PowerMockito.when(tt.execute(Mockito.any(HttpHost.class), Mockito.any(HttpRequest.class)))
78         .thenReturn(reponse);
79     PowerMockito.when(reponse.getEntity()).thenReturn(httpEntity);
80     restClient.executeHttpDeleteDeploy(HttpMethod.DELETE, "127.0.0.1", 80, "test");
81   }
82
83   @Test
84   public final void testExecuteHttpStartIntance() throws Exception {
85
86     ActivitiStartProcessRequest activitiStartProcessRequest =
87         mock(ActivitiStartProcessRequest.class);
88
89     HttpEntity httpEntity = mock(HttpEntity.class);
90     PowerMockito.mockStatic(HttpClients.class);
91     CloseableHttpClient tt = mock(CloseableHttpClient.class);
92     CloseableHttpResponse reponse = mock(CloseableHttpResponse.class);
93     PowerMockito.when(HttpClients.createDefault()).thenReturn(tt);
94     PowerMockito.when(tt.execute(Mockito.any(HttpHost.class), Mockito.any(HttpRequest.class)))
95         .thenReturn(reponse);
96     PowerMockito.when(reponse.getEntity()).thenReturn(httpEntity);
97     restClient.executeHttpStartIntance(HttpMethod.POST, "127.0.0.1", 80, "test",activitiStartProcessRequest);
98
99   }
100 }