From Fedora Project Wiki
java OpenJDK
Test-days-banner.svg

Date 2018-09-26
Time all day

Website QA/Test Days
IRC #fedora-devel (webirc)
Mailing list test


Note.png
Can't make the date?
If you come to this page before or after the test day is completed, your testing is still valuable, and you can use the information on this page to test, file any bugs you find at Bugzilla, and add your results to the results section. If this page is more than a month old when you arrive here, please check the current schedule and see if a similar but more recent Test Day is planned or has already happened.

What to test?[edit]

Today's instalment of Fedora Test Day will focus on OpenJDK 11 and OpenJDK 10. Currently we have java-1.8.0-openjdk as main JDK in Fedora. It accompanied java-1.7.0-openjdk as JRE for a year, and replaced it in buildroot in F21. Similarly, as did java-1.7.0-openjdk to java-1.6.0-openjdk in F16 as parallel JRE and replaced it in F17 in build root and main JDK. However, today the situation is more complicated. Oracle changed release process, see OpenJDK 11 summary and OpenJDK 10 summary, so currently, in F27 and up, you have java-1.8.0-openjdk as main JDK, java-openjdk as rolling release of STS JDK 10, and java-11-openjdk as techpreview of future LTS JDK. Javaws is provided in another package - icedtea-web

  • Most crucial is, that JDK10 and JDK11, unlike JDK8, are modular, so many java applications will cease to work.
    • This is not crucial part of the testing, but to have an matrix of most common failures would be interesting

Among other changes are

  • parallel installability
  • switching of JRE/JDK
  • platform docs and sources
  • config files in /etc
  • system wide crypto policy

Who's available[edit]

The following cast of characters will be available testing, workarounds, bug fixes, and general discussion. In case of problem related to test day organization/wiki/whatever, please reach out to sumantrom.

  • CET: jvanek (jvanek at redhat.com) + zzambers, mvala, pmikova, jerboaa
  • EDT: stooke (stooke at redhat.com) + omajid, jkang

Prerequisite for Test Day[edit]

  • kind relationship to java
  • basic knowledge of java and javac or rpms.
  • basic knowledge of java's jigsaw (major change in jdk9) is advantage
  • Root access on the system where testing is happening

Known issues[edit]

  • [dnf reinstall is broken]
  • -debug or -slowdebug packages are not for reasonable use. They are for people debugging JDK iself. This testcase is not covering them. Feel free to try to install them, and to switch them, also some apps should run in them (although terribly slowly) so if you face some issues with them, it is most likely not an issue.
  • accessibility works only on java-1.8.0-openjdk
    • even there it is known to have side effects and strange consequences
  • recently was found broken icon at jdk8: https://bugzilla.redhat.com/show_bug.cgi?id=1626810

How to test?[edit]

Applicationform[edit]

http://testdays.fedorainfracloud.org/events/48

Basic cases[edit]

sudo dnf install java
   # have it installed JRE you expected?
   # is java on path and working?
   # are java applications working?
   # do you miss something?
   # is content of /usr/lib/jvm sane?
   # is content of /etc/java  sane? (jdk8 got /etc/java support in f29)
   # are alternatives sane? (see lower)

sudo dnf install java-devel
   # have it installed JDK you expected?
   # is java  and javac on path and working?
   # do you miss something?
   # is content of /usr/lib/jvm sane?
   # is content of /etc/java  sane? (jdk8 got /etc/java support in f29)
   # are alternatives sane? (see lower)

sudo dnf install java-openjdk
   # have it installed JRE you expected?
   # is java on path and working?
   # are java applications working?
   # do you miss something?
   # similarly for java-openjdk-devel as  jwith ava-devel
   # is content of /usr/lib/jvm sane?
   # is content of /etc/java  sane? (jdk8 got /etc/java support in f29)
   # are alternatives sane? (see lower)

sudo dnf install java-11-openjdk
   # have it installed JRE you expected?
   # is java on path and working?
   # are java applications working?
   # do you miss something?
   # similarly for java-11-openjdk-devel as  jwith ava-devel
   # is content of /usr/lib/jvm sane?
   # is content of /etc/java  sane? (jdk8 got /etc/java support in f29)
   # are alternatives sane? (see lower)

sudo dnf install java-1.8.0-openjdk
   # have it installed JRE you expected?
   # is java on path and working?
   # are java applications working?
   # do you miss something?
   # similarly for java-1.8.0-openjdk-devel as  jwith ava-devel
   # is content of /usr/lib/jvm sane?
   # is content of /etc/java  sane? (jdk8 got /etc/java support in f29)
   # are alternatives sane? (see lower)

sudo dnf install java-9-openjdk
  # should install nothing on f29
  # if it does, it is a bug
  # should install on f28, but please donot

sudo dnf install icedtea-web
   # is javaws on path and working?
   # are alternatives sane? (see lower)

