#1751 Fix handling of possible builder creation methods with generic signature

When a method has a generic signature and the builder type is generic then the method return type does not match the builder type.
Therefore check only for raw types.
Add extra check for void method since a void method can't be a builder creation method
This commit is contained in:
Filip Hrisafov 2019-05-24 23:26:25 +02:00 committed by GitHub
parent 648ebceb30
commit 60c159a0a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 151 additions and 1 deletions

View File

@ -204,7 +204,14 @@ public class DefaultBuilderProvider implements BuilderProvider {
return method.getParameters().isEmpty()
&& method.getModifiers().contains( Modifier.PUBLIC )
&& method.getModifiers().contains( Modifier.STATIC )
&& !typeUtils.isSameType( method.getReturnType(), typeElement.asType() );
&& method.getReturnType().getKind() != TypeKind.VOID
// Only compare raw elements
// Reason: if the method is a generic method (<T> Holder<T> build()) and the type element is (Holder<T>)
// then the return type of the method does not match the type of the type element
&& !typeUtils.isSameType(
typeUtils.erasure( method.getReturnType() ),
typeUtils.erasure( typeElement.asType() )
);
}
/**

View File

@ -0,0 +1,35 @@
/*
* 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._1751;
/**
* @author Filip Hrisafov
*/
public class Holder<T> {
private final T value;
public Holder(T value) {
this.value = value;
}
public T getValue() {
return value;
}
// If empty is considered as a builder creation method, this method would be the build method and would
// lead to a stackoverflow
@SuppressWarnings("unused")
public Holder<T> duplicate() {
return new Holder<>( value );
}
// This method should not be considered as builder creation method
@SuppressWarnings("unused")
public static <V> Holder<V> empty() {
return new Holder<>( null );
}
}

View File

@ -0,0 +1,24 @@
/*
* 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._1751;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;
/**
* @author Filip Hrisafov
*/
@Mapper
public interface Issue1751Mapper {
Issue1751Mapper INSTANCE = Mappers.getMapper( Issue1751Mapper.class );
Target map(Source source);
default Holder<Target> mapToHolder(Source source) {
return new Holder<>( this.map( source ) );
}
}

View File

@ -0,0 +1,40 @@
/*
* 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._1751;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mapstruct.ap.testutil.IssueKey;
import org.mapstruct.ap.testutil.WithClasses;
import org.mapstruct.ap.testutil.runner.AnnotationProcessorTestRunner;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Filip Hrisafov
*/
@IssueKey("1772")
@RunWith(AnnotationProcessorTestRunner.class)
@WithClasses({
Holder.class,
Issue1751Mapper.class,
Source.class,
Target.class
})
public class Issue1751Test {
@Test
public void name() {
Source source = new Source();
source.setValue( "some value" );
Holder<Target> targetHolder = Issue1751Mapper.INSTANCE.mapToHolder( source );
assertThat( targetHolder.getValue() )
.extracting( Target::getValue )
.isEqualTo( "some value" );
}
}

View File

@ -0,0 +1,22 @@
/*
* 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._1751;
/**
* @author Filip Hrisafov
*/
public class Source {
private String value;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}

View File

@ -0,0 +1,22 @@
/*
* 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._1751;
/**
* @author Filip Hrisafov
*/
public class Target {
private String value;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}