Skip to main content

Simpler parameterization of Junit tests

Why write a custom runner/suite?

Usually Junit's default suite/runner combined with parameterized.class are great for parameterizing your tests. But the need to provide a specifically written constructor, and the need to add a specifically annotated and written method to your test class is rather annoying. The Collection syntax is also weird, though generic. To hide the details of parameterization, and provide such support simply through the use of @RunWith is what I am after. It is okay if my class has to implement another interface, but I would look to minimize impact on the user test class and coupling between test class and test infrastructure.

It is good that JUnit 4 has made it easier to write your own custom Suites and Runners.

How do suites and runners work?

In brief, a Junit Suite wraps around your test class and create a test 'runner' for your class.
A Suite can contain one or more test classes, but for design ease, I will always assume one suite contains one class.

This is how the Parameterized.class works too, the idea being that it creates as many runners for your test class as you specify in a specifically annotated method. Although quite generic, I would like to often create a runner that does not need the arcane syntax (a method with a Collection return type) as required by Parameterized.class.

In other words, I need to create my own parameterization, the details being hidden from the class using my custom suite.

Here is how I began work to achieve this (this post only covers part of the problem, I still have the need to provide a custom constructor, which I will eliminate in the future):

Step 1: Subclass Junit4 to create a custom runner, MyRunner
Step 2: Subclass Suite (create MySuite) to create as many instances of MyRunner (add each instance to a 'runners' list required by Suite)


So, MySuite extends Suite
MyRunner extends Runner

In MySuite constructor, add a method call to your additional method that creates a list of runners with your business logic.


That's it, with this, I then annotated my test class with @RunWith(MySuite.class), and had as many MyRunner per test class as I wanted. How many to create? this depends on what you want your suite to do. For example, you may have logic in your suite to create a runner per file type, thus achieving multi-file tests (of course, you wouldn't use this method for such a simple case)


What I don't like about this design

I use too much inheritance. If Suite or Junit4 classes change, my classes have to change too. My next step is too refactor and eliminate inheritance, replacing with interfaces to facilitate better dynamic dependency injection.

Hope you find this helpful. I will post a concrete example when I get a chance, and a followup post once I refactor it. hopefully Junit folks have already thought about this, or are working on it!

Comments

Popular posts from this blog

Authenticating Spring Boot based application against secure LDAP/AD server

Authenticating against an Active Directory setup is quite common in organizations using Spring Boot / Spring Security can be a pain if you don't know exactly the requirements. I needed to add auth in my web app and secure some but not all endpoints of the application. My story was, I needed Spring security to authenticate against my company LDAP server which uses Active Directory I started by using the standard LDAP guide such as this which are all over the Internet, https://spring.io/guides/gs/authenticating-ldap/ and was able to setup the basic framework However, only test level LDAP auth was working for me, when I tried to auth against the company LDAP secure server, I had to resolve a few issues After 1 week and working with several devs at the company, I finally found why it was not working and the fix was easy Since I spent a week or so resolving this, I wanted to write this up in case someone finds this useful. Here is what I did (it was easy until the fourth ...

Sending Form data to a backend REST API using Axios

This need is incredibly common and useful, and hopefully will save you a lot of time when doing server side calls from your UI application (or even non UI clients like NodeJS applications) Example here is to send a POST request to an endoint /api/item/new (which will create a new item in the database). We will just assume tbhe backend is already setup (it's not relevant to this article). All we need to know is that we can do a POST /api/item/new and send it form data with two pieces of info     name, filter So, if you have a node.js application (I was using Vue-cli generated project, but it does not matter), install 'axios' (a most popular tool to make server calls these days) npm i axios --save OR yarn add axios (my preferred method) Now, in your service JS file (which is generally when I keep all my api calls) do something like this createNew ( name , filter ) { let formData = new FormData (); formData . append ( "name" , ...

Using custom conditional logic to enable/disable Spring components

If you have a Spring component and you don't want it to load, you can use Spring's predefined conditionals as much as possible. For example, @Component   @ConditionalOnNotWebApplication   public class SchedulerEntryPoint implements ApplicationRunner { ...  } This will not load your component when running in non web application mode. Such as you may want to start the application but without any of the web framework using SpringApplicationBuilder. But sometimes you want to use custom conditions. It's pretty easy to do so, just use something like this @Component @Conditional (SchedulerCheck. class ) public class SchedulerEntryPoint implements ApplicationRunner { public static class SchedulerCheck implements Condition { @Override public boolean matches(ConditionContext conditionContext, AnnotatedTypeMetadata annotatedTypeMetadata) { return System. getProperty ( "scheduler" ) != ...