java - Micronaut:无法使用 junit 测试重定向响应

标签 java junit micronaut

我正在尝试测试 Controller 返回 HttpResponse.seeOther(URI.create(redirectUri)); 的重定向场景。问题是我的测试用例遵循重定向而不是返回 HttpResponse<String>或同等的东西。如何在 Micronaut 中测试这个?

Controller

  @Post("/some/endpoint")
  public HttpResponse<?> capture(@Body Map<String, String> body)
      throws Exception {
    // do something
    String uri = getRedirectUri();
    return HttpResponse.seeOther(URI.create(redirectUri));
  }

测试

  @Test
  public void testCapture() {
    String expectedUri = getRedirectUri();
    //following doesn't work
    String redirectUrl = client.toBlocking().retrieve(HttpRequest.POST("/some/endpoint",  body), String.class);
    assertEquals(expectedUri, redirectUrl);

    //following also doesn't work
    HttpResponse<String> response = client.toBlocking().retrieve(HttpRequest.POST("/some/controller", someBody), HttpResponse.class);
    assertEquals(HttpStatus.SEE_OTHER, response.status());
  }

错误

16:59:32.321 [nioEventLoopGroup-1-3] TRACE i.m.http.client.DefaultHttpClient - HTTP Client Response Received for Request: POST http://localhost:65164/some/endpoint
16:59:32.322 [nioEventLoopGroup-1-3] TRACE i.m.http.client.DefaultHttpClient - Status Code: 303 See Other
16:59:32.322 [nioEventLoopGroup-1-3] TRACE i.m.http.client.DefaultHttpClient - Location: http://localhost:8080/target/location.html
16:59:32.322 [nioEventLoopGroup-1-3] TRACE i.m.http.client.DefaultHttpClient - Date: Wed, 13 Nov 2019 23:59:32 GMT
16:59:32.322 [nioEventLoopGroup-1-3] TRACE i.m.http.client.DefaultHttpClient - connection: close
16:59:32.322 [nioEventLoopGroup-1-3] TRACE i.m.http.client.DefaultHttpClient - Response Body
16:59:32.322 [nioEventLoopGroup-1-3] TRACE i.m.http.client.DefaultHttpClient - ----
16:59:32.322 [nioEventLoopGroup-1-3] TRACE i.m.http.client.DefaultHttpClient - 
16:59:32.322 [nioEventLoopGroup-1-3] TRACE i.m.http.client.DefaultHttpClient - ----


io.micronaut.http.client.exceptions.HttpClientException: Connect Error: Connection refused: localhost/127.0.0.1:8080

    at io.micronaut.http.client.DefaultHttpClient.lambda$null$24(DefaultHttpClient.java:1035)
    at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:511)
    at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:504)
    at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:483)
    at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:424)
    at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:121)
    at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.fulfillConnectPromise(AbstractNioChannel.java:327)
    at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:343)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:632)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:579)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:496)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:458)
    at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:897)
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
    at java.lang.Thread.run(Thread.java:748)
Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:8080
    at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
    at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
    at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:327)
    at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:340)
    ... 7 more
Caused by: java.net.ConnectException: Connection refused
    ... 11 more

最佳答案

通过使用返回发布者的 client.exchange() 方法实现了解决方法。 io.reactivex.subscribers.TestSubscriber 可用于订阅和测试断言。

HttpClient.exchange()方法签名-

<I, O> Publisher<HttpResponse<O>> exchange(HttpRequest<I> request, Class<O> bodyType) {...}

使用TestSubscriber工作测试用例-

@Test
public void testCapture() {
  //Instead of using client.toBlocking().retrieve(...)
  /*
  String redirectUrl = client.toBlocking()
      .retrieve(HttpRequest.POST("/some/endpoint",  body), String.class);
  */

  // Use client.exchange(...)
  Publisher<HttpResponse<Object>> exchange =
    client.exchange(HttpRequest.POST("/payment/1234567890/capture", body)
        .contentType(MediaType.APPLICATION_FORM_URLENCODED), Object.class);

  TestSubscriber<HttpResponse<?>> testSubscriber = new TestSubscriber<HttpResponse<?>>() {
    @Override
    public void onNext(HttpResponse<?> httpResponse) {
      assertNotNull(httpResponse);
      assertEquals(HttpStatus.SEE_OTHER, httpResponse.status());
      assertEquals(getRedirectUri(), httpResponse.header("location"));
    }
  };

  exchange.subscribe(testSubscriber);

  // await to allow for response
  testSubscriber.awaitTerminalEvent(2, TimeUnit.SECONDS);

  // assert for errors, completion, terminated etc.
  testSubscriber.assertNoErrors();
  testSubscriber.assertComplete();
  testSubscriber.assertTerminated();
}

关于java - Micronaut:无法使用 junit 测试重定向响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58847456/

相关文章:

java - 如何在 JUnit 中比较两个 double 列表

java - 禁用本地 consul 配置

java - Hibernate @OneToOne双向导致冗余select查询

java - 在 JFreeChart 中更新 PieChart

java - 我需要在 Y 轴上移动两个形状,该怎么做?

java - '非法状态异常 : missing behavior definition for preceeding method call' even though behavior is defined

java - Spring JUnit 测试测试类中的 Autowiring 变量

kotlin - Micronaut 和 kotin 中的 Mockito 不起作用

java - Micronaut 依赖注入(inject)不适用于 picocli 功能

java - J2EE连接远程Oracle DB表