Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Troubleshooting

Olga Naumenko edited this pageOct 4, 2023 ·9 revisions

Troubleshooting

Here is the list of known but unsolved UnitTestBot Java problems with workarounds:

InaccessibleObjectException: successful symbolic executions fail due to failing utility methods

Problem details:

When using JDK 17, you may get this kind of exception for generating tests:

java.lang.reflect.InaccessibleObjectException: Unable to make private native java.lang.reflect.Field[]
java.lang.Class.getDeclaredFields0(boolean) accessible: module java.base does not "opens java.lang" to unnamed module @5afa04c

The symbolic execution engine in UnitTestBot Java may generate tests that should pass, but they fail.The reason is that sometimes UnitTestBot Java cannot build anObject without usingReflection.Reflection methods usingsetAccessible are forbidden in JDK 17 or later, so theUtUtils methods usingsetAccessible do not work, and successful executions fail.

See an example in theissue.

Solution:

The solution is to open the necessary packages by editing test run configuration. The same test may require more thanone package to open. Please open the packages suggested in the exception messages one by one.

Editing test run configuration depends on the build system you use to run tests.

For Maven or IntelliJ, add the keys to the test run configuration—see the most common example:

  1. ChooseEdit Configurations.
  2. InRun/Debug Configurations, choose the required test run configuration.
  3. Choose toModify options andAdd VM options.
  4. ForVM options, add the following keys:
    --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.lang.reflect=ALL-UNNAMED

For example:

For Gradle, add the following VM options to the test task in thebuild.gradle file:

    jvmArgs += ["--add-opens", "java.base/java.lang=ALL-UNNAMED",                 "--add-opens", "java.base/java.lang.reflect=ALL-UNNAMED"]

For example:

Package is declared in module, which does not export it to the unnamed module: uncompilable tests

Problem details:

When using JDK 17, you may get uncompilable tests, and IntelliJ IDEA may show something like this:

Packagesun.net.util is declared in modulejava.base, which does not export it to the unnamed module
Add--add-exports java.base/sun.net.util=ALL-UNNAMED to module compiler options

Using JDK 17, UnitTestBot Java may try to mock unexported packages and create uncompilable tests.

See an example in theissue.

Solution:

Add the following key to the test run configuration (see therelated solution):
--add-exports java.base/sun.net.util=ALL-UNNAMED

User guides

IntelliJ IDEA plugin

Contributor guides

(redirect to/docs inmain repo)

General info

Continuous integration

Design docs

Clone this wiki locally

[8]ページ先頭

©2009-2025 Movatter.jp