-
Notifications
You must be signed in to change notification settings - Fork 3.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
Move TestAccumuloClient initialization out of constructor #12933
Merged
findepi
merged 1 commit into
trinodb:master
from
findepi:findepi/move-testaccumuloclient-initialization-out-of-constructor-8c9cec
Jun 22, 2022
Merged
Move TestAccumuloClient initialization out of constructor #12933
findepi
merged 1 commit into
trinodb:master
from
findepi:findepi/move-testaccumuloclient-initialization-out-of-constructor-8c9cec
Jun 22, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Surefire maven plugin has problems reporting exceptions that occur during test instantiation. Example exception from a CI shows that actual problem isn't reported. ``` Error: Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M5:test (default-test) on project trino-accumulo: There are test failures. Error: Error: Please refer to /home/runner/work/trino/trino/plugin/trino-accumulo/target/surefire-reports for the individual test results. Error: Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream. Error: There was an error in the forked process Error: Error: Cannot instantiate class io.trino.plugin.accumulo.TestAccumuloClient Error: org.apache.maven.surefire.booter.SurefireBooterForkException: There was an error in the forked process Error: Error: Cannot instantiate class io.trino.plugin.accumulo.TestAccumuloClient Error: at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:733) Error: at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:305) Error: at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:265) Error: at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1314) Error: at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1159) Error: at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:932) Error: at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137) Error: at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:210) Error: at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:156) Error: at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:148) Error: at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117) Error: at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81) Error: at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:56) Error: at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128) Error: at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:305) Error: at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:192) Error: at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:105) Error: at org.apache.maven.cli.MavenCli.execute(MavenCli.java:972) Error: at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:293) Error: at org.apache.maven.cli.MavenCli.main(MavenCli.java:196) Error: at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) Error: at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) Error: at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) Error: at java.base/java.lang.reflect.Method.invoke(Method.java:566) Error: at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:282) Error: at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:225) Error: at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:406) Error: at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:347) Error: at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) Error: at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) Error: at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) Error: at java.base/java.lang.reflect.Method.invoke(Method.java:566) Error: at org.apache.maven.wrapper.BootstrapMainStarter.start(BootstrapMainStarter.java:47) Error: at org.apache.maven.wrapper.WrapperExecutor.execute(WrapperExecutor.java:156) Error: at org.apache.maven.wrapper.MavenWrapperMain.main(MavenWrapperMain.java:72) ```
hashhar
approved these changes
Jun 22, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you.
hashhar
added
test
no-release-notes
This pull request does not require release notes entry
labels
Jun 22, 2022
findepi
deleted the
findepi/move-testaccumuloclient-initialization-out-of-constructor-8c9cec
branch
June 22, 2022 19:14
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Surefire maven plugin has problems reporting exceptions that occur
during test instantiation.
Example exception from a CI (https://github.com/trinodb/trino/runs/7002887890?check_suite_focus=true) shows that actual problem isn't reported.