gpt4 book ai didi

java - SpyBean 没有被注入(inject)到任何地方

转载 作者:行者123 更新时间:2023-12-02 10:50:38 24 4
gpt4 key购买 nike

我很难将 spy bean 放入我的 ApplicationContext 中。我有一个名为 utilities 的 bean,其类型为 Utilities:

@Component("utilities")
public class Utilities {

<snip>

/**
* Returns a random int. This is provided mostly for testing mock-ability
*
* @return a random integer
*/
public int getRandom() {
return (int) (Math.random() * Integer.MAX_VALUE);
}
}

它是在我的 Spring Integration 流程间接引用的类中使用的。

然后我进行木星测试:

@TestInstance(Lifecycle.PER_CLASS)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
@ExtendWith(SpringExtension.class)
@ContextConfiguration( classes = {
XmlLocations.class,
VisitorManager.class,
Utilities.class,
UnixTimeChannel.class
})
@WebMvcTest
//@TestExecutionListeners( { MockitoTestExecutionListener.class })
public class FullIntegrationTest {

@Autowired
private MockMvc mvc;

@SpyBean
private Utilities utilities;

private ClientAndServer mockServer;

private static final int MOCK_SERVER_PORT = 9089;

@BeforeAll
public void setUpBeforeClass() {

Mockito.when(utilities.getRandom()).thenReturn(Integer.MAX_VALUE);

mockServer = ClientAndServer.startClientAndServer(MOCK_SERVER_PORT);
RestAssuredMockMvc.mockMvc(mvc);
(new MockServerPingInit()).initializeExpectations(mockServer);
(new MockServerFullIntegrationInit()).initializeExpectations(mockServer);
}

@Test
public void t00200_IncomingMessage() {

RestAssuredMockMvc.given()
.queryParam("example", "example")
.when()
.request("POST", "/api/v1/incoming")
.then()
.statusCode(equalTo(200));
}

<snip>

但是,即使我创建了 spy bean并使用了when/thenReturn,它也不会漂浮到我的应用程序上下文中等待被调用并返回它的模拟随机值。

我知道 utility.getRandom() 方法被调用,因为我可以在它上面放置一个断点并调试测试,并且它会命中 getRandom 方法,但是当我尝试添加如上所示的 spy bean 并模拟时getRandom 返回一个固定值来测试断点仍然命中,因此我可以告诉真正的方法而不是模拟正在被调用。

我也尝试将 when/thenReturn 放入测试中,以防为时过早,但没有帮助。

显然我做错了什么,可能是概念上的错误。停下!

最佳答案

我尝试用最少的配置重现您的问题:

@ExtendWith(SpringExtension.class)
@ContextConfiguration(classes = {Ctx.class})
public class XTest {

@SpyBean
private Random random1;

@Autowired private Supplier<Integer> intSupplier;

@Test
public void test() {
Mockito.when(random1.nextInt()).thenReturn(Integer.MAX_VALUE);
int i = intSupplier.get();
System.out.println("i=" + i);
}

@Configuration
public static class Ctx {

@Bean
static Random random1() {
return ThreadLocalRandom.current();
}

@Bean
static Supplier<Integer> intSupplier(Random random1) {
return random1::nextInt;
}
}
}

正如预期的那样,它打印了

i=2147483647

所以,您的运行时配置一定有问题...您能分享一下吗?我猜 spring-integration 正在使用另一个 ApplicationContext。我知道这不是答案,如果没有帮助我会删除它。

关于java - SpyBean 没有被注入(inject)到任何地方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52208554/

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