-
Notifications
You must be signed in to change notification settings - Fork 2k
Unit Testing
Unit tests are aimed at testing small isolated components of code that can be predictably executed any number of times to yield the same outcome.
Mocks provide a convenient mechanism to circumvent interaction with methods that are outside the scope of your unit tests. This will let you focus on testing the code that is in scope for your unit tests and not worry about external classes/libraries/dependencies.
Having said that, code should be testable without using any of the mocking libraries like Mockito, JMockit etc. "Fakes rather than Mocks". A fake object is simply a replacement for the real object. While a real object may have actual business logic, a fake object may simply return canned responses.
public interface ConfigurationService {
Configuration readConfiguration(String configurationName);
}
public class AzureConfigurationService implements ConfigurationService {
Configuration readConfiguration(String configurationName) {
// read configuration from Azure configuration service
}
}
public class MyApplication {
private final ConfigurationService configurationService;
public MyApplication(ConfigurationService configurationService) {
this.configurationService = configurationService;
}
public String getConfigurationOwner () {
Configuration configuration = configurationService.readConfiguration("configName");
return configuration.getOwner();
}
}
public class Test {
@Test
public void testMyApplication() {
// unit test won't work as it requires connection to azure services
MyApplication myApplication = new MyApplication(new AzureConfigurationService());
assertEquals("foo", myApplication.getConfigurationOwner());
}
}
Instead, you could inject a fake dependency
public class FakeConfigurationService implements ConfigurationService {
public Configuration readConfiguration(String configurationName) {
Configuration configuration = new Configuration();
configuration.setOwner("foo");
return configuration;
}
}
public class Test {
@Test
public void testMyApplication() {
// unit test will now work as the fake object requires no network connection
MyApplication myApplication = new MyApplication(new FakeConfigurationService());
assertEquals("foo", myApplication.getConfigurationOwner());
}
}
However, mocking libraries help in writing your tests faster. In the previous example, a fake implementation had to be created to write unit tests. Mocks can make this faster by letting you mock the behavior of real object without writing lot of code for faking dependencies.
Good candidates for using a mock:
- Dependencies that require network connection - Any dependency that goes over the wire like database access, REST service calls etc.
- File System - Methods/classes that require file operations. This should be treated similar to a dependency that requires network connection. Consider the case that the file may reside on a NFS.
- Third-party library classes - mock these judiciously. Your code depends on these libraries and it's best to not mock them unless they are libraries that internally use file or network operations. Ideally, such libraries should be wrapped behind an interface you own and the dependency should be contained.
- Date and time tests - Tests that rely on date can be mocked to return dates in future/past. Some functionalities require execution at certain intervals of time. Injecting a mock clock object with tickers that can simulate 100 clock ticks within a second is useful rather than letting the unit test run for 100 seconds.
Libraries like PowerMock allow mocking static methods but it comes at a cost. It meddles with the default classloader and can lead to inconsistent behavior in tests and production runtime. Also, some of these libraries interfere with test coverage instrumentation and result in incorrect test coverage reports.
Solution: If you need to mock a static method, first evaluate if there's a way to refactor your code and eliminate the need for static method. If that's not possible, then consider isolating the static method access by wrapping it in a method that can be easily mocked.
public class ClassToTest {
public String methodToTest() {
String retVal = Util.notTestFriendlyStaticMethod();
return process(retVal);
}
}
Consider doing
public class ClassToTest {
private UtilWrapper utilWrapper;
public ClassToTest(UtilWrapper utilWrapper) {
this.utilWrapper = utilWrapper;
}
public String methodToTest() {
String retVal = utilWrapper.callStaticUtilMethod();
return process(retVal);
}
}
public class Test {
@Test
public void testMethod() {
UtilWrapper utilWrapper = Mockito.mock(UtilWrapper.class);
when(utilWrapper.callStaticUtilMethod()).thenReturn("ExpectedString");
ClassToTest classToTest = new ClassToTest(utilWrapper);
assertEquals("expectedstring", classToTest.methodToTest());
}
}
If you are using Mockito, it requires additional configuration to be able to mock final
classes as described in Mockito 2 documentation.
Note that most of (if not all) the client classes provided in Azure SDK are final
. These clients use the network to communicate with Azure services.
As a consumer of Azure SDK client libraries, your application is taking a dependency on 3rd party library that making network calls. In such scenarios, it's a good idea for your application to abstract out the dependency and hide it behind your own interface. This will contain the scope of dependency just within the implementation of the interface and your application is only using the interface you have defined. This allows your application to switch between different implementations of the interface without having to make changes to your application. The added benefit is that now your unit tests can either use a fake implementation as shown in the example at the top of this page or use a mock without requiring special configuration to enable mocking of final
classes.
Customers using the Azure SDK client libraries can mock service clients using Mockito with org.mockito.plugins.MockMaker
. More information can be found at Mock the unmockable: opt-in mocking of final classes/methods.
- Create a file src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
- In the file, put a single line.
mock-maker-inline
Consider an application that uses Azure Event Hubs to fetch telemetry and the end user wants to test that their TelemetryEvents
class properly transforms EventData
to TelemetryEvent
.
public class TelemetryEvents {
private final EventHubConsumerAsyncClient consumerClient;
public TelemetryEvents (EventHubConsumerAsyncClient consumerClient) {
this.consumerClient = consumerClient;
}
public Flux<TelemetryEvent> getEvents() {
return consumerClient.receiveFromPartition("1", EventPosition.latest())
.map(event -> new TelemtetryEvent(event));
}
}
import reactor.test.publisher.TestPublisher;
import reactor.test.StepVerifier;
import static com.azure.messaging.eventhubs.*;
import static org.mockito.Mockito.*;
public class TelemetryEventsTest {
@Test
public void canGetEvents() {
// Arrange
// After following the instructions in "Steps" section
EventHubConsumerAsyncClient consumerClient = mock(EventHubConsumerAsyncClient.class);
TestPublisher<EventData> eventsPublisher = TestPublisher.createCold();
eventsPublisher.emit(new EventData("Foo"), new EventData("Bar"));
when(consumerClient.receiveFromPartition(eq("1"), eq(EventPosition.latest())).thenReturn(eventsPublisher.flux());
TelemetryEvents telemetryEvents = new TelemetryEvents(consumerClient);
// Act
StepVerifier.create(telemetryEvents.getEvents())
.assertNext(event -> isMatchingTelemetry(event))
.assertNext(event -> isMatchingTelemetry(event))
.verifyComplete();
}
}
Unit tests, by default, when using JUnit 5 (and further discussions assume the use of JUnit 5) are configured to run in parallel to reduce the time
taken to run tests, and as a side effect find parallelization bugs that may exist. Unfortunately, parallelization creates some difficulties when using
our standard test dependencies in reactor-test
and mockito
where certain functionality isn't thread-safe, the following sections explain some
well-known gotchas.
StepVerifier.setDefaultTimeout(Duration)
before tests run, and cleaning up afterwards with StepVerifier.resetDefaultTimeout()
, is a great way
to ensure that a test, or tests, doesn't result in an infinite wait, which is the default for .verify()
and other like methods on StepVerifier
.
But, using this mutates a global state variable on StepVerifier
which can result in other tests randomly failing with AssertionError
about failing
to receive a verification complete before a timeout has elapsed. For example, if two test classes are ran at the same time where one sets the global
default timeout to 5s and the other is running a longer running test that takes 1 minute to complete depending on the execution order it can result
in the 1 minute test throwing an exception.
So, instead of using the global StepVerifier
timeout it is better to use .verify(Duration)
. If your tests are using the composed verifications
steps, such as .verifiyComplete()
or verifyError(Class<? extends Throwable>)
, you can transition them to the corresponding expectation APIs,
.expectComplete()
or .expectError(Class<? extends Throwable>)
, and then chain those with .verify(Duration)
.
StepVerifier.withVirtualTime
is a great way to mock execution through time, for example mocking 30 minutes of "running" with a simple API that takes
milliseconds to complete. The base overload uses a shared Scheduler
for running which can result in states where the scheduler is shutdown or isn't
instantiated when the test runs. So, if you need to use this API you can do one of two things:
- Pass an instance
Scheduler
instead of using the sharedScheduler
. (Remember to shutdown the instanceScheduler
after tests or else threads may be leaked) - Annotate the test class with
@Isolated
and@Execution(ExecutionMode.SAME_THREAD)
. (more notes on these later)
StepVerifier
offers the option to inspect the full runtime behavior of a reactive stream, such as ensuring that element emissions
(hasNotDroppedElements
) or errors (hasNotDroppedErrors
) aren't being dropped in the reactive call chain. These mutate the global state in Hooks
,
so if other tests do drop elements or errors it may be caught in your testing and result in your test failing. If these are being used, use the guidance
below to ensure they run correctly.
If you must use configurations that mutate global state JUnit 5 has a class-level annotation @Isolated
that ensures the test is ran while no other
tests are running. Isolated test classes will run after parallel safe class complete sequentially, resulting in longer test times.
Additionally, if your tests aren't safe to run in parallel, for example mutating the global System.out
which is needed in validation for each test,
you can use @Execution(ExecutionMode.SAME_THREAD)
. This will force the test methods in the test class to run sequentially.
So, combining @Isolated
and @Execution(ExecutionMode.SAME_THREAD)
creates a well encapsulated test class run that can help prevent test from
failing flakily.
- Frequently Asked Questions
- Azure Identity Examples
- Configuration
- Performance Tuning
- Android Support
- Unit Testing
- Test Proxy Migration
- Azure Json Migration
- New Checkstyle and Spotbugs pattern migration
- Protocol Methods
- TypeSpec-Java Quickstart
- Getting Started Guidance
- Adding a Module
- Building
- Writing Performance Tests
- Working with AutoRest
- Deprecation
- BOM guidelines
- Release process
- Access helpers