当我将匹配器作为参数发送时 Mockito InvalidUseOfMatchersException

Mockito InvalidUseOfMatchersException when I send matchers as Parameters

我正在使用 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中的助手class

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));

这是您的测试对 "trigger" 某些 activity 进行的生产代码调用,然后通过验证某些结果或某些模拟已按预期调用进行检查。

但是:您不能(也不应该)在此处使用该参数匹配器。去吧:

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

换句话说:您提供了一个 "real" 参数。其中一个你 "know" 应该发生什么。意思是:您调用生产代码,并将特定的 "context" 传递给该调用。然后根据您的知识 "when I pass 42, X should happen",您验证 "yes, X did happen".

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

参数匹配器不会神奇地知道如何创建一个值以传递到一个方法中。他们的唯一目的是 匹配 反对某事的传入参数。当然,他们的签名是以一种允许您这样编写代码的方式编写的。但这是在您的模拟规范中方便地使用参数匹配器所必需的。匹配器并不是真正的 return 值,它们只是 接受 它们。