Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page shows how you best write unit tests in inspectIT

Tooling

These are the tools we are using for testing:

  • TestNG: As testing framework. We decided to move from junit to testNG some years ago when junit seemed to be stuck
  • Mockito: To allow easy mock-based testing. 
  • Hamcrest: To allow to read the asserts in a human-understandable way.

Testing a spring-based service or standard Java class

Actually this is the situation that you very often will write unit tests. You created or extended a service and want to ensure that it is working. So this is what you want to do:

  1. Create a class that mirrors the package structure of your testee, call the class like the Testee and put Test at the end. Normal source code belongs in the src folder, test code go to the test folder (the test for info.inspectit.service.VersionService is thus info.inspectit.service.VersionServiceTest)
  2. Extend from info.novatec.inspectit.testbase.TestBase or another subclass of TestBase (like AbstractLogSupport).
  3. Each method should test exactly one situation, prefer to write more test methods than to have everything within one test method
  4. The structure of the unit test class should include one inner class per method to test against and in this inner class are the testng test method. This helps in realizing very quickly which method is already tested and which test cases are covered.

Here is an example:

The VersionService uses a VersionProvider to retrieve the current version. The Provider is responsible for retrieving the version in some way and returning the string back to the version service which will build up a nice representation of the version (or throw exceptions if the version is invalid). Realizations can be for example the FileBasedVersionReader

The VersionServiceTest mirrors the package structure of the VersionService. It extends TestBase. The Versionservice is responsible for caching the version lookup, so one test method checks that correct versions are cached. To do that the VersionProvider is mocked. Notice the InjectMocks annotation on the versionService (the testee) to integrate all mocks automatically. 

 This example is based on the class ReflectionCache with the test ReflectionCacheTest.

The interesting structure of the base java class is:

Code Block
public class ReflectionCache {

	... some fields ...
	
	public <T> T invokeMethod(final Class<?> clazz, String methodName, Object instance, Object[] values, T errorValue) {
		... method content ...
	}

}

Thus we create a test class which will look like the following:

Code Block
public class ReflectionCacheTest extends TestBase {

	/** Class under test. */
	@InjectMocks
	ReflectionCache cache;

	/** Tests for the {@link ReflectionCache#invokeMethod(Class, String, Class[], Object, Object[], Object)} method. */	
	public static class InvokeMethod extends ReflectionCacheTest {

		@Test
		public void normalUsage() {
			String testString = "I am a test";

			String result = (String) cache.invokeMethod(String.class, "toString", testString, null, null);

			assertThat(result, is(testString));
		}

		@Test
		public void multipleInvocationOnSameObject() {
			... test method content ...
		}

		@Test
		public void methodWithParameter() {
			... test method content ...
		}

		... more test methods ...

	}

}

Two important remarks about this test setup:

  1. The class under test should be marked with @InjectMocks even if no @Mock fields are going to be injected. This is because before every test method execution, this field will be reset.
  2. The inner class has to extend the outer test class. This is needed to access the in this example the cache field.