Skip to content
Snippets Groups Projects
Commit 2bfcedf0 authored by Jörg Bolay's avatar Jörg Bolay
Browse files

KOP-2964 umstellen von WebClient auf RestClient und entfernen von...

KOP-2964 umstellen von WebClient auf RestClient und entfernen von Bindestrichen aus Spring Properties
parent 14ff7aa5
Branches
Tags
1 merge request!10KOP-2964 umstellen von WebClient auf RestClient und entfernen von...
Pipeline #1586 passed
......@@ -76,7 +76,7 @@ public class OsiPostfachRemoteServiceITCase {
postfachFacadeMockClient = OSI_MOCK_SERVER_EXTENSION.getPostfachFacadeMockClient();
}
@Disabled //disabled Test because it is running against the real OSI endpoint
@DisplayName("should send dummy request with jwt")
@Test
@SneakyThrows
......@@ -103,6 +103,7 @@ public class OsiPostfachRemoteServiceITCase {
ObjectMapper objectMapper = new ObjectMapper().registerModule(new JavaTimeModule());
@DisplayName("should receive one messages")
@Test
@SneakyThrows
......@@ -119,7 +120,7 @@ public class OsiPostfachRemoteServiceITCase {
assertThat(messageList).size().isEqualTo(1);
}
@Disabled //disabled Test because it is running against the real OSI endpoint
@DisplayName("should receive two messages")
@Test
@SneakyThrows
......@@ -169,7 +170,7 @@ public class OsiPostfachRemoteServiceITCase {
createMessagesCall("getMessage", messageJson);
}
@Disabled //disabled Test because it is running against the real OSI endpoint
@DisplayName("should delete message")
@Test
@SneakyThrows
......
......@@ -39,7 +39,7 @@ public class OsiPostfachRemoteServiceRemoteITCase {
.build())
.build();
//@DynamicPropertySource
@DynamicPropertySource
static void dynamicProperties(DynamicPropertyRegistry registry) {
registry.add(
"spring.security.oauth2.client.registration.osi2.client-secret",
......@@ -63,7 +63,7 @@ public class OsiPostfachRemoteServiceRemoteITCase {
throw new IllegalArgumentException("Proxy host and port not found in '%s'".formatted(text));
}
//@Disabled
@Disabled //disabled Test because it is running against the real OSI endpoint
@DisplayName("send message")
@Nested
class TestSendMessage {
......@@ -76,6 +76,7 @@ public class OsiPostfachRemoteServiceRemoteITCase {
}
}
@Disabled //disabled Test because it is running against the real OSI endpoint
@DisplayName("receive all messages")
@Nested
class TestReceiveAllMessages{
......@@ -88,7 +89,7 @@ public class OsiPostfachRemoteServiceRemoteITCase {
}
}
@Disabled
@Disabled //disabled Test because it is running against the real OSI endpoint
@DisplayName("delete message")
@Nested
class TestDeleteMessageById{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment