3

尝试使用模拟执行简单测试时遇到意外错误。

@RunWith(MockitoJUnitRunner)
class AccessorTest {

    @Mock
    private DeviceBuilder deviceBuilder

    @Test
    void shouldCreateDeviceFromFilesystem() {
        //given
        URI uri = this.class.classLoader.getResource("sample-filesystem").toURI()
        File deviceRoot = new File(uri)

        Accessor accessor = new Accessor(deviceBuilder)
        Device expectedDevice = new Device(deviceRoot)
        when(deviceBuilder.build(eq(deviceRoot))).thenReturn(expectedDevice)

        //when
        Device device = accessor.readFrom(deviceRoot)
        //then
        assert device == expectedDevice
        verify(deviceBuilder).build(deviceRoot)
    }
}

DeviceBuilder 是单一方法接口 Device::DeviceBuilder#build(File root)。根据 Josh Bloch,Device 具有明确定义的 equals 方法。

在 when() 行上抛出异常,并且范围内的所有变量都不是 null。完整的例外是:

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: 
Invalid use of argument matchers!
0 matchers expected, 1 recorded.
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"));

值得一提的是我的 POM 片段:

<build>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <compilerId>groovy-eclipse-compiler</compilerId>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>org.codehaus.groovy</groupId>
                    <artifactId>groovy-eclipse-compiler</artifactId>
                    <version>2.7.0-01</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

<dependencies>
    <dependency>
        <groupId>org.codehaus.groovy</groupId>
        <artifactId>groovy-all</artifactId>
        <version>2.0.4</version>
    </dependency>

    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.10</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-all</artifactId>
        <version>1.8.5</version>
        <scope>test</scope>
    </dependency>
</dependencies>

我的怀疑要么是 Groovy 管理类的方式有些奇怪,要么是某些版本不兼容,但我希望这是我看不到的显而易见的事情。

4

3 回答 3

2

I know this is an old question, but this may be helpful to someone else.

The issue described in the question is detailed at http://code.google.com/p/mockito/issues/detail?id=303

I ran into the very same issue and I got it fixed by using the library provided at https://github.com/cyrusinnovation/mockito-groovy-support

于 2013-07-13T22:02:19.257 回答
0

有时,Mockito 不会在它发生时标记不当使用,而是在下一次调用时标记。你可以看一下之前的测试,也许你那里有问题?

该消息说,在调用中,您要么只提供匹配器,要么只提供真实对象,而不是它们的组合。您通常可以通过使用 eq(obj) 而不是对象本身(或 sameInstance(obj))来解决此问题,以拥有所有匹配器。但是在这种情况下,我在您发布的代码中找不到任何符合该描述的位置,这就是为什么我怀疑代码的较早位置存在问题。

于 2013-04-21T05:52:29.117 回答
-1

我不回答原来的问题。

我到处搜索,关于我得到的错误的唯一问题指向这个讨论。

如果有人遇到此错误:不要调用模拟方法为匹配器提供值。呼叫deviceBuilder.build应该在 BEFORE 之前verify(进行。

于 2015-06-17T16:31:08.687 回答