mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-02 19:45:51 +01:00
Add optional url to ExceptionWithContext
This commit is contained in:
@@ -21,10 +21,11 @@
|
|||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
* SOFTWARE.
|
* SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package sonia.scm;
|
package sonia.scm;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
import static java.util.Collections.unmodifiableList;
|
import static java.util.Collections.unmodifiableList;
|
||||||
|
|
||||||
@@ -49,4 +50,15 @@ public abstract class ExceptionWithContext extends RuntimeException {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public abstract String getCode();
|
public abstract String getCode();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an url which gives more information about the exception or an empty optional.
|
||||||
|
* The methods returns an empty optional by default and can be overwritten.
|
||||||
|
*
|
||||||
|
* @return information url or empty
|
||||||
|
* @since 2.5.0
|
||||||
|
*/
|
||||||
|
public Optional<String> getUrl() {
|
||||||
|
return Optional.empty();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
* SOFTWARE.
|
* SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package sonia.scm.api.v2.resources;
|
package sonia.scm.api.v2.resources;
|
||||||
|
|
||||||
import org.mapstruct.AfterMapping;
|
import org.mapstruct.AfterMapping;
|
||||||
@@ -31,15 +31,21 @@ import org.mapstruct.MappingTarget;
|
|||||||
import org.slf4j.MDC;
|
import org.slf4j.MDC;
|
||||||
import sonia.scm.ExceptionWithContext;
|
import sonia.scm.ExceptionWithContext;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@Mapper
|
@Mapper
|
||||||
public abstract class ExceptionWithContextToErrorDtoMapper {
|
public abstract class ExceptionWithContextToErrorDtoMapper {
|
||||||
|
|
||||||
@Mapping(target = "errorCode", source = "code")
|
@Mapping(target = "errorCode", source = "code")
|
||||||
@Mapping(target = "transactionId", ignore = true)
|
@Mapping(target = "transactionId", ignore = true)
|
||||||
@Mapping(target = "violations", ignore = true)
|
@Mapping(target = "violations", ignore = true)
|
||||||
@Mapping(target = "url", ignore = true)
|
|
||||||
public abstract ErrorDto map(ExceptionWithContext exception);
|
public abstract ErrorDto map(ExceptionWithContext exception);
|
||||||
|
|
||||||
|
@SuppressWarnings("OptionalUsedAsFieldOrParameterType") // is ok for mapping
|
||||||
|
public String mapOptional(Optional<String> optionalString) {
|
||||||
|
return optionalString.orElse(null);
|
||||||
|
}
|
||||||
|
|
||||||
@AfterMapping
|
@AfterMapping
|
||||||
void setTransactionId(@MappingTarget ErrorDto dto) {
|
void setTransactionId(@MappingTarget ErrorDto dto) {
|
||||||
dto.setTransactionId(MDC.get("transaction_id"));
|
dto.setTransactionId(MDC.get("transaction_id"));
|
||||||
|
|||||||
@@ -0,0 +1,81 @@
|
|||||||
|
/*
|
||||||
|
* MIT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in all
|
||||||
|
* copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
* SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package sonia.scm.api.v2.resources;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.mapstruct.factory.Mappers;
|
||||||
|
import sonia.scm.ContextEntry;
|
||||||
|
import sonia.scm.ExceptionWithContext;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class ExceptionWithContextToErrorDtoMapperTest {
|
||||||
|
|
||||||
|
private final ExceptionWithContextToErrorDtoMapper mapper = Mappers.getMapper(ExceptionWithContextToErrorDtoMapper.class);
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMapUrl() {
|
||||||
|
ExceptionWithUrl exception = new ExceptionWithUrl();
|
||||||
|
ErrorDto dto = mapper.map(exception);
|
||||||
|
assertThat(dto.getUrl()).isEqualTo("https://scm-manager.org");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMapUrlToNull() {
|
||||||
|
ExceptionWithoutUrl exception = new ExceptionWithoutUrl();
|
||||||
|
ErrorDto dto = mapper.map(exception);
|
||||||
|
assertThat(dto.getUrl()).isNull();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class ExceptionWithUrl extends ExceptionWithContext {
|
||||||
|
public ExceptionWithUrl() {
|
||||||
|
super(ContextEntry.ContextBuilder.noContext(), "With Url");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getCode() {
|
||||||
|
return "42";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Optional<String> getUrl() {
|
||||||
|
return Optional.of("https://scm-manager.org");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class ExceptionWithoutUrl extends ExceptionWithContext {
|
||||||
|
public ExceptionWithoutUrl() {
|
||||||
|
super(ContextEntry.ContextBuilder.noContext(), "Without Url");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getCode() {
|
||||||
|
return "21";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -46,6 +46,7 @@ import java.io.IOException;
|
|||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.atomic.AtomicReference;
|
import java.util.concurrent.atomic.AtomicReference;
|
||||||
@@ -150,7 +151,8 @@ class RepositoryInitializerTest {
|
|||||||
doThrow(new IOException("epic fail")).when(contentLoader).withData(any(ByteSource.class));
|
doThrow(new IOException("epic fail")).when(contentLoader).withData(any(ByteSource.class));
|
||||||
|
|
||||||
RepositoryInitializer initializer = new RepositoryInitializer(repositoryServiceFactory, ImmutableSet.of(new ReadmeContentInitializer()));
|
RepositoryInitializer initializer = new RepositoryInitializer(repositoryServiceFactory, ImmutableSet.of(new ReadmeContentInitializer()));
|
||||||
assertThrows(InternalRepositoryException.class, () -> initializer.initialize(repository, Collections.emptyMap()));
|
Map<String, JsonNode> creationContext = Collections.emptyMap();
|
||||||
|
assertThrows(InternalRepositoryException.class, () -> initializer.initialize(repository, creationContext));
|
||||||
|
|
||||||
verify(repositoryService).close();
|
verify(repositoryService).close();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user