package com.oransc.rappmanager.rest; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import com.fasterxml.jackson.databind.ObjectMapper; import com.oransc.rappmanager.acm.service.AcmDeployer; import com.oransc.rappmanager.models.rappinstance.DeployOrder; import com.oransc.rappmanager.models.rapp.Rapp; import com.oransc.rappmanager.models.rappinstance.RappInstance; import com.oransc.rappmanager.models.rappinstance.RappInstanceDeployOrder; import com.oransc.rappmanager.models.rappinstance.RappInstanceState; import com.oransc.rappmanager.models.rapp.RappState; import com.oransc.rappmanager.models.cache.RappCacheService; import com.oransc.rappmanager.models.statemachine.RappInstanceStateMachine; import com.oransc.rappmanager.sme.service.SmeDeployer; import com.oransc.rappmanager.sme.service.SmeLifecycleManager; import java.util.HashMap; import java.util.Map; import java.util.UUID; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.http.MediaType; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) @AutoConfigureMockMvc public class RappInstanceControllerTest { @Autowired private MockMvc mockMvc; @Autowired private RappCacheService rappCacheService; @Autowired private RappInstanceStateMachine rappInstanceStateMachine; @MockBean AcmDeployer acmDeployer; @MockBean SmeDeployer smeDeployer; @MockBean SmeLifecycleManager smeLifecycleManager; private final String validRappFile = "valid-rapp-package.csar"; private final String invalidRappFile = "invalid-rapp-package.csar"; private final String validCsarFileLocation = "src/test/resources/"; private final ObjectMapper objectMapper = new ObjectMapper(); @Test void testGetAllRappInstances() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); Rapp rapp = getRapp(rappId, rappInstanceId); rappCacheService.putRapp(rapp); mockMvc.perform(MockMvcRequestBuilders.get("/rapps/{rapp_id}/instance", rappId)).andExpect(status().isOk()) .andExpect( jsonPath("$." + rappInstanceId.toString() + ".rappInstanceId").value(rappInstanceId.toString())) .andExpect(jsonPath("$." + rappInstanceId.toString() + ".state").value( RappInstanceState.UNDEPLOYED.name())); } @Test void testGetAllRappInstancesFailure() throws Exception { mockMvc.perform(MockMvcRequestBuilders.get("/rapps/{rapp_id}/instance", UUID.randomUUID())) .andExpect(status().isNotFound()); } @Test void testCreateRappInstance() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); RappInstance rappInstance = new RappInstance(); rappInstance.setRappInstanceId(rappInstanceId); rappInstance.setState(RappInstanceState.UNDEPLOYED); Rapp rapp = Rapp.builder().rappId(rappId).name(String.valueOf(rappId)).packageName(validRappFile) .packageLocation(validCsarFileLocation).state(RappState.PRIMED).build(); rappCacheService.putRapp(rapp); mockMvc.perform( MockMvcRequestBuilders.post("/rapps/{rapp_id}/instance", rappId).contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(rappInstance))).andExpect(status().isOk()); Rapp rappResult = rappCacheService.getRapp(String.valueOf(rappId)).get(); assertNotNull(rappResult.getRappInstances().get(rappInstanceId)); } @Test void testCreateRappInstanceFailure() throws Exception { RappInstance rappInstance = new RappInstance(); rappInstance.setRappInstanceId(UUID.randomUUID()); rappInstance.setState(RappInstanceState.UNDEPLOYED); mockMvc.perform(MockMvcRequestBuilders.post("/rapps/{rapp_id}/instance", UUID.randomUUID()) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(rappInstance))) .andExpect(status().isNotFound()); } @Test void testGetRappInstance() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); Rapp rapp = getRapp(rappId, rappInstanceId); rappCacheService.putRapp(rapp); rappInstanceStateMachine.onboardRappInstance(rappInstanceId); mockMvc.perform(MockMvcRequestBuilders.get("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId)) .andExpect(status().isOk()).andExpect(jsonPath("$.rappInstanceId").value(rappInstanceId.toString())) .andExpect(jsonPath("$.state").value(RappInstanceState.UNDEPLOYED.name())); } @Test void testGetRappInstanceNoRappFailure() throws Exception { mockMvc.perform(MockMvcRequestBuilders.get("/rapps/{rapp_id}/instance/{instance_id}", UUID.randomUUID(), UUID.randomUUID())).andExpect(status().isNotFound()); } @Test void testGetRappInstanceNoRappInstanceFailure() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); Rapp rapp = Rapp.builder().rappId(rappId).name(String.valueOf(rappId)).packageName(validRappFile) .packageLocation(validCsarFileLocation).state(RappState.PRIMED).build(); rappCacheService.putRapp(rapp); mockMvc.perform(MockMvcRequestBuilders.get("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId)) .andExpect(status().isNotFound()); } @Test void testDeployRappInstance() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); Rapp rapp = getRapp(rappId, rappInstanceId); rappCacheService.putRapp(rapp); rappInstanceStateMachine.onboardRappInstance(rappInstanceId); RappInstanceDeployOrder rappInstanceDeployOrder = new RappInstanceDeployOrder(); rappInstanceDeployOrder.setDeployOrder(DeployOrder.DEPLOY); when(acmDeployer.deployRappInstance(any(), any())).thenReturn(true); when(smeDeployer.deployRappInstance(any(), any())).thenReturn(true); mockMvc.perform(MockMvcRequestBuilders.put("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(rappInstanceDeployOrder))) .andExpect(status().isAccepted()); } @Test void testDeployNoRappInstanceFailure() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); Rapp rapp = getRapp(rappId, rappInstanceId); rapp.setRappInstances(Map.of()); rappCacheService.putRapp(rapp); RappInstanceDeployOrder rappInstanceDeployOrder = new RappInstanceDeployOrder(); rappInstanceDeployOrder.setDeployOrder(DeployOrder.DEPLOY); when(acmDeployer.deployRappInstance(any(), any())).thenReturn(true); when(smeDeployer.deployRappInstance(any(), any())).thenReturn(true); mockMvc.perform(MockMvcRequestBuilders.put("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(rappInstanceDeployOrder))) .andExpect(status().isNotFound()); } @Test void testDeployNoRappFailure() throws Exception { RappInstanceDeployOrder rappInstanceDeployOrder = new RappInstanceDeployOrder(); rappInstanceDeployOrder.setDeployOrder(DeployOrder.DEPLOY); when(acmDeployer.deployRappInstance(any(), any())).thenReturn(true); when(smeDeployer.deployRappInstance(any(), any())).thenReturn(true); mockMvc.perform(MockMvcRequestBuilders.put("/rapps/{rapp_id}/instance/{instance_id}", UUID.randomUUID(), UUID.randomUUID()).contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(rappInstanceDeployOrder))) .andExpect(status().isNotFound()); } @Test void testUndeployRappInstance() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); Rapp rapp = getRapp(rappId, rappInstanceId); rapp.getRappInstances().forEach((uuid, rappInstance) -> rappInstance.setState(RappInstanceState.DEPLOYED)); rappCacheService.putRapp(rapp); rappInstanceStateMachine.onboardRappInstance(rappInstanceId); RappInstanceDeployOrder rappInstanceDeployOrder = new RappInstanceDeployOrder(); rappInstanceDeployOrder.setDeployOrder(DeployOrder.UNDEPLOY); when(acmDeployer.undeployRappInstance(any(), any())).thenReturn(true); when(smeDeployer.undeployRappInstance(any(), any())).thenReturn(true); mockMvc.perform(MockMvcRequestBuilders.put("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(rappInstanceDeployOrder))) .andExpect(status().isAccepted()); } @Test void testUndeployNoRappInstanceFailure() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); Rapp rapp = getRapp(rappId, rappInstanceId); rapp.setRappInstances(Map.of()); rappCacheService.putRapp(rapp); rappInstanceStateMachine.onboardRappInstance(rappInstanceId); RappInstanceDeployOrder rappInstanceDeployOrder = new RappInstanceDeployOrder(); rappInstanceDeployOrder.setDeployOrder(DeployOrder.UNDEPLOY); when(acmDeployer.undeployRappInstance(any(), any())).thenReturn(true); when(smeDeployer.undeployRappInstance(any(), any())).thenReturn(true); mockMvc.perform(MockMvcRequestBuilders.put("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(rappInstanceDeployOrder))) .andExpect(status().isNotFound()); } @Test void testUndeployNoRappFailure() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); RappInstanceDeployOrder rappInstanceDeployOrder = new RappInstanceDeployOrder(); rappInstanceDeployOrder.setDeployOrder(DeployOrder.UNDEPLOY); when(acmDeployer.undeployRappInstance(any(), any())).thenReturn(true); when(smeDeployer.undeployRappInstance(any(), any())).thenReturn(true); mockMvc.perform(MockMvcRequestBuilders.put("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId) .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(rappInstanceDeployOrder))) .andExpect(status().isNotFound()); } @Test void testDeleteRappInstance() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); Rapp rapp = getRapp(rappId, rappInstanceId); rappCacheService.putRapp(rapp); rappInstanceStateMachine.onboardRappInstance(rappInstanceId); mockMvc.perform( MockMvcRequestBuilders.delete("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId)) .andExpect(status().isNoContent()); } @Test void testDeleteRappNoRappFailure() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); mockMvc.perform( MockMvcRequestBuilders.delete("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId)) .andExpect(status().isNotFound()); } @Test void testDeleteRappNoInstanceFailure() throws Exception { UUID rappId = UUID.randomUUID(); UUID rappInstanceId = UUID.randomUUID(); Rapp rapp = getRapp(rappId, rappInstanceId); rapp.setRappInstances(Map.of()); rappCacheService.putRapp(rapp); rappInstanceStateMachine.onboardRappInstance(rappInstanceId); mockMvc.perform( MockMvcRequestBuilders.delete("/rapps/{rapp_id}/instance/{instance_id}", rappId, rappInstanceId)) .andExpect(status().isNotFound()); } Rapp getRapp(UUID rappId, UUID rappInstanceId) { RappInstance rappInstance = new RappInstance(); rappInstance.setRappInstanceId(rappInstanceId); rappInstance.setState(RappInstanceState.UNDEPLOYED); Map instances = new HashMap(); instances.put(rappInstanceId, rappInstance); Rapp rapp = Rapp.builder().rappId(rappId).name(String.valueOf(rappId)).packageName(validRappFile) .packageLocation(validCsarFileLocation).state(RappState.PRIMED).rappInstances(instances) .build(); return rapp; } }