-
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
The new support for testcontainers in Spring Boot 3.1.0 does not work with native tests #35663
Comments
please check yml.properties |
AOT processing of
This leads to incomplete runtime hints and the subsequent @sbrannen I wonder if AOT processing of tests should fail fast in this situation? If AOT processing has failed, running the tests is very unlikely to succeed and it's easy to miss the earlier error, particularly when the subsequent failure is apparently unrelated. |
With a local change in place to work around the AOT processing failure, Testcontainers itself does not work with native tests. They fail when trying to bind
There is reachability metadata for it but it appears to be incomplete. The metadata is for Testcontainers 1.17.6 and the above failure occurs with 1.18.0 so the problem may be have been introduced in Testcontainers 1.18 or the tests for the reachability metadata may not drive this code path. With the AOT processing workaround in place, {
"name": "org.testcontainers.shaded.com.github.dockerjava.core.DockerConfigFile",
"allDeclaredMethods": true,
"allDeclaredConstructors": true
} |
I've opened oracle/graalvm-reachability-metadata#301 to update the reachability metadata so that |
Hello @wilkinsona, and thanks for your support! I noticed that your PR to the reachability project has been approved and merged, great! How can I test if your PR helps with the problem reported in this issue? |
You can't I'm afraid. We need to make a change in Boot before you'll reach the point where the Testcontainers problem occurs. |
Ok, thanks for the update! Any tentative ideas for what Spring Boot version will get the change implemented? |
Hello @wilkinsona, and thanks for the bug fix! I tried it out using Spring Boot 3.1.1-SNAPSHOT. Now I get the error message you referred to above:
Will oracle/graalvm-reachability-metadata#301 resolve this or what needs to be done before the |
Yes, oracle/graalvm-reachability-metadata#301 should resolve this. Until the reachability metadata is released, you could provide similar hints yourself: static class TestcontainersRuntimeHints implements RuntimeHintsRegistrar {
@Override
public void registerHints(RuntimeHints hints, ClassLoader classLoader) {
hints.reflection().registerType(DockerConfigFile.class, MemberCategory.INVOKE_DECLARED_CONSTRUCTORS,
MemberCategory.INVOKE_DECLARED_METHODS);
}
} This registrar can then be imported by your test class: @ImportRuntimeHints(TestcontainersRuntimeHints.class)
class TcdemoApplicationTests {
… |
I have created a Github repo that can be used to reproduce the error: https://github.com/magnus-larsson/sb31-nativetest-demo.
The sample code contains a test that uses the new support for testcontainers together with Postgresql.
Running tests that use testcontainers for Postgresql works fine:
Building a jar file and a native image and running them with a Postregsql db in Docker also works fine:
But, when running native tests, they fail:
Error message:
The text was updated successfully, but these errors were encountered: