Mockito:April 2009

5ktev3wc  于 12个月前  发布在  其他
关注(0)|答案(9)|浏览(105)

我有一个执行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"));


有什么建议吗?

u4vypkhs

u4vypkhs1#

错误消息概述了解决方案。

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

字符串
当需要使用所有原始值或所有匹配器时,使用一个原始值和一个匹配器。正确的版本可能是:

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

3pmvbmvn

3pmvbmvn2#

我有同样的问题很长一段时间了,我经常需要混合匹配器和值,我从来没有设法做到这一点与Mockito.直到最近!我把解决方案放在这里,希望它会帮助别人,即使这篇文章是相当旧的。
很明显,在Mockito中不可能同时使用Matchers AND值,但是如果有一个Matcher接受比较一个变量呢?这将解决这个问题.

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

字符串
在本例中,'metas'是一个现有的值列表

hzbexzde

hzbexzde3#

它可能会在未来帮助一些人:Mockito不支持mocking 'final'方法(现在)。
对我来说,解决方案是把方法中不必是“final”的部分放在一个单独的、可访问的和可重写的方法中。
查看Mockito API的用例。

ylamdve6

ylamdve64#

可能对某些人有帮助。Mocked方法必须是mocked class,使用mock(MyService.class)创建

gdx19jrr

gdx19jrr5#

在我的例子中,这个异常是因为我试图模拟一个package-access方法而引发的。当我将方法访问级别从package更改为protected时,异常就消失了。例如,在Java类下面,

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

字符串
方法String getName(String id)必须是至少protected级别,这样mocking机制(子类化)才能工作。

utugiqy6

utugiqy66#

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

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

字符串
我花了一点时间才弄清楚,我试图模仿的方法是一个类的静态方法(比如Xyz.class),它只包含静态方法,我忘记写下面一行:

PowerMockito.mockStatic(Xyz.class);


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

ykejflvf

ykejflvf7#

另一种选择是使用捕获器:https://www.baeldung.com/mockito-argumentcaptor

// assume deliver takes two values 
@Captor
ArgumentCaptor<String> address; // declare before function call.
Mockito.verify(platform).deliver(address.capture(), any());
String value = address.getValue();
assertEquals(address == "[email protected]");

字符串
如果您想要捕获的对象的一个成员可能是一个随机ID,而另一个成员是您可以验证的对象,则捕获器特别有用。

htrmnn0y

htrmnn0y8#

正确答案如下:
1.请注意,您没有在RunWith注解下使用SpringRunner运行。而是使用@RunWith(value = MockitoJUnitRunner.class)
1.将所有@MockBean更改为@Mock
1.必须执行测试的类不应该是@Autowiere,而应该是@InjectMocks
1.查看您正在运行方法的类的所有私有成员都使用ReflectionUtil初始化:例如。
ReflectionTestUtils.setField(manualRiskCasePipeline,“salesForceServiceClient”,salesForceServiceClient);
1.另外,不要使用iskey作为when().thenReturn(iskey)的返回,这会导致argumentMismatch,而应该使用:when().thenReturn(null);

rkttyhzu

rkttyhzu9#

不要使用Mockito. anymore(),直接将值传递给同类型的方法参数。示例:

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

字符串

相关问题