gpt4 book ai didi

java - 当我发送匹配器作为参数时,Mockito InvalidUseOfMatchersException

转载 作者:行者123 更新时间:2023-11-30 05:29:27 35 4
gpt4 key购买 nike

我正在使用mockito,并且面临与匹配器参数相关的问题。

我遇到了这个异常:

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: 
Invalid use of argument matchers!
2 matchers expected, 1 recorded:
-> at com.rccl.middleware.kidsclub.engine.services.RoomServiceTest.findBetweenMinAgeAndMaxAge_roomNot(RoomServiceTest.java:43)

This exception may occur if matchers are combined with raw values:
//incorrect:
someMethod(anyObject(), "raw String");
When using matchers, all arguments have to be provided by matchers.
For example:
//correct:
someMethod(anyObject(), eq("String by matcher"));

For more info see javadoc for Matchers class.

尽管我在所有参数中使用匹配器,但我收到此错误消息,我想这是因为我在 roomService.findByAge 中发送了一个匹配器,但此方法正在调用第二个匹配器findBetweenMinAgeAndMaxAge 并且在下一次调用中内部还有另外两个参数。我不太确定问题的原因以及如何解决它。

这是我的测试:

import com.rccl.middleware.kidsclub.engine.mock.MockDTO;
import com.rccl.middleware.kidsclub.engine.repository.RoomRepository;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
import java.util.Optional;
import com.rccl.middleware.kidsclub.engine.repository.model.ShipRoom.Room;

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.BDDMockito.given;


@RunWith(MockitoJUnitRunner.class)
public class RoomServiceTest {

@Mock
private RoomRepository roomRepository;
@Rule
public final ExpectedException expectedException = ExpectedException.none();

private RoomService roomService;

@Before
public void init() {
this.roomService = new RoomService(roomRepository);
}

@Test()
public void findBetweenMinAgeAndMaxAge_roomNot() {
int numRoomDTO = 3;
Optional<Room> room = Optional.ofNullable(MockDTO.buildRandomRoom(numRoomDTO));
given(roomRepository.findBetweenMinAgeAndMaxAge(any(Integer.class), anyString())).willReturn(room);
roomService.findByAge(any(Integer.class));
}
}

这是 findByAge 方法:

public Optional<RoomDTO> findByAge(int childAge) {
return roomRepository.findBetweenMinAgeAndMaxAge(childAge, DEFAULT_AGGREGATOR_ID)
.map(room -> ObjectMapperUtils.map(room, RoomDTO.class));
}

它是MockDTO类中的助手

public static Room buildRandomRoom(int index) {
return new Room(RandomStringUtils.randomAlphabetic(10),
RandomStringUtils.randomAlphabetic(10),
RandomStringUtils.randomAlphabetic(15),
RandomUtils.nextInt(0, 10),
RandomUtils.nextInt(11, 20));
}

最佳答案

这里:

roomService.findByAge(any(Integer.class));

这是对生产代码的调用,您的测试会“触发”某些 Activity ,然后通过验证某些结果来检查该 Activity ,或者按预期调用某些模拟。

但是:您不能(也不应该)在这里使用该参数匹配器。走吧:

roomService.findByAge(42); // or whatever number makes sense there

换句话说:你提供了一个“真实”的论点。其中之一你“知道”应该发生什么。含义:您调用生产代码,并将特定的“上下文”传递给该调用。根据你的知识“当我通过 42 时,X 应该发生”,然后你验证“是的,X 确实发生了”。

参数匹配器仅在为 Mockito 模拟对象编写规范时使用。例如:参数匹配器根据您的规范匹配传入参数,以做出某种决定。

参数匹配器不会神奇地知道如何创建一个值来传递到方法中。它们的唯一目的是将传入的参数与某些内容进行匹配。当然,他们的签名是以允许您这样编写代码的方式编写的。但这对于在模拟规范中方便地使用参数匹配器是必要的。匹配器并不真正返回值,它们只是接受它们。

关于java - 当我发送匹配器作为参数时,Mockito InvalidUseOfMatchersException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57882054/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com