gpt4 book ai didi

testing - 在 Play Controller 中模拟第三方 API

转载 作者:行者123 更新时间:2023-11-28 21:32:59 25 4
gpt4 key购买 nike

在基于 Play!框架(2.0,Java) 我想在测试 Controller 时模拟第三方 API。我为此选择了 Mockito,因为我找不到 Play 中的任何内置模拟功能!

我有这样的东西:

@Test
public void someTest() {
ThirdParty thirdParty = mock(ThirdParty.class);
when(thirdParty.someUnwantedMethod()).thenReturn("foo");

running(fakeApplication(), new Runnable() {
public void run() {
Result result = callAction(controllers.routes.ref.MyController.doImportantStuff());
verify(thirdParty.someUnwantedMethod()); // Verify that method in mock/API is called
assertThat(contentAsString(result)).contains("foo");
}
});
}

( Controller 依次在 ThirdParty 类的实例上调用“someUnwantedMethod()”,在测试时应该使用 mock 而不是)

如何让我的 Controller 接收模拟?

最佳答案

  1. 在MyController中引入一个静态的setThirdParty方法
  2. 在您的测试中,在“callAction”之前调用 MyController.setThirdParty(thirdParty)

这与游戏无关

关于testing - 在 Play Controller 中模拟第三方 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12833527/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com