-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: BOUHOURS Antoine <[email protected]>
- Loading branch information
1 parent
1ecf5b9
commit 95880be
Showing
1 changed file
with
211 additions
and
0 deletions.
There are no files selected for viewing
211 changes: 211 additions & 0 deletions
211
.../java/org/gridsuite/modification/server/modifications/SubstationByFilterDeletionTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,211 @@ | ||
/** | ||
* Copyright (c) 2023, RTE (http://www.rte-france.com) | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
package org.gridsuite.modification.server.modifications; | ||
|
||
import com.fasterxml.jackson.core.type.TypeReference; | ||
import com.github.tomakehurst.wiremock.client.WireMock; | ||
import com.github.tomakehurst.wiremock.matching.StringValuePattern; | ||
import com.powsybl.iidm.network.IdentifiableType; | ||
import com.powsybl.iidm.network.Network; | ||
import lombok.SneakyThrows; | ||
import org.gridsuite.modification.server.dto.*; | ||
import org.gridsuite.modification.server.service.FilterService; | ||
import org.gridsuite.modification.server.utils.NetworkCreation; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.junit.jupiter.api.Tag; | ||
import org.springframework.http.MediaType; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.UUID; | ||
import java.util.stream.Collectors; | ||
|
||
import static org.gridsuite.modification.server.utils.TestUtils.assertLogMessage; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertNull; | ||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; | ||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; | ||
|
||
@Tag("IntegrationTest") | ||
public class SubstationByFilterDeletionTest extends AbstractNetworkModificationTest { | ||
private static final UUID FILTER_ID_1 = UUID.randomUUID(); | ||
private static final UUID FILTER_ID_2 = UUID.randomUUID(); | ||
private static final String SUBSTATION_ID_1 = "s1"; | ||
|
||
private static final String SUBSTATION_ID_2 = "s2"; | ||
|
||
private static final String SUBSTATION_ID_3 = "s3"; | ||
|
||
public static final String PATH = "/v1/filters/export"; | ||
public static final String SUBSTATION_WRONG_ID_1 = "wrongId1"; | ||
|
||
@Before | ||
public void specificSetUp() { | ||
FilterService.setFilterServerBaseUri(wireMockServer.baseUrl()); | ||
getNetwork().getVariantManager().setWorkingVariant("variant_1"); | ||
} | ||
|
||
@Override | ||
protected Network createNetwork(UUID networkUuid) { | ||
return NetworkCreation.create(networkUuid, true); | ||
} | ||
|
||
@Override | ||
protected ModificationInfos buildModification() { | ||
var filter1 = FilterInfos.builder() | ||
.id(FILTER_ID_1) | ||
.name("filter1") | ||
.build(); | ||
|
||
var filter2 = FilterInfos.builder() | ||
.id(FILTER_ID_2) | ||
.name("filter2") | ||
.build(); | ||
|
||
return ByFilterDeletionInfos.builder() | ||
.stashed(false) | ||
.equipmentType("SUBSTATION") | ||
.equipmentFilters(List.of(filter1, filter2)) | ||
.build(); | ||
} | ||
|
||
@Override | ||
protected ModificationInfos buildModificationUpdate() { | ||
var filter5 = FilterInfos.builder() | ||
.id(FILTER_ID_2) | ||
.name("filter 2 modified") | ||
.build(); | ||
|
||
return ByFilterDeletionInfos.builder() | ||
.stashed(false) | ||
.equipmentType("SUBSTATION") | ||
.equipmentFilters(List.of(filter5)) | ||
.build(); | ||
} | ||
|
||
@Test | ||
@Override | ||
public void testCreate() throws Exception { | ||
List<FilterEquipments> filters = getTestFilters(); | ||
UUID stubId = wireMockServer.stubFor(WireMock.get(WireMock.urlMatching(getPath(getNetworkUuid()) + "(.+,){1}.*")) | ||
.willReturn(WireMock.ok() | ||
.withBody(mapper.writeValueAsString(filters)) | ||
.withHeader("Content-Type", "application/json"))).getId(); | ||
|
||
super.testCreate(); | ||
|
||
wireMockUtils.verifyGetRequest(stubId, PATH, handleQueryParams(getNetworkUuid(), filters.stream().map(FilterEquipments::getFilterId).collect(Collectors.toList())), false); | ||
} | ||
|
||
@Test | ||
public void testCreateWithErrors() throws Exception { | ||
var filter1 = FilterInfos.builder() | ||
.id(FILTER_ID_1) | ||
.name("filter1") | ||
.build(); | ||
|
||
ByFilterDeletionInfos byFilterDeletionInfos = ByFilterDeletionInfos.builder() | ||
.stashed(false) | ||
.equipmentType("SUBSTATION") | ||
.equipmentFilters(List.of(filter1)) | ||
.build(); | ||
|
||
List<FilterEquipments> filters = List.of(getFilterEquipments(FILTER_ID_1, "filter1", List.of(getIdentifiableAttributes(SUBSTATION_WRONG_ID_1)))); | ||
|
||
UUID stubId = wireMockServer.stubFor(WireMock.get(WireMock.urlMatching(getPath(getNetworkUuid()) + "(.+){1}.*")) | ||
.willReturn(WireMock.ok() | ||
.withBody(mapper.writeValueAsString(filters)) | ||
.withHeader("Content-Type", "application/json"))).getId(); | ||
|
||
// delete load (fail because the load is not found) | ||
mockMvc.perform(post(getNetworkModificationUri()).content(mapper.writeValueAsString(byFilterDeletionInfos)).contentType(MediaType.APPLICATION_JSON)) | ||
.andExpect(status().isOk()); | ||
assertLogMessage("Substation not found: wrongId1", | ||
byFilterDeletionInfos.getErrorType().name(), reportService); | ||
wireMockUtils.verifyGetRequest(stubId, PATH, handleQueryParams(getNetworkUuid(), filters.stream().map(FilterEquipments::getFilterId).collect(Collectors.toList())), false); | ||
} | ||
|
||
@Test | ||
@Override | ||
public void testCopy() throws Exception { | ||
List<FilterEquipments> filters = getTestFilters(); | ||
UUID stubId = wireMockServer.stubFor(WireMock.get(WireMock.urlMatching(getPath(getNetworkUuid()) + ".{2,}")) | ||
.willReturn(WireMock.ok() | ||
.withBody(mapper.writeValueAsString(filters)) | ||
.withHeader("Content-Type", "application/json"))).getId(); | ||
|
||
super.testCopy(); | ||
|
||
wireMockUtils.verifyGetRequest(stubId, PATH, handleQueryParams(getNetworkUuid(), filters.stream().map(FilterEquipments::getFilterId).collect(Collectors.toList())), false); | ||
} | ||
|
||
@Override | ||
protected void assertAfterNetworkModificationCreation() { | ||
assertNull(getNetwork().getSubstation(SUBSTATION_ID_1)); | ||
assertNull(getNetwork().getSubstation(SUBSTATION_ID_2)); | ||
assertNull(getNetwork().getSubstation(SUBSTATION_ID_3)); | ||
} | ||
|
||
@Override | ||
protected void assertAfterNetworkModificationDeletion() { | ||
assertNotNull(getNetwork().getSubstation(SUBSTATION_ID_1)); | ||
assertNotNull(getNetwork().getSubstation(SUBSTATION_ID_2)); | ||
assertNotNull(getNetwork().getSubstation(SUBSTATION_ID_3)); | ||
} | ||
|
||
@Override | ||
@SneakyThrows | ||
protected void testCreationModificationMessage(ModificationInfos modificationInfos) { | ||
assertEquals("BY_FILTER_DELETION", modificationInfos.getMessageType()); | ||
Map<String, String> createdValues = mapper.readValue(modificationInfos.getMessageValues(), new TypeReference<>() { }); | ||
assertEquals("SUBSTATION", createdValues.get("equipmentType")); | ||
} | ||
|
||
@Override | ||
@SneakyThrows | ||
protected void testUpdateModificationMessage(ModificationInfos modificationInfos) { | ||
assertEquals("BY_FILTER_DELETION", modificationInfos.getMessageType()); | ||
Map<String, String> createdValues = mapper.readValue(modificationInfos.getMessageValues(), new TypeReference<>() { }); | ||
assertEquals("SUBSTATION", createdValues.get("equipmentType")); | ||
} | ||
|
||
private String getPath(UUID networkUuid) { | ||
return "/v1/filters/export\\?networkUuid=" + networkUuid + "\\&variantId=variant_1\\&ids="; | ||
} | ||
|
||
private Map<String, StringValuePattern> handleQueryParams(UUID networkUuid, List<UUID> filterIds) { | ||
return Map.of("networkUuid", WireMock.equalTo(String.valueOf(networkUuid)), "variantId", WireMock.equalTo("variant_1"), "ids", WireMock.matching(filterIds.stream().map(uuid -> ".+").collect(Collectors.joining(",")))); | ||
} | ||
|
||
private List<FilterEquipments> getTestFilters() { | ||
IdentifiableAttributes substation1 = getIdentifiableAttributes(SUBSTATION_ID_1); | ||
IdentifiableAttributes substation2 = getIdentifiableAttributes(SUBSTATION_ID_2); | ||
IdentifiableAttributes substation3 = getIdentifiableAttributes(SUBSTATION_ID_3); | ||
|
||
FilterEquipments filter1 = getFilterEquipments(FILTER_ID_1, "filter1", List.of(substation1, substation2)); | ||
FilterEquipments filter2 = getFilterEquipments(FILTER_ID_2, "filter2", List.of(substation3)); | ||
|
||
return List.of(filter1, filter2); | ||
} | ||
|
||
private FilterEquipments getFilterEquipments(UUID filterID, String filterName, List<IdentifiableAttributes> identifiableAttributes) { | ||
return FilterEquipments.builder() | ||
.filterId(filterID) | ||
.filterName(filterName) | ||
.identifiableAttributes(identifiableAttributes) | ||
.build(); | ||
} | ||
|
||
private IdentifiableAttributes getIdentifiableAttributes(String id) { | ||
return IdentifiableAttributes.builder() | ||
.id(id) | ||
.type(IdentifiableType.SUBSTATION) | ||
.build(); | ||
} | ||
} |