Onboarding Page Account Admin Change
[portal.git] / ecomp-portal-BE-common / src / test / java / org / onap / portalapp / portal / controller / WidgetMSControllerTest.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 package org.onap.portalapp.portal.controller;
39
40 import static org.junit.Assert.assertTrue;
41
42 import java.util.ArrayList;
43 import java.util.List;
44
45 import javax.servlet.http.HttpServletRequest;
46 import javax.servlet.http.HttpServletResponse;
47
48 import org.junit.Before;
49 import org.junit.Test;
50 import org.mockito.InjectMocks;
51 import org.mockito.Mock;
52 import org.mockito.Mockito;
53 import org.mockito.MockitoAnnotations;
54 import org.onap.portalapp.portal.controller.WidgetMSController;
55 import org.onap.portalapp.portal.domain.BEProperty;
56 import org.onap.portalapp.portal.ecomp.model.PortalRestResponse;
57 import org.onap.portalapp.portal.ecomp.model.PortalRestStatusEnum;
58 import org.onap.portalapp.portal.framework.MockitoTestSuite;
59 import org.onap.portalapp.portal.service.WidgetMService;
60 import org.onap.portalapp.portal.service.WidgetMServiceImpl;
61
62 import com.orbitz.consul.ConsulException;
63 import com.orbitz.consul.model.health.ServiceHealth;
64
65 import io.searchbox.client.config.exception.NoServerConfiguredException;
66
67 public class WidgetMSControllerTest {
68
69         @Mock
70         WidgetMService consulHealthService = new WidgetMServiceImpl();
71
72         @InjectMocks
73         WidgetMSController consulClientController = new WidgetMSController();
74
75         NoServerConfiguredException noServerConfiguredException = new NoServerConfiguredException(null);
76
77         String service = "Test";
78
79         @Before
80         public void setup() {
81                 MockitoAnnotations.initMocks(this);
82         }
83
84         MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();
85
86         HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest();
87         HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse();
88         NullPointerException nullPointerException = new NullPointerException();
89         ConsulException consulException = new ConsulException(nullPointerException);
90
91         @Test
92         public void getServiceLocationTest() {
93                 PortalRestResponse<BEProperty> ecpectedPortalRestResponse = new PortalRestResponse<BEProperty>();
94                 ecpectedPortalRestResponse.setMessage("Success!");
95                 ecpectedPortalRestResponse.setResponse(null);
96                 ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK);
97                 PortalRestResponse<String> actualPortalRestRespone = new PortalRestResponse<String>();
98                 actualPortalRestRespone = consulClientController.getServiceLocation(mockedRequest, mockedResponse, service);
99                 assertTrue(actualPortalRestRespone.equals(ecpectedPortalRestResponse));
100         }
101
102
103         @Test
104         public void getServiceLocationExceptionConsulExceptionTest() {
105                 PortalRestResponse<BEProperty> ecpectedPortalRestResponse = new PortalRestResponse<BEProperty>();
106                 ecpectedPortalRestResponse.setMessage("Error!");
107                 ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR);
108                 PortalRestResponse<String> actualPortalRestRespone = new PortalRestResponse<String>();
109                 Mockito.when(consulHealthService.getServiceLocation(service, null)).thenThrow(consulException);
110                 actualPortalRestRespone = consulClientController.getServiceLocation(mockedRequest, mockedResponse, service);
111                 assertTrue(actualPortalRestRespone.getMessage().equals(ecpectedPortalRestResponse.getMessage()));
112                 assertTrue(actualPortalRestRespone.getStatus().equals(ecpectedPortalRestResponse.getStatus()));
113         }
114
115         public PortalRestResponse<List<ServiceHealth>> successResponse() {
116                 PortalRestResponse<List<ServiceHealth>> ecpectedPortalRestResponse = new PortalRestResponse<List<ServiceHealth>>();
117                 List<ServiceHealth> healths = new ArrayList<ServiceHealth>();
118                 ecpectedPortalRestResponse.setMessage("Success!");
119                 ecpectedPortalRestResponse.setResponse(healths);
120                 ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK);
121                 return ecpectedPortalRestResponse;
122         }
123
124         public PortalRestResponse<List<ServiceHealth>> errorResponse() {
125                 PortalRestResponse<List<ServiceHealth>> ecpectedPortalRestResponse = new PortalRestResponse<List<ServiceHealth>>();
126                 List<ServiceHealth> healths = new ArrayList<ServiceHealth>();
127                 ecpectedPortalRestResponse.setMessage("Error!");
128                 ecpectedPortalRestResponse.setResponse(healths);
129                 ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR);
130                 return ecpectedPortalRestResponse;
131         }
132 }