Mockito:InvalidUseOfMatchersException

时间:2013-02-13 02:56:22

标签: java unit-testing mockito

我有一个执行DNS检查的命令行工具。如果DNS检查成功,则命令继续执行进一步的任务。我正在尝试使用Mockito为此编写单元测试。这是我的代码:

public class Command() {
    // ....
    void runCommand() {
        // ..
        dnsCheck(hostname, new InetAddressFactory());
        // ..
        // do other stuff after dnsCheck
    }

    void dnsCheck(String hostname, InetAddressFactory factory) {
        // calls to verify hostname
    }
}

我正在使用InetAddressFactory来模拟InetAddress类的静态实现。这是工厂的代码:

public class InetAddressFactory {
    public InetAddress getByName(String host) throws UnknownHostException {
        return InetAddress.getByName(host);
    }
}

这是我的单元测试用例:

@RunWith(MockitoJUnitRunner.class)
public class CmdTest {

    // many functional tests for dnsCheck

    // here's the piece of code that is failing
    // in this test I want to test the rest of the code (i.e. after dnsCheck)
    @Test
    void testPostDnsCheck() {
        final Cmd cmd = spy(new Cmd());

        // this line does not work, and it throws the exception below:
        // tried using (InetAddressFactory) anyObject()
        doNothing().when(cmd).dnsCheck(HOST, any(InetAddressFactory.class));
        cmd.runCommand();
    }
}

运行testPostDnsCheck()测试时出现异常:

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

有关如何解决此问题的任何意见?

7 个答案:

答案 0 :(得分:216)

错误消息非常清楚地概述了解决方案。这条线

doNothing().when(cmd).dnsCheck(HOST, any(InetAddressFactory.class))
当需要使用所有原始值或所有匹配器时,

使用一个原始值和一个匹配器。正确的版本可能会读取

doNothing().when(cmd).dnsCheck(eq(HOST), any(InetAddressFactory.class))

答案 1 :(得分:25)

我长期以来遇到同样的问题,我经常需要混合Matchers和价值观,而我从未设法与Mockito做到这一点....直到最近! 我把解决方案放在这里,希望它能帮助某人,即使这篇文章很老了。

显然不可能在Mockito中一起使用Matchers AND值,但是如果匹配器接受比较变量怎么办?这样可以解决问题......实际上有:eq

when(recommendedAccessor.searchRecommendedHolidaysProduct(eq(metas), any(List.class), any(HotelsBoardBasisType.class), any(Config.class)))
            .thenReturn(recommendedResults);

在此示例中,“metas”是现有的值列表

答案 2 :(得分:11)

未来可能对某人有所帮助:Mockito不支持嘲笑'最终'方法(现在)。它给了我相同的\d+(?=\D*$)

对我来说,解决方案是将方法的一部分放在一个单独的,可访问和可覆盖的方法中,而不是'final'。

查看用例的Mockito API

答案 3 :(得分:0)

尽管使用了所有匹配器,但我遇到了同样的问题:

"org.mockito.exceptions.misusing.InvalidUseOfMatchersException: 
Invalid use of argument matchers!
1 matchers expected, 3 recorded:"

花了我一点时间才弄清楚我要模拟的方法是一个类的静态方法(例如Xyz.class),它只包含静态方法,而我忘了写以下行:

PowerMockito.mockStatic(Xyz.class);

这可能会帮助其他人,因为这也可能是问题的原因。

答案 4 :(得分:0)

对于我来说,引发异常是因为我尝试模拟package-access方法。当我将方法访问级别从package更改为protected时,异常消失了。例如。在Java类下面,

public class Foo {
    String getName(String id) {
        return mMap.get(id);
    }
}

方法String getName(String id)必须为至少 protected级,这样模拟机制(子类)才能起作用。

答案 5 :(得分:0)

可能对某人有帮助。模拟方法必须属于 模拟类,使用 mock(MyService.class)

创建

答案 6 :(得分:-1)

请勿使用Mockito.anyXXXX()。将值直接传递给相同类型的方法参数。 示例:

A expected = new A(10);

String firstId = "10w";
String secondId = "20s";
String product = "Test";
String type = "type2";
Mockito.when(service.getTestData(firstId, secondId, product,type)).thenReturn(expected);

public class A{
   int a ;
   public A(int a) {
      this.a = a;
   }
}