5

我正在编写一个 Java 类,它在后台使用Jersey将 HTTP 请求发送到 RESTful API(第 3 方)。

我还想编写一个模拟 API 发送回 HTTP 500 响应的 JUnit 测试。作为泽西岛的新手,我很难看出我必须做什么来模拟这些 HTTP 500 响应。

到目前为止,这是我最好的尝试:

// The main class-under-test
public class MyJerseyAdaptor {
    public void send() {
        ClientConfig config = new DefaultClientConfig();
        Client client = Client.create(config);
        String uri = UriBuilder.fromUri("http://example.com/whatever").build();
        WebResource service = client.resource(uri);

        // I *believe* this is where Jersey actually makes the API call...
        service.path("rest").path("somePath")
                .accept(MediaType.TEXT_HTML).get(String.class);
    }
}

@Test
public void sendThrowsOnHttp500() {
    // GIVEN
    MyJerseyAdaptor adaptor = new MyJerseyAdaptor();

    // WHEN
    try {
        adaptor.send();

        // THEN - we should never get here since we have mocked the server to
        // return an HTTP 500
        org.junit.Assert.fail();
    }
    catch(RuntimeException rte) {
        ;
    }
}

我熟悉 Mockito,但对模拟库没有偏好。基本上,如果有人能告诉我需要模拟哪些类/方法来抛出 HTTP 500 响应,我就可以弄清楚如何实际实现模拟。

4

3 回答 3

4

尝试这个:

WebResource service = client.resource(uri);

WebResource serviceSpy = Mockito.spy(service);

Mockito.doThrow(new RuntimeException("500!")).when(serviceSpy).get(Mockito.any(String.class));

serviceSpy.path("rest").path("somePath")
            .accept(MediaType.TEXT_HTML).get(String.class);

我不知道球衣,但据我了解,我认为实际调用是在调用 get() 方法时完成的。因此,您可以只使用一个真实的 WebResource 对象并替换get(String)方法的行为来引发异常,而不是实际执行 http 调用。

于 2012-12-24T02:01:33.430 回答
1

我正在编写一个 Jersey Web 应用程序......我们为 HTTP 错误响应抛出 WebApplicationException。您可以简单地将响应代码作为构造函数参数传递。例如,

throw new WebApplicationException(500);

当服务器端抛出此异常时,它会在我的浏览器中显示为 500 HTTP 响应。

不确定这是否是您想要的……但我认为输入可能会有所帮助!祝你好运。

于 2012-12-24T01:54:34.003 回答
0

我能够使用以下代码模拟 500 响应:

@RunWith(MockitoJUnitRunner.class)
public class JerseyTest {

    @Mock
    private Client client;
    @Mock
    private WebResource resource;
    @Mock
    private WebResource.Builder resourceBuilder;

    @InjectMocks
    private Service service;

    @Before
    public void setUp() {
        MockitoAnnotations.initMocks(this);
    }


    @Test
    public void jerseyWith500() throws Exception {

        // Mock the client to return expected resource
        when(client.resource(anyString())).thenReturn(resource);
        // Mock the builder
        when(resource.accept(MediaType.APPLICATION_JSON)).thenReturn(resourceBuilder);

        // Mock the response object to throw an error that simulates a 500 response
        ClientResponse c = new ClientResponse(500, null, null, null);

        // The buffered response needs to be false or else we get an NPE
        // when it tries to read the null entity above.
        UniformInterfaceException uie = new UniformInterfaceException(c, false);
        when(resourceBuilder.get(String.class)).thenThrow(uie);

        try {
            service.get("/my/test/path");
        } catch (Exception e) {
            // Your assert logic for what should happen here.
        }
    }
}
于 2018-10-30T17:05:54.783 回答