2  * ============LICENSE_START==========================================
 
   4  * ===================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ===================================================================
 
   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
 
  13  *             http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  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
 
  26  *             https://creativecommons.org/licenses/by/4.0/
 
  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.
 
  34  * ============LICENSE_END============================================
 
  38 package org.onap.portalapp.portal.controller;
 
  40 import static org.junit.Assert.assertTrue;
 
  42 import java.util.ArrayList;
 
  43 import java.util.List;
 
  45 import javax.servlet.http.HttpServletRequest;
 
  46 import javax.servlet.http.HttpServletResponse;
 
  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;
 
  62 import com.orbitz.consul.ConsulException;
 
  63 import com.orbitz.consul.model.health.ServiceHealth;
 
  65 import io.searchbox.client.config.exception.NoServerConfiguredException;
 
  67 public class WidgetMSControllerTest {
 
  70         WidgetMService consulHealthService = new WidgetMServiceImpl();
 
  73         WidgetMSController consulClientController = new WidgetMSController();
 
  75         NoServerConfiguredException noServerConfiguredException = new NoServerConfiguredException(null);
 
  77         String service = "Test";
 
  81                 MockitoAnnotations.initMocks(this);
 
  84         MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();
 
  86         HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest();
 
  87         HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse();
 
  88         NullPointerException nullPointerException = new NullPointerException();
 
  89         ConsulException consulException = new ConsulException(nullPointerException);
 
  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));
 
 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()));
 
 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;
 
 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;