1
0

FluentBuilder<D> as interface with default method

This commit is contained in:
Michael Hoennig
2019-04-29 12:19:34 +02:00
parent 1916347490
commit cc0857e33b
5 changed files with 52 additions and 20 deletions

View File

@ -31,7 +31,7 @@ public class JSonAccessFilterTestFixture {
return dto;
}
static class GivenCustomerDto extends FluentBuilder<GivenCustomerDto> {
static class GivenCustomerDto implements FluentBuilder<GivenCustomerDto> {
@SelfId(resolver = GivenService.class)
@AccessFor(read = ANYBODY)
Long id;
@ -44,7 +44,7 @@ public class JSonAccessFilterTestFixture {
static abstract class GivenCustomerService implements IdToDtoResolver<GivenCustomerDto> {
}
static class GivenDto extends FluentBuilder<GivenDto> {
static class GivenDto implements FluentBuilder<GivenDto> {
@SelfId(resolver = GivenService.class)
@AccessFor(read = ANYBODY)
Long id;
@ -109,7 +109,7 @@ public class JSonAccessFilterTestFixture {
static abstract class GivenChildService implements IdToDtoResolver<GivenChildDto> {
}
public static class GivenChildDto extends FluentBuilder<GivenChildDto> {
public static class GivenChildDto implements FluentBuilder<GivenChildDto> {
@SelfId(resolver = GivenChildService.class)
@AccessFor(read = Role.ANY_CUSTOMER_USER)

View File

@ -73,18 +73,20 @@ public class JSonDeserializationWithAccessFilterUnitTest {
given(ctx.getAutowireCapableBeanFactory()).willReturn(autowireCapableBeanFactory);
given(autowireCapableBeanFactory.createBean(GivenService.class)).willReturn(givenService);
given(givenService.findOne(1234L)).willReturn(Optional.of(new GivenDto()
.with(dto -> dto.id = 1234L)
.with(dto -> dto.customerId = 888L)
.with(dto -> dto.openIntegerField = 11111)
.with(dto -> dto.openPrimitiveIntField = 2222)
.with(dto -> dto.openLongField = 33333333333333L)
.with(dto -> dto.openPrimitiveLongField = 44444444L)
.with(dto -> dto.openBooleanField = true)
.with(dto -> dto.openPrimitiveBooleanField = false)
.with(dto -> dto.openBigDecimalField = SOME_BIG_DECIMAL)
.with(dto -> dto.openStringField = "3333")
.with(dto -> dto.restrictedField = "initial value of restricted field")
.with(dto -> dto.restrictedBigDecimalField = SOME_BIG_DECIMAL)
.with( dto -> {
dto.id = 1234L;
dto.customerId = 888L;
dto.openIntegerField = 11111;
dto.openPrimitiveIntField = 2222;
dto.openLongField = 33333333333333L;
dto.openPrimitiveLongField = 44444444L;
dto.openBooleanField = true;
dto.openPrimitiveBooleanField = false;
dto.openBigDecimalField = SOME_BIG_DECIMAL;
dto.openStringField = "3333";
dto.restrictedField = "initial value of restricted field";
dto.restrictedBigDecimalField = SOME_BIG_DECIMAL;
})
));
given(autowireCapableBeanFactory.createBean(GivenCustomerService.class)).willReturn(givenCustomerService);
given(givenCustomerService.findOne(888L)).willReturn(Optional.of(new GivenCustomerDto()