-
Notifications
You must be signed in to change notification settings - Fork 41.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
CrudRepository MockBean not injected into Component being tested #6541
Comments
I believe the problem is that we end up with two @jtbeckha There's a small amount of guess work in my analysis above. A complete example that I can run would remove that guess work and ensure that I'm actually fixing the problem that you are seeing. |
|
This isn't quite right. It works later on as In short, the problem is that the type of a |
@jtbeckha Assuming that my analysis applies to your problem, you can work around it by explicitly setting the name of your mocked bean to match the name of the bean created by Spring Data JPA: @MockBean(name="demoRepository")
private DemoRepository demoRepository; This short-circuits the logic that currently fails to find the existing bean and ensures that it's overridden. |
This is a very similar problem to #2811. We could make use of the same solution here if Spring Data set the |
@wilkinsona Thanks a lot for looking into this, your workaround of setting the name works. I have uploaded a complete example here https://github.com/jtbeckha/spring-boot-6541 |
@jtbeckha Thanks for the example. It's confirmed that I was looking at the same problem. It should be fixed in now. A 1.4.1 snapshot will be available just a soon as Bamboo manages to get a reliable network connection to Maven Central. |
@wilkinsona , the similar story for the
... where's the mocked bean is:
during test startup it fails:
Seems to be the mocked beans are not being mocked&injected to the component. |
@WildDeveloper I can't tell if that's the same problem or a different one. Can you please try 1.4.1.BUILD-SNAPSHOT that's available from https://repo.spring.io/libs-snapshot? If the failure still occurs then it's a different problem and should be tackled in a separate issue, ideally with a sample project that reproduces the problem. |
@wilkinsona , 1.4.1.BUILD-SNAPSHOT didn't help. The issue is reported. #6663 |
We have a quite similar problem with Spring-Boot 1.5.7, a regression maybe? See https://stackoverflow.com/questions/49303080/spring-boot-application-context-with-arangodb-repository-cannot-be-created-if-us for details |
@mark-- That looks like a different problem to me. The ArangoDB Spring Data integration is rather atypical. |
@wilkinsona OK, but the workaround of giving the MockBean some name also fixes the error. Anyway, |
@mark-- Providing the name stops a certain call to the bean factory from being made. If anything else happened to make a similar call the problem would still occur. I think a bug report against the ArangoDB project is the right way to proceed. |
@wilkinsona The Arango team fixed this problem, see arangodb/spring-data#14 (comment) |
Excellent. Thanks for letting us know. |
Align the injection to spring-data-commons Original issue reported from microsoft/azure-spring-boot#306 microsoft/azure-spring-boot#304 Root cause reference spring-projects/spring-boot#6541
@wilkinsona same problem happened with me, but my inner beans are related to soap services (WebServiceGatewaySupport), also I have tried all the above-mentioned methods and nothing solved the issue. |
@amcghie If you believe you have found a bug in Spring Boot, please open a new issue with a minimal sample project that reproduces the problem. If you're looking for some help or advice, please come and chat on Gitter or ask a question on Stack Overflow. |
Testing this class
where DemoRepository is a Spring Data JPA style repository
This is the test
The test fails, because the demoRepository mock isn't being injected into demoComponent during the test.
FWIW I figured out that if I remove the CrudRepository superclass from DemoRepository the test passes so it could be related to that
The text was updated successfully, but these errors were encountered: