Spaces:
Build error
Build error
File size: 6,718 Bytes
d6afd6c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
package com.dalab.adminservice.controller;
import static org.hamcrest.Matchers.*;
import static org.mockito.ArgumentMatchers.*;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.BDDMockito.*;
import static org.mockito.Mockito.*;
import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.*;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
import java.util.Collections;
import java.util.Map;
import java.util.Optional;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.context.annotation.Import;
import org.springframework.http.MediaType;
import org.springframework.security.test.context.support.WithMockUser;
import org.springframework.test.web.servlet.MockMvc;
import com.dalab.adminservice.config.TestSecurityConfiguration;
import com.dalab.adminservice.dto.CloudConnectionDTO;
import com.dalab.adminservice.dto.CloudConnectionTestResultDTO;
import com.dalab.adminservice.model.enums.CloudProviderType;
import com.dalab.adminservice.service.ICloudConnectionService;
import com.fasterxml.jackson.databind.ObjectMapper;
@WebMvcTest(CloudConnectionController.class)
@Import(TestSecurityConfiguration.class)
@WithMockUser(roles = "ADMIN")
class CloudConnectionControllerTest {
@Autowired
private MockMvc mockMvc;
@MockBean
private ICloudConnectionService cloudConnectionService;
@Autowired
private ObjectMapper objectMapper;
private CloudConnectionDTO cloudConnectionDTO;
private String connectionId;
@BeforeEach
void setUp() {
connectionId = "test-connection-id";
cloudConnectionDTO = CloudConnectionDTO.builder()
.id(connectionId)
.name("Test GCP Connection")
.providerType(CloudProviderType.GCP)
.connectionParameters(Map.of("projectId", "test-project"))
.sensitiveCredentials("{\"type\": \"service_account\"}") // Example, this won't be returned
.enabled(true)
.build();
}
@Test
void getAllCloudConnections_shouldReturnListOfConnections() throws Exception {
given(cloudConnectionService.getAllCloudConnections()).willReturn(Collections.singletonList(cloudConnectionDTO));
mockMvc.perform(get("/api/v1/admin/cloud-connections"))
.andExpect(status().isOk())
.andExpect(jsonPath("$", hasSize(1)))
.andExpect(jsonPath("$[0].name").value("Test GCP Connection"));
}
@Test
void getCloudConnectionById_whenExists_shouldReturnConnection() throws Exception {
given(cloudConnectionService.getCloudConnectionById(connectionId)).willReturn(Optional.of(cloudConnectionDTO));
mockMvc.perform(get("/api/v1/admin/cloud-connections/" + connectionId))
.andExpect(status().isOk())
.andExpect(jsonPath("$.name").value("Test GCP Connection"));
}
@Test
void getCloudConnectionById_whenNotExists_shouldReturnNotFound() throws Exception {
given(cloudConnectionService.getCloudConnectionById("unknown-id")).willReturn(Optional.empty());
mockMvc.perform(get("/api/v1/admin/cloud-connections/unknown-id"))
.andExpect(status().isNotFound());
}
@Test
void createCloudConnection_shouldReturnCreatedConnection() throws Exception {
given(cloudConnectionService.createCloudConnection(any(CloudConnectionDTO.class))).willReturn(cloudConnectionDTO);
mockMvc.perform(post("/api/v1/admin/cloud-connections").with(csrf())
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(cloudConnectionDTO)))
.andExpect(status().isCreated())
.andExpect(jsonPath("$.id").value(connectionId));
}
@Test
void updateCloudConnection_shouldReturnUpdatedConnection() throws Exception {
CloudConnectionDTO updatedDto = CloudConnectionDTO.builder()
.id(connectionId)
.name("Updated GCP Connection")
.providerType(CloudProviderType.GCP)
.connectionParameters(Map.of("projectId", "updated-project"))
.enabled(true)
.build();
given(cloudConnectionService.updateCloudConnection(eq(connectionId), any(CloudConnectionDTO.class))).willReturn(updatedDto);
CloudConnectionDTO requestDto = CloudConnectionDTO.builder()
.name("Updated GCP Connection")
.providerType(CloudProviderType.GCP)
.build();
mockMvc.perform(put("/api/v1/admin/cloud-connections/" + connectionId).with(csrf())
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(requestDto)))
.andExpect(status().isOk())
.andExpect(jsonPath("$.name").value("Updated GCP Connection"));
}
@Test
void deleteCloudConnection_shouldReturnNoContent() throws Exception {
doNothing().when(cloudConnectionService).deleteCloudConnection(connectionId);
mockMvc.perform(delete("/api/v1/admin/cloud-connections/" + connectionId).with(csrf()))
.andExpect(status().isNoContent());
}
@Test
void testCloudConnection_shouldReturnTestResult() throws Exception {
CloudConnectionTestResultDTO testResult = CloudConnectionTestResultDTO.builder()
.success(true)
.message("Connection successful")
.build();
given(cloudConnectionService.testCloudConnection(connectionId)).willReturn(testResult);
mockMvc.perform(post("/api/v1/admin/cloud-connections/" + connectionId + "/test").with(csrf()))
.andExpect(status().isOk())
.andExpect(jsonPath("$.success").value(true))
.andExpect(jsonPath("$.message").value("Connection successful"));
}
@Test
@WithMockUser(roles = "VIEWER") // Non-admin
void createCloudConnection_whenUnauthorized_shouldReturnForbidden() throws Exception {
mockMvc.perform(post("/api/v1/admin/cloud-connections").with(csrf())
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(cloudConnectionDTO)))
.andExpect(status().isForbidden());
}
} |