sudo dnf update $JDK
sudo dnf remove $JDK
   # is the system sane after upgrade/remove?

Switching JRE/JDK[edit]

  • Multiple jdks are handled by alternatives
  • Major masters are:
  • for SDK: javac, java_sdk_openjdk, java_sdk_$VERSION, java_sdk_$VERSION_openjdk
  • for JRE: java, jre_openjdk, jre_$VERSION, jre_$VERSION_openjdk
    • where version is one of 1.8.0, 10, 11
  • for javadoc: javadocdir
  • or javadoc-zip: javadoczip
  • for icedtea-web: javaws
sudo alternatives --config  $MASTER
   # will select the tooling acocrding by masters from above
   # except programs on PATH, also direcotries in /usr/lib/jvm are shufled. Please observe!
alternatives --display $MASTER
   # will show current setup for given master

### headless JRE ###
   # if your application do not need X (GUI) operate with ...-headless subpackage  only in above examples
   # if you need javac,  operate with ...-devel subpackage  in above examples
   # if you need javadoc or sources,  operate with ...-src, -javadoc and javadoc-zip  subpackage   in above examples

########################################################
# There are *many*  jdk  packages and  countless  subpackages
########################################################
no | sudo dnf install "java*openjdk*"
dnf   search  "java*openjdk*" 
   # note for f28 -   jdk9 is no longer supported, and is there only because jdk10 was not alive in time of f28 release 
   # on f29 you should NOT see jdk9 appear

  # Please try to install and use various combinations. This is quite crucial part of this testday.
  # is the combination working and you can switch? 
  # can you switch installtaions
  # are slaves as expected?
  # is /etc/java affecting correct jdk and so on....

System wide crypto policy[edit]

Your java and javaws is affected by system crypto policy

update-crypto-policies --show
   # will should you current

sudo  update-crypto-policies --set DEFAULT
  # will set standart policy
  # many javaws or https applications may cause to work

sudo  update-crypto-policies --set LEGACY
  # will allow  insecure algorithms
  # is your failing javaws or https applications fixed?

sudo  update-crypto-policies --set FUTURE
  # will harden your computer
  # nearly no  javaws or https application will remain working

Shenandoah[edit]

   # jdk8 and jdk11 have new garabge collector (on x86_64 and aarch64)
   # you can use it via:
java -XX:+UseShenandoahGC  ohter_params_as_ususal
   # or set it up globally:
export JAVA_TOOL_OPTIONS="-XX:+UseShenandoahGC $JAVA_TOOL_OPTIONS"
   # are you applications working with Shenandoah? 
   # are they working better?

JAVA_HOME[edit]

   # is JAVA_HOME working for you?

JAVA_HOME for common user[edit]

  • Fedora always uses *default* JRE/JDK (currenlty8) to run application.
  • all java applications are also build by this JDK.
  • no metter what JRE you have selected via alternatives, default jdk is used
  • if you wish to run Fedora's packaged java applications, with different JDK, you must enforce it via JAVA_HOME
   # this is tricky to verify. Are you sure?
   # is JAVA_HOME working for you?

Install Only JDK[edit]

  • Our RPMs, can be installed fully in paralel:
  • To enable this very special case, you have to modify /etc/dnf/dnf.conf and add/modify installonlypkgs
installonlypkgs=list_of_packages_you_care_about

The list differs if you care about headless jre only, or full JDK. eg.:

installonlypkgs=java-1.8.0-openjdk-headless java-1.8.0-openjdk java-1.8.0-openjdk-devel

Most commonly:

installonlypkgs=java-1.8.0-openjdk*

Or:

installonlypkgs=java-11-openjdk*

This case, however hard to maintain is really used by people developing java itself. Also it is very useful for admins, who can try to deploy application on newer version by parts, or try first.

   # is the multiple install feature working for you as advertised?

Exploratory testing[edit]

If you run out of test cases, congratulations! But that's not the end! You can still help out by playing around with the various installs uninstalls parallel isntalls jre/jdk switching... in whatever ways you can think of: try out all the things you can find. Get creative! Any problems you find please file a bug, or report to the IRC channel.

Reporting bugs[edit]

If you have problems with any of the tests, report a bug to Bugzilla usually for the component java-openjdk or java-11-openjdk or java-1.8.0-openjdk. If you are unsure about exactly how to file the report or what other information to include, just ask on IRC and we will help you.

Test Results[edit]

Install[edit]

User Profile java install java-devel install java-openjdk install java-11-openjdk install java-1.8.0-openjdk install java-9-openjdk install icedtea-web install References
andrlos f29-x64
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
[1]
Pass pass
Pass pass
Pass pass
  1. RHBZ #1633332 java 1.8.0 configs missing in /etc/java
nabooengineer Fedora-Workstation-Live-x86_64-29_Beta-1.5 + Updates
Pass pass
Warning warn
[1]
Pass pass
Pass pass
Pass pass
Pass pass
Fail fail
[2]
Pass pass
  1. I rolled back the initial VM snapshot each time to do a fresh install vs. installing each additive. Then installed all of them to test the alternatives switching.
  2. sudo dnf install java-9-openjdk Last metadata expiration check: 0:04:00 ago on Tue 25 Sep 2018 11:43:45 PM EDT. No match for argument: java-9-openjdk Error: Unable to find a match
spathare Fedora 29 Workstation x86_64
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
stooke
Pass pass
[1]
Pass pass
[2]
Fail fail
[3]
Pass pass
Warning warn
[4]
  1. I found the different separators between the package names and java versions slightly confusing, and for a second thought it was downgrading. This was totally my carelessness, but I thought I'd admit to it. $ java --version openjdk 11-ea 2018-09-25 OpenJDK Runtime Environment (build 11-ea+22) OpenJDK 64-Bit Server VM (build 11-ea+22, mixed mode, sharing) RPM install: Installing: java-11-openjdk x86_64 1:11.0.ea.28-2.fc29 updates-testing 193 k All I saw was the "+22" and "-2" until I looked carefully.
  2. Sorry, I just read the test case again, and this was expected behaviour. As a user, I would find it very confusing - if I dnf install java , then I would expect the java-devel package to be the same version.
  3. sudo dnf install java-devel offered to (and I let it) install (1/3): java-1.8.0-openjdk-1.8.0.181.b15-0.fc29.x86_64.rpm 103 kB/s | 234 kB 00:02 (2/3): java-1.8.0-openjdk-devel-1.8.0.181.b15-0.fc29.x86_64.rpm 651 kB/s | 9.8 MB 00:15 (3/3): java-1.8.0-openjdk-headless-1.8.0.181.b15-0.fc29.x86_64.rpm 875 kB/s | 32 MB 00:37 I would expect JDK 11 !
  4. JDK 11 was installed by default on my version of f29, so I got "already installed"
stooke Fedora-Workstation-Live-x86_64-29_Beta-1.5 + Updates
Pass pass
[1]
Pass pass
[2]
Pass pass
  1. (already installed)
  2. "Error: Unable to find a match"

Multiple installs[edit]

User Profile multiple java-11-devel installs multiple java-devel installs multiple java-1.8.0-devel multiple java-11-devel and java-10-devel installs multiple java-11-devel and java-1.8.0-devel installs multiple java-10-devel and java-10-devel installs multiple java-11-devel and java-10-devel and java-1.8.0-devel installs References

switch JRE/JDK[edit]

User Profile swtich JRE/JDK References
nabooengineer Fedora-Workstation-Live-x86_64-29_Beta-1.5 + Updates
Pass pass
[1]
  1. Awesome, just be aware that some familiarity with alternatives & java helps to do this test. The "How to test" instructions are a little nebulous, as such not as clean as the install "How to test".
spathare Fedora 29 Workstation x86_64
Pass pass
stooke Fedora-Workstation-Live-x86_64-29_Beta-1.5 + Updates
Pass pass
[1]
  1. I think it might be confusing if java gets you 1.8, while javac gets you 11 - the mismatch should be flagged with a warning, at 'alternatives' time somehow

crypto config[edit]

User Profile system wide References
nabooengineer Fedora-Workstation-Live-x86_64-29_Beta-1.5 + Updates
Pass pass
[1]
  1. DEFAULT, LEGACY & FUTURE worked as expected.
spathare Fedora 29 Workstation x86_64
Pass pass
stooke Fedora-Workstation-Live-x86_64-29_Beta-1.5 + Updates
Pass pass

Shenandoah[edit]

User Profile GC testing References
nabooengineer Fedora-Workstation-Live-x86_64-29_Beta-1.5 + Updates
Pass pass
[1]
Warning warn
[2]
  1. Decreasing the VCPU count from 4 to 1 allows me to see the better performance of ShenandoahGC over default GC
  2. Shenandoah GC appears to be functionally working as expected. GC does seem smoother/quicker. However I don't really see a pause time impact, really need to do a performance comparison benchmark and on bare metal vs on a VM F29 install. Will require some time to setup a real test, unless we have a specific test case comparison. Do we have a specific comparison?

rpm/dnf ops[edit]

User Profile java java-devel java-openjdk java-11-openjdk java-1.8.0-openjdk icedtea-web References
nabooengineer Fedora-Workstation-Live-x86_64-29_Beta-1.5 + Updates
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
stooke Fedora-Workstation-Live-x86_64-29_Beta-1.5 + Updates
Fail fail
[1]
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
  1. "sudo dnf remove java" offered to remove all versions of java on my system, yet "sudo dnf remove java-devel" only offered to remove JDK 1.8.0. This is inconsistent.