如何模拟接受类类型的通用方法?

时间:2019-01-08 01:48:00

标签: java unit-testing generics junit mockito

我正在尝试为REST API客户端编写单元测试。我遵循的模式在各种其他单元测试中对我来说都很有效。特别是,我已经成功地模拟了已注入到受测存储库中的依赖项。但是,当我模拟Spring RestTemplate时,我无法找到一种方法来获取其getForObject()方法来返回null以外的任何内容。有谁知道如何做到这一点?我怀疑问题可能在于RestTemplate.getForObject()的签名包含泛型:

public <T> T getForObject(URI url, Class<T> responseType) throws RestClientException

这是我要测试的REST客户端类:

@Repository
public class WebApplicationClient {
    private final RestTemplate template;
    public WebApplicationClient(RestTemplate template) {
        this.template = template;
    }
    public <T> T getData(String baseUrl, Class<T> clazz) {
        String endpoint = process(baseUrl);
        try {
            return template.getForObject(endpoint, clazz);  // Mock this call during testing
        } catch (HttpClientErrorException | HttpServerErrorException e) {
            String msg = "API call failed: " + endpoint;
            LOG.warn(msg, e);
            throw new WebApplicationException(e.getStatusCode(), msg, e);
        }
    }
}

到目前为止,这是我的单元测试。我为when(template.getForObject(...))所做的任何尝试总是返回null。因此,result始终为null,我的断言失败。

public class WebApplicationClientUnitTests {
    @Mock private RestTemplate template;
    private WebApplicationClient client;

    @Before
    public void setup() {
        MockitoAnnotations.initMocks(this);
        client = new WebApplicationClient(template);
    }

    @Test
    public void getData_Test1() {
        // when(template.getForObject(any(), eq(String.class))).thenReturn("sample"); // Returns null
        when(template.getForObject(any(), any())).thenReturn("sample"); // Returns null

        String result = client.getData(TEST_URL, "db", expectedState, String.class);
        Assert.assertEquals("sample", result);
    }
}

如何获得getForObject()来返回实际值?

1 个答案:

答案 0 :(得分:1)

@Test
public void getData_Test1() {

    when(template.getForObject((String) any(),eq(String.class))).thenReturn("sample");
    //OR
    //when(template.getForObject((String) any(),(Class)any())).thenReturn("sample");
    //OR
    //when(template.getForObject(any(String.class), any(Class.class))).thenReturn("sample");

    String result = client.getData("TEST_URL", String.class);
    Assert.assertEquals("sample", result);
}

上面的代码对我来说很好。