mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
#3142 Nested forged methods should declare throws from lifecycle methods
This commit is contained in:
parent
257796b959
commit
a5f57a77cf
@ -340,6 +340,14 @@ public class BeanMappingMethod extends NormalTypeMappingMethod {
|
|||||||
if ( factoryMethod != null ) {
|
if ( factoryMethod != null ) {
|
||||||
forgedMethod.addThrownTypes( factoryMethod.getThrownTypes() );
|
forgedMethod.addThrownTypes( factoryMethod.getThrownTypes() );
|
||||||
}
|
}
|
||||||
|
for ( LifecycleCallbackMethodReference beforeMappingMethod : beforeMappingMethods ) {
|
||||||
|
forgedMethod.addThrownTypes( beforeMappingMethod.getThrownTypes() );
|
||||||
|
}
|
||||||
|
|
||||||
|
for ( LifecycleCallbackMethodReference afterMappingMethod : afterMappingMethods ) {
|
||||||
|
forgedMethod.addThrownTypes( afterMappingMethod.getThrownTypes() );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
for ( PropertyMapping propertyMapping : propertyMappings ) {
|
for ( PropertyMapping propertyMapping : propertyMappings ) {
|
||||||
if ( propertyMapping.getAssignment() != null ) {
|
if ( propertyMapping.getAssignment() != null ) {
|
||||||
|
@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* Copyright MapStruct Authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*/
|
||||||
|
package org.mapstruct.ap.test.bugs._3142;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Filip Hrisafov
|
||||||
|
*/
|
||||||
|
public class Issue3142Exception extends Exception {
|
||||||
|
|
||||||
|
public Issue3142Exception(String message) {
|
||||||
|
super( message );
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
/*
|
||||||
|
* Copyright MapStruct Authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*/
|
||||||
|
package org.mapstruct.ap.test.bugs._3142;
|
||||||
|
|
||||||
|
import org.mapstruct.ap.testutil.IssueKey;
|
||||||
|
import org.mapstruct.ap.testutil.ProcessorTest;
|
||||||
|
import org.mapstruct.ap.testutil.WithClasses;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThatThrownBy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Filip Hrisafov
|
||||||
|
*/
|
||||||
|
@WithClasses({
|
||||||
|
Issue3142Exception.class,
|
||||||
|
Source.class,
|
||||||
|
Target.class,
|
||||||
|
})
|
||||||
|
@IssueKey("3142")
|
||||||
|
class Issue3142Test {
|
||||||
|
|
||||||
|
@ProcessorTest
|
||||||
|
@WithClasses({
|
||||||
|
Issue3142WithBeforeMappingExceptionMapper.class
|
||||||
|
})
|
||||||
|
void exceptionThrownInBeforeMapping() {
|
||||||
|
assertThatThrownBy( () -> Issue3142WithBeforeMappingExceptionMapper.INSTANCE.map(
|
||||||
|
new Source( new Source.Nested( "throwException" ) ), "test" )
|
||||||
|
)
|
||||||
|
.isInstanceOf( Issue3142Exception.class )
|
||||||
|
.hasMessage( "Source nested exception" );
|
||||||
|
}
|
||||||
|
|
||||||
|
@ProcessorTest
|
||||||
|
@WithClasses({
|
||||||
|
Issue3142WithAfterMappingExceptionMapper.class
|
||||||
|
})
|
||||||
|
void exceptionThrownInAfterMapping() {
|
||||||
|
assertThatThrownBy( () -> Issue3142WithAfterMappingExceptionMapper.INSTANCE.map(
|
||||||
|
new Source( new Source.Nested( "throwException" ) ), "test" )
|
||||||
|
)
|
||||||
|
.isInstanceOf( Issue3142Exception.class )
|
||||||
|
.hasMessage( "Source nested exception" );
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
/*
|
||||||
|
* Copyright MapStruct Authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*/
|
||||||
|
package org.mapstruct.ap.test.bugs._3142;
|
||||||
|
|
||||||
|
import org.mapstruct.AfterMapping;
|
||||||
|
import org.mapstruct.Mapper;
|
||||||
|
import org.mapstruct.factory.Mappers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Filip Hrisafov
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface Issue3142WithAfterMappingExceptionMapper {
|
||||||
|
|
||||||
|
Issue3142WithAfterMappingExceptionMapper INSTANCE =
|
||||||
|
Mappers.getMapper( Issue3142WithAfterMappingExceptionMapper.class );
|
||||||
|
|
||||||
|
Target map(Source source, String id) throws Issue3142Exception;
|
||||||
|
|
||||||
|
@AfterMapping
|
||||||
|
default void afterMappingValidation(Object source) throws Issue3142Exception {
|
||||||
|
if ( source instanceof Source.Nested ) {
|
||||||
|
Source.Nested nested = (Source.Nested) source;
|
||||||
|
if ( "throwException".equals( nested.getValue() ) ) {
|
||||||
|
throw new Issue3142Exception( "Source nested exception" );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
/*
|
||||||
|
* Copyright MapStruct Authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*/
|
||||||
|
package org.mapstruct.ap.test.bugs._3142;
|
||||||
|
|
||||||
|
import org.mapstruct.BeforeMapping;
|
||||||
|
import org.mapstruct.Mapper;
|
||||||
|
import org.mapstruct.factory.Mappers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Filip Hrisafov
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface Issue3142WithBeforeMappingExceptionMapper {
|
||||||
|
|
||||||
|
Issue3142WithBeforeMappingExceptionMapper INSTANCE =
|
||||||
|
Mappers.getMapper( Issue3142WithBeforeMappingExceptionMapper.class );
|
||||||
|
|
||||||
|
Target map(Source source, String id) throws Issue3142Exception;
|
||||||
|
|
||||||
|
@BeforeMapping
|
||||||
|
default void preMappingValidation(Object source) throws Issue3142Exception {
|
||||||
|
if ( source instanceof Source.Nested ) {
|
||||||
|
Source.Nested nested = (Source.Nested) source;
|
||||||
|
if ( "throwException".equals( nested.getValue() ) ) {
|
||||||
|
throw new Issue3142Exception( "Source nested exception" );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,33 @@
|
|||||||
|
/*
|
||||||
|
* Copyright MapStruct Authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*/
|
||||||
|
package org.mapstruct.ap.test.bugs._3142;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Filip Hrisafov
|
||||||
|
*/
|
||||||
|
public class Source {
|
||||||
|
private final Nested nested;
|
||||||
|
|
||||||
|
public Source(Nested nested) {
|
||||||
|
this.nested = nested;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Nested getNested() {
|
||||||
|
return nested;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class Nested {
|
||||||
|
private final String value;
|
||||||
|
|
||||||
|
public Nested(String value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* Copyright MapStruct Authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*/
|
||||||
|
package org.mapstruct.ap.test.bugs._3142;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Filip Hrisafov
|
||||||
|
*/
|
||||||
|
public class Target {
|
||||||
|
private String id;
|
||||||
|
private Nested nested;
|
||||||
|
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(String id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Nested getNested() {
|
||||||
|
return nested;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNested(Nested nested) {
|
||||||
|
this.nested = nested;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class Nested {
|
||||||
|
private String value;
|
||||||
|
|
||||||
|
public String getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setValue(String value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user