首先引入依赖,用mockito-inline替换mockito-core依赖(看mockito-inlinepom.xml文件可知,其内部依赖了mockito-core)

<dependency>
    <groupId>org.mockito</groupId>
    <artifactId>mockito-inline</artifactId>
    <version>3.7.7</version>
    <scope>test</scope>
</dependency>

假如有个SysDataService类, 里面都是静态的工具方法

public class SysDataService {
    /**
     * 校验配置中的机场是否都归属于对应城市
     */
    public static boolean airportsBelongToCity(String cityCode, List<String> airportCodeList) {
        return airportCodeList.stream()
            .allMatch(airportCode -> cityCode.equals(SysDataService.getAirportCity(airportCode)));
    }
}

在UT中如果想要Mock,可以使用:

MockedStatic<SysDataService> theMock = Mockito.mockStatic(SysDataService.class);
theMock.when(() -> SysDataService.airportsBelongToCity(anyString(), anyList())).thenReturn(true);

另外在使用结束后需要执行

theMock.close();

因为mock的是整个类,里面的其他静态方法也会受到这次影响,其他用到这些静态方法的ut可能会报错,所以需要及时关闭。

关联报错

static mocking is already registered in the current thread ,To create a new mock, the existing static mock registration must be deregistered

如果可能会在连续多个ut中使用可以设置为

private static final MockedStatic<SysDataService> theMock = Mockito.mockStatic(SysDataService.class);

方便最后统一关闭。

注意:如果在同一个函数里还调用了模拟的静态方法所属的类里的其他方法处理过的数据,会导致模拟失败。
比如,模拟的类.模拟的静态方法(参数1.1,参数2);其中 参数1.1 = 模拟的类.其他方法(参数1),这样模拟就会失效。

标签: none

添加新评论