Software QA FYI - SQAFYI

Testing Java 8 in 3 Easy Steps

By:

Use your CI Setup to test Java 8.
The upcoming Java 8 release promises a bunch of new feature for Java developers, but there's always a risk when upgrading that your code will break. We all remember that when Java 7 shipped it had a series of quite severe bugs.

Of course we can all help with avoiding the same issue cropping up in Java 8. The approach I'm going to cover today is using your existing Continuous Integration to run your tests on Java 8. If you don't have a continuous integration server or tests go to jail, don't pass go and don't collect £200. I'm going to be using the open source hawkshaw memory shaper as an example of how to do this with a maven project.

1. Install JDK 8 on your CI Server
You can download an early access release of Java 8 from https://jdk8.java.net/download.html. You then have to install this as you would any Java release on your Continuous Integration Server itself.

You also need to add your new JDK 8 install to jenkins so its knows to look for the JDK. From the main screen go to Manage Jenkins and Configure System. You now need to look for the JDK Install section, untick install automatically and add the name and path.

2. Setup a Jenkins Multi-Build
You can setup another Jenkins Job for your existing project, but this has the downside that if you want to test on several JDKs and have several Projects you end with a lot of Jenkins Jobs to manage. If you've only got one job its a good solution though.

What I prefer to do is have a multi-build configuration so that the whole build can be failed by any JDK version. The first step is to create a new multi-build Jenkins Job.

As well as the normal setup of your Jenkins Job, you need to go to the Configuration Matrix section of the Job's configuration and click add axis then select JDK. You can now tick the boxes that apply to the JDKs you want to use. Here I've selected a JDK 7 build a JDK 8 build.

Full article...


Other Resource

... to read more articles, visit http://sqa.fyicenter.com/art/

Testing Java 8 in 3 Easy Steps