java - 模拟 Vertx.io 异步处理程序

标签 java unit-testing mockito vert.x asynccallback

当我同步时,我编写了模拟持久性部分的单元测试并检查调用者的行为。这是我通常所做的一个例子:

@Mock
private OfferPersistenceServiceImpl persistenceService;
@Inject
@InjectMocks
private OfferServiceImpl offerService;
...
@Test
public void createInvalidOffer() {
  offer = new Offer(null, null, null, null, null, 4, 200D, 90D);
  String expectedMessage = Offer.class.getName() + " is not valid: " + offer.toString();
  Mockito.when(persistenceService.create(offer)).thenThrow(new IllegalArgumentException(expectedMessage));
  Response response = offerService.create(offer);
  Mockito.verify(persistenceService, Mockito.times(1)).create(offer);
  Assert.assertEquals(INVALID_INPUT, response.getStatus());
  String actualMessage = response.getEntity().toString();
  Assert.assertEquals(expectedMessage, actualMessage);
}

但现在我爱上了 Vertx.io(我对它还很陌生)并且我想要异步。好的。但 Vertx 有处理程序,因此要模拟的新持久性组件如下所示:

...
mongoClient.insert(COLLECTION, offer, h-> {
  ...
});

所以我猜测如何模拟处理程序 h 来测试使用该 mongoClient 的类,或者即使这是使用 Vertx.io 进行测试的正确方法。我正在使用 vertx.io 3.5.0junit 4.12mockito 2.13.0。谢谢。

更新 我尝试遵循 tsegimond 的建议,但我不明白 Mockito 的 AnswerArgumentCaptor 如何帮助我。这是我到目前为止所尝试的。 使用ArgumentCaptor:

JsonObject offer = Mockito.mock(JsonObject.class);
Mockito.when(msg.body()).thenReturn(offer);         
Mockito.doNothing().when(offerMongo).validate(offer);
RuntimeException rex = new RuntimeException("some message");
...
ArgumentCaptor<Handler<AsyncResult<String>>> handlerCaptor =
ArgumentCaptor.forClass(Handler.class);
ArgumentCaptor<AsyncResult<String>> asyncResultCaptor =
ArgumentCaptor.forClass(AsyncResult.class);
offerMongo.create(msg);
Mockito.verify(mongoClient,
Mockito.times(1)).insert(Mockito.anyString(), Mockito.any(), handlerCaptor.capture());
Mockito.verify(handlerCaptor.getValue(),
Mockito.times(1)).handle(asyncResultCaptor.capture());
Mockito.when(asyncResultCaptor.getValue().succeeded()).thenReturn(false);
Mockito.when(asyncResultCaptor.getValue().cause()).thenReturn(rex);
Assert.assertEquals(Json.encode(rex), msg.body().encode());

并使用答案:

ArgumentCaptor<AsyncResult<String>> handlerCaptor =
ArgumentCaptor.forClass(AsyncResult.class);
AsyncResult<String> result = Mockito.mock(AsyncResult.class);
Mockito.when(result.succeeded()).thenReturn(true);
Mockito.when(result.cause()).thenReturn(rex);
Mockito.doAnswer(new Answer<MongoClient>() {
  @Override
  public MongoClient answer(InvocationOnMock invocation) throws Throwable {
    ((Handler<AsyncResult<String>>)
    invocation.getArguments()[2]).handle(handlerCaptor.capture());
        return null;
      }
    }).when(mongoClient).insert(Mockito.anyString(), Mockito.any(),
Mockito.any());
userMongo.create(msg);
Assert.assertEquals(Json.encode(rex), msg.body().encode());

现在我很困惑。有没有办法模拟 AsyncResult 让它在 succeed() 上返回 false?

最佳答案

最后我有时间去调查并且我做到了。这是我的解决方案。

@RunWith(PowerMockRunner.class)
@PowerMockRunnerDelegate(VertxUnitRunner.class)
@PrepareForTest({ MongoClient.class })
public class PersistenceTest {

private MongoClient mongo;
private Vertx vertx;

@Before
public void initSingleTest(TestContext ctx) throws Exception {
  vertx = Vertx.vertx();
  mongo = Mockito.mock(MongoClient.class);
  PowerMockito.mockStatic(MongoClient.class);
  PowerMockito.when(MongoClient.createShared(Mockito.any(), Mockito.any())).thenReturn(mongo);
  vertx.deployVerticle(Persistence.class, new DeploymentOptions(), ctx.asyncAssertSuccess());
}

@SuppressWarnings("unchecked")
@Test
public void loadSomeDocs(TestContext ctx) {
  Doc expected = new Doc();
  expected.setName("report");
  expected.setPreview("loremipsum");
  Message<JsonObject> msg = Mockito.mock(Message.class);
  Mockito.when(msg.body()).thenReturn(JsonObject.mapFrom(expected));
  JsonObject result = new JsonObject().put("name", "report").put("preview", "loremipsum");
  AsyncResult<JsonObject> asyncResult = Mockito.mock(AsyncResult.class);
  Mockito.when(asyncResult.succeeded()).thenReturn(true);
  Mockito.when(asyncResult.result()).thenReturn(result);
  Mockito.doAnswer(new Answer<AsyncResult<JsonObject>>() {
    @Override
    public AsyncResult<JsonObject> answer(InvocationOnMock arg0) throws Throwable {
    ((Handler<AsyncResult<JsonObject>>) arg0.getArgument(3)).handle(asyncResult);
    return null;
    }
  }).when(mongo).findOne(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any());
  Async async = ctx.async();
  vertx.eventBus().send("persistence", new JsonObject(), msgh -> {
    if (msgh.failed()) {
    System.out.println(msgh.cause().getMessage());
    }
    ctx.assertTrue(msgh.succeeded());
    ctx.assertEquals(expected, Json.decodeValue(msgh.result().body().toString(), Doc.class));
    async.complete();
  });
  async.await();
  }
}

使用Powemockito mock MongoClient.createShared静态方法,因此当 Verticle 启动时您将获得模拟。模拟异步处理程序需要编写一些代码。正如你所看到的,模拟从 Message<JsonObject> msg = Mockito.mock(Message.class); 开始。并结束于 Mockito.doAnswer(new Answer... 。在 Answer的方法选择处理程序参数并强制它处理您的异步结果,然后就完成了。

关于java - 模拟 Vertx.io 异步处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47924091/

相关文章:

java - Mockito:模拟方法抛出异常

java - Mockito.当用真实对象调用返回null时,必须使用any()

visual-studio-2008 - 从命令行自动运行 NUnit 测试

java - IntelliJ - 如何从 "Run" View 中的失败单元测试跳转到源代码而不是编译类

java - 使用 SAML 重定向未登陆我的配置页面

java - 仅使用堆栈和标准 API 类通过反转来修改队列内容的方法?

c# - 在 ASP.NET MVC 中测试时如何访问 JsonResult 数据

java - PowerMock 模拟抽象类中的静态方法

java - 如何自动更改每天的文本查看消息?

java - 我可以在 WebSphere 中设置非事务性 JMS 连接工厂吗?