/*- * ============LICENSE_START======================================================= * VID * ================================================================================ * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= */ package org.onap.vid.controller; import static org.mockito.ArgumentMatchers.argThat; import static org.mockito.ArgumentMatchers.eq; import static org.mockito.BDDMockito.given; import static org.mockito.BDDMockito.then; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.only; import static org.springframework.http.MediaType.APPLICATION_JSON; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.stream.Collectors; import org.jeasy.random.EasyRandom; import org.jeasy.random.EasyRandomParameters; import org.jeasy.random.randomizers.misc.BooleanRandomizer; import org.jeasy.random.randomizers.text.StringRandomizer; import org.junit.Before; import org.junit.Test; import org.onap.vid.mso.MsoBusinessLogic; import org.onap.vid.mso.MsoResponseWrapper; import org.onap.vid.mso.rest.MsoRestClientNew; import org.onap.vid.mso.rest.Request; import org.onap.vid.mso.rest.RequestDetails; import org.onap.vid.mso.rest.Task; import org.onap.vid.services.CloudOwnerService; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.setup.MockMvcBuilders; public class MsoControllerTest { private static final long STATIC_SEED = 5336L; private EasyRandomParameters parameters = new EasyRandomParameters() .randomize(Boolean.class, new BooleanRandomizer(STATIC_SEED)) .randomize(String.class, new StringRandomizer(4, 4, STATIC_SEED)) .collectionSizeRange(2, 3); private EasyRandom modelGenerator = new EasyRandom(parameters); private ObjectMapper objectMapper = new ObjectMapper(); private MockMvc mockMvc; private MsoBusinessLogic msoBusinessLogic; private CloudOwnerService cloudService; private MsoRestClientNew msoRestClient; @Before public void setUp() { msoBusinessLogic = mock(MsoBusinessLogic.class); cloudService = mock(CloudOwnerService.class); msoRestClient = mock(MsoRestClientNew.class); MsoController msoController = new MsoController(msoBusinessLogic, msoRestClient, cloudService); mockMvc = MockMvcBuilders.standaloneSetup(msoController).build(); } @Test public void shouldDelegateNewServiceInstantiation() throws Exception { // given RequestDetails requestDetails = modelGenerator.nextObject(RequestDetails.class); MsoResponseWrapper expectedResponse = new MsoResponseWrapper(200, "test"); given(msoBusinessLogic .createSvcInstance(objectEqualTo(requestDetails))) .willReturn(expectedResponse); // when & then mockMvc.perform(post("/mso/mso_create_svc_instance") .content(asJson(requestDetails)) .contentType(APPLICATION_JSON)) .andExpect(status().isOk()) .andExpect(content().json(asJson(expectedResponse))); then(cloudService).should(only()).enrichRequestWithCloudOwner(objectEqualTo(requestDetails)); } @Test public void shouldReturnOrchestrationRequestsForDashboard() throws Exception { // given List orchestrationRequests = modelGenerator .objects(Request.class, 2) .collect(Collectors.toList()); given(msoBusinessLogic.getOrchestrationRequestsForDashboard()).willReturn(orchestrationRequests); // when & then mockMvc.perform(get("/mso/mso_get_orch_reqs/dashboard")) .andExpect(status().isOk()) .andExpect(content().json(objectMapper.writeValueAsString(orchestrationRequests))); then(cloudService).shouldHaveZeroInteractions(); } @Test public void shouldReturnManualTasksById() throws Exception { // given List manualTasks = modelGenerator .objects(Task.class, 2) .collect(Collectors.toList()); String originalRequestId = "za1234d1-5a33-55df-13ab-12abad84e335"; given(msoBusinessLogic.getManualTasksByRequestId(originalRequestId)).willReturn(manualTasks); // when & then mockMvc.perform(get("/mso/mso_get_man_task/{id}", originalRequestId)) .andExpect(status().isOk()) .andExpect(content().json(objectMapper.writeValueAsString(manualTasks))); then(cloudService).shouldHaveZeroInteractions(); } @Test public void shouldDelegateE2EServiceInstantiation() throws Exception { // given String requestDetails = "some request details"; Map payload = new LinkedHashMap<>(); payload.put("requestDetails", requestDetails); MsoResponseWrapper wrapper = mock(MsoResponseWrapper.class); given(wrapper.getResponse()).willReturn("some response"); given(msoBusinessLogic.createE2eSvcInstance(requestDetails)).willReturn(wrapper); // when & then mockMvc.perform(post("/mso/mso_create_e2e_svc_instance") .content(asJson(payload)) .contentType(APPLICATION_JSON)) .andExpect(status().isOk()) .andExpect(content().string("some response")); then(cloudService).shouldHaveZeroInteractions(); } @Test public void shouldDelegateServiceInstantiation() throws Exception { // given RequestDetails requestDetails = modelGenerator.nextObject(RequestDetails.class); MsoResponseWrapper wrapper = mock(MsoResponseWrapper.class); given(wrapper.getResponse()).willReturn("some response"); given(msoBusinessLogic.createSvcInstance(objectEqualTo(requestDetails))).willReturn(wrapper); // when & then mockMvc.perform(post("/mso/mso_create_svc_instance") .content(asJson(requestDetails)) .contentType(APPLICATION_JSON)) .andExpect(status().isOk()) .andExpect(content().string("some response")); then(cloudService).should(only()).enrichRequestWithCloudOwner(objectEqualTo(requestDetails)); } @Test public void shouldDelegateVnfInstantiation() throws Exception { // given RequestDetails requestDetails = modelGenerator.nextObject(RequestDetails.class); String serviceInstanceId = "bc305d54-75b4-431b-adb2-eb6b9e546014"; MsoResponseWrapper wrapper = mock(MsoResponseWrapper.class); given(wrapper.getResponse()).willReturn("some response"); given(msoBusinessLogic.createVnf(objectEqualTo(requestDetails), eq(serviceInstanceId))).willReturn(wrapper); // when & then mockMvc.perform(post("/mso/mso_create_vnf_instance/" + serviceInstanceId) .content(asJson(requestDetails)) .contentType(APPLICATION_JSON)) .andExpect(status().isOk()) .andExpect(content().string("some response")); then(cloudService).should(only()).enrichRequestWithCloudOwner(objectEqualTo(requestDetails)); } @Test public void shouldDelegateNewInstanceCreation() throws Exception { // given RequestDetails requestDetails = modelGenerator.nextObject(RequestDetails.class); String serviceInstanceId = "bc305d54-75b4-431b-adb2-eb6b9e546014"; MsoResponseWrapper wrapper = mock(MsoResponseWrapper.class); given(wrapper.getResponse()).willReturn("some response"); given(msoBusinessLogic.createNwInstance(objectEqualTo(requestDetails), eq(serviceInstanceId))).willReturn(wrapper); // when & then mockMvc.perform(post("/mso/mso_create_nw_instance/" + serviceInstanceId) .content(asJson(requestDetails)) .contentType(APPLICATION_JSON)) .andExpect(status().isOk()) .andExpect(content().string("some response")); then(cloudService).should(only()).enrichRequestWithCloudOwner(objectEqualTo(requestDetails)); } @Test public void shouldCompleteManualTask() throws Exception { // given RequestDetails requestDetails = modelGenerator.nextObject(RequestDetails.class); String taskId = "bc305d54-75b4-431b-adb2-eb6b9e546014"; MsoResponseWrapper wrapper = mock(MsoResponseWrapper.class); given(wrapper.getResponse()).willReturn("some response"); given(msoBusinessLogic.completeManualTask(objectEqualTo(requestDetails), eq(taskId))).willReturn(wrapper); // when & then mockMvc.perform(post("/mso/mso_post_man_task/" + taskId) .content(asJson(requestDetails)) .contentType(APPLICATION_JSON)) .andExpect(status().isOk()) .andExpect(content().string("some response")); then(cloudService).shouldHaveZeroInteractions(); } private String asJson(T value) { try { return objectMapper.writeValueAsString(value); } catch (JsonProcessingException e) { throw new RuntimeException(e); } } private T objectEqualTo(T expected) { return argThat(given -> asJson(given).equals(asJson(expected))); } }