Skip to main content
Atoti Market Risk uses a Spring-based test framework for integration and unit tests. This guide covers test setup for dashboards, custom integration test samples, and unit testing patterns. There are a number of unit and integration tests across the project in each module. Unit and integration tests related to the mr-application module can be found in the separate module mr-application-tests, as they are not required by clients and would slow down the installation process.

Integration Tests

By default, the integration tests will not get executed when you build the project, as they have a severe impact on build time. There is a separate Maven profile called IT that you can run with the following command when you want to execute the integration tests: mvn install -P IT.

Bookmark Tests

The application uses a test harness library, which has been developed to regression test Atoti Server projects. This library enables us to start up a cube, execute MDX queries and assert the values match. By default, the Atoti Server instance will load data from /src/test/resources/data.

Creating/Replacing Expected Results

There are several test classes used for integration tests present in the com.activeviam.mr.regression package in the mr-application-tests module: For most of the use-cases you want to test, you will need to use the ReferenceRegressionTestScalarIT class. Run the class com.activeviam.mr.regression.ReferenceRegressionTestScalarIT as a Java application - This will start up an Atoti Server instance, execute the queries in /src/test/resources/test-bookmarks and store the results in files ending with .csv.

Executing Bookmark (MDX) Tests

Run the class com.activeviam.mr.regression.ReferenceRegressionTestScalarIT (or any of the other classes mentioned in the previous section if needed) as a JUnit test - This will start up an Atoti Server instance, execute the queries in the files ending with .query and assert the results against the corresponding file ending with .csv.

Custom Integration Tests

Integration tests can be defined fully in code, this includes things such as sample data being injected into the Atoti Server instance, the query being executed together with the expected values. There are a number of sample integration tests in the reference implementation that have been defined as examples. Example implementations of this class can be found in the reference implementation.

Unit Tests

By default, unit tests are executed when you run mvn install. Some example tests can be found in the mr-application-tests module, where datastores have been created and mocked in order to test certain functionalities.

Sensitivity module measure testing

The sensitivity module provides a base class for unit tests, called SensitivityMeasureTestBase. Extending this class allows a unit test to wire all non-replaceable beans and beans that can be replaced via qualified @Primary custom beans. A CubeTester object is provided within the class, directly accessible in any extending class. A test extending this class will only require store, reference, measure chain, and dimension configuration to be imported, alongside any beans required by the calculations. Data shall be provided as a separate Spring Bean, and individual @Test methods can run queries against the provided tester object. A sample test using this configuration is provided. The following is the test class definition:
Several stores, all references, and most measure chains available in the application are excluded from this configuration, providing a minimal cube configuration that lets you calculate Delta PnL Explain values. Some of the imported dimensions contain levels or hierarchies that would be impossible to create without additional stores being imported, however, the base configuration uses a DimensionFilter object to ignore unbuildable dimensions. In this particular example, a PnL Explain formula property is set to a given value for the tests. Data needs to be added to all stores impacting the tested calculations, using the SimpleTransactionBuilder object. To couple the data with the test using it, we recommend static inner classes:
All store additions defined in this test will be applied to the stores imported in the configuration. Other replacement beans can be provided within the static inner class. Queries can then be run using the CubeTester API through the tester object: