编程语言
首页 > 编程语言> > java – 测试泽西2客户端和webtarget

java – 测试泽西2客户端和webtarget

作者:互联网

我正在使用球衣2

我有一个抽象类,用于构建我的请求.
现在,我还有一些抽象的客户端类,我用它们作为代理类和实际的实现.这些工作得很好,但未经测试.

我的问题是如何测试它,而不必运行它连接的Web服务?

public abstract class AbstractRestProxy {

private Client client;
private WebTarget service;

/**
 * Get the base {@link Client} and {@link WebTarget}
 */
@PostConstruct
public void base() {
    this.client = ClientBuilder.newClient();
    this.service = this.client.target(this.getBaseUri());
}

/**
 * close the connection before destroy
 */
@PreDestroy
protected void close() {
    if (this.client != null) {
        this.client.close();
    }
}

/**
 *
 * @return get the basePath
 */
protected abstract String getBasePath();

/**
 *
 * @return get the baseUri
 */
protected abstract String getBaseUri();

/**
 *
 * @param paths
 *            the paths to get for the rest service
 * @return {@link javax.ws.rs.client.Invocation.Builder}
 */
protected Builder getRequest(final String... paths) {
    WebTarget serviceWithPath = this.getServiceWithPaths();
    for (final String path : paths) {
        serviceWithPath = serviceWithPath.path(path);
    }
    return serviceWithPath.request(MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON);
}

我使用的方法,例如获取带有标识符的响应,我使用此方法.

public Response getByID(final ID identifier) {
    return this.getRequest(identifier.toString()).get();
}

解决方法:

我发现这很好用.由于我甚至嘲笑回应,我认为我不得不关闭回应.

@RunWith(PowerMockRunner.class)
@PrepareForTest(ClientBuilder.class)
public class AbstractGenericRestActiveProxyTest {

final Client mockClient = Mockito.mock(Client.class);
final Response mockResponse = Mockito.mock(Response.class);

private final AbstractRestProxy proxy = new AbstractRestProxy();

@Before
public void start() {
    Mockito.when(this.mockResponse.getStatus()).thenReturn(200);

    final Builder mockBuilder = Mockito.mock(Builder.class);
    Mockito.when(mockBuilder.get()).thenReturn(this.mockResponse);
    Mockito.when(mockBuilder.post(Matchers.any())).thenReturn(this.mockResponse);
    Mockito.when(mockBuilder.put(Matchers.any())).thenReturn(this.mockResponse);
    Mockito.when(mockBuilder.delete()).thenReturn(this.mockResponse);

    final WebTarget mockWebTarget = Mockito.mock(WebTarget.class);
    Mockito.when(mockWebTarget.path(Matchers.anyString())).thenReturn(mockWebTarget);
    Mockito.when(mockWebTarget.request(MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON)).thenReturn(mockBuilder);

    Mockito.when(this.mockClient.target(Matchers.anyString())).thenReturn(mockWebTarget);

    PowerMockito.mockStatic(ClientBuilder.class);
    PowerMockito.when(ClientBuilder.newClient()).thenReturn(this.mockClient);
    this.proxy.base();
}

@After
public void stop() {
    this.proxy.close();
}

@Test
public void testGetByID() {
    Mockito.when(this.mockResponse.getStatus()).thenReturn(200);

    final Response result = this.proxy.getByID(1);
    Assert.assertEquals(200, result.getStatus());
}

标签:java,junit,jersey-2-0,jersey-client
来源: https://codeday.me/bug/20190829/1761737.html