-
Notifications
You must be signed in to change notification settings - Fork 41.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SpyBean does not necessary spy on the primary bean when there are 2 instance #7621
Comments
Thanks for the sample project. There's certainly an issue here but I'm not sure that it's directly related to |
Throwing an error is not an idea solution, since in production code, we do allow multiple beans and resolve using the Resolving the Bean to mock or spy or should be same as how it is done in the production code. Is it possible to just reuse the same code? For example, I see I have not fully investigate this yet, but I would think instead of spring-boot-test having its own logic to "pick" the bean to mock/spy on, it should delegate to the |
@lsiu I see your point, but it's more than just picking the bean. It also needs to update the bean definition in the context. Let me have a think about the options. |
Thanks @lsiu! We discussed this a little on our regular team call and we think using the |
Spring Boot has honored @Primary for selecting which candidate bean @MockBean and @SpyBean should mock or spy since Spring Boot 1.4.3; however, the support for @Primary was not ported from Spring Boot to Spring Framework's new Bean Overrides feature in the TestContext framework. To address that, this commit introduces support for @Primary for selecting bean overrides -- for example, for annotations such as @TestBean, @MockitoBean, and @MockitoSpyBean. See spring-projects/spring-boot#7621 Closes gh-33819
When there are 2 beans and one marked as
@Primary
, in normal auto-wiring, the Primary bean is used. However, in case of test code autowired via@SpyBean
, this is not necessary the case. This cause unexpected behavior when using the spybean to mock responses on methods.I have created a sample project which illustrate this. See the test class and the same code
Looking more into the details. It appear which bean is spied on depends on the order the beans are returned from the method
getExistingBeans
in MockitoPostProcessor (the last bean return ends up being the one is spied on, since the loop inregisterSpies
essential overwrite previous spy registered). I would expect we always spy on the bean marked with@Primary
similar to the normal auto-wiring behavior.The text was updated successfully, but these errors were encountered: