Changes made to upgrade pom version
[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.domain.BEProperty;
55 import org.onap.portalapp.portal.ecomp.model.PortalRestResponse;
56 import org.onap.portalapp.portal.ecomp.model.PortalRestStatusEnum;
57 import org.onap.portalapp.portal.exceptions.NoHealthyServiceException;
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 io.searchbox.client.config.exception.NoServerConfiguredException;
63
64 public class WidgetMSControllerTest {
65
66         @Mock
67         WidgetMService consulHealthService = new WidgetMServiceImpl();
68
69         @InjectMocks
70         WidgetMSController consulClientController = new WidgetMSController();
71
72         NoServerConfiguredException noServerConfiguredException = new NoServerConfiguredException(null);
73
74         String service = "Test";
75
76         @Before
77         public void setup() {
78                 MockitoAnnotations.initMocks(this);
79         }
80
81         MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();
82
83         HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest();
84         HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse();
85         NullPointerException nullPointerException = new NullPointerException();
86         NoHealthyServiceException exception = new NoHealthyServiceException("");
87
88         @Test
89         public void getServiceLocationTest() {
90                 PortalRestResponse<BEProperty> ecpectedPortalRestResponse = new PortalRestResponse<BEProperty>();
91                 ecpectedPortalRestResponse.setMessage("Success!");
92                 ecpectedPortalRestResponse.setResponse(null);
93                 ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK);
94                 PortalRestResponse<String> actualPortalRestRespone = new PortalRestResponse<String>();
95                 actualPortalRestRespone = consulClientController.getServiceLocation(mockedRequest, mockedResponse, service);
96                 assertTrue(actualPortalRestRespone.equals(ecpectedPortalRestResponse));
97         }
98
99
100         @Test
101         public void getServiceLocationExceptionConsulExceptionTest() throws Exception {
102                 PortalRestResponse<BEProperty> ecpectedPortalRestResponse = new PortalRestResponse<BEProperty>();
103                 ecpectedPortalRestResponse.setMessage("Error!");
104                 ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR);
105                 PortalRestResponse<String> actualPortalRestRespone = new PortalRestResponse<String>();
106                 Mockito.when(consulHealthService.getServiceLocation(service, null)).thenThrow(exception);
107                 actualPortalRestRespone = consulClientController.getServiceLocation(mockedRequest, mockedResponse, service);
108                 assertTrue(actualPortalRestRespone.getMessage().equals(ecpectedPortalRestResponse.getMessage()));
109                 assertTrue(actualPortalRestRespone.getStatus().equals(ecpectedPortalRestResponse.getStatus()));
110         }
111
112         public PortalRestResponse<List<?>> successResponse() {
113                 PortalRestResponse<List<?>> ecpectedPortalRestResponse = new PortalRestResponse<List<?>>();
114                 List<?> healths = new ArrayList<>();
115                 ecpectedPortalRestResponse.setMessage("Success!");
116                 ecpectedPortalRestResponse.setResponse(healths);
117                 ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK);
118                 return ecpectedPortalRestResponse;
119         }
120
121         public PortalRestResponse<List<?>> errorResponse() {
122                 PortalRestResponse<List<?>> ecpectedPortalRestResponse = new PortalRestResponse<List<?>>();
123                 List<?> healths = new ArrayList<>();
124                 ecpectedPortalRestResponse.setMessage("Error!");
125                 ecpectedPortalRestResponse.setResponse(healths);
126                 ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR);
127                 return ecpectedPortalRestResponse;
128         }
129 }