IntelliJ Platform Plugin SDK Help

Testing Overview

Most of the tests in the IntelliJ Platform codebase are model-level functional tests. What this means is the following:

  • The tests run in a headless environment that uses real production implementations for most components, except for many UI components.

  • The tests usually test a feature as a whole rather than individual functions that comprise its implementation.

  • The tests do not test the Swing UI and work directly with the underlying model instead (see also UI Tests).

  • Most tests take a source file or a set of source files as input data, execute a feature, and compare the output with expected results. Results can be specified as another set of source files, special markup in the input file, or directly in the test code.

The most significant benefit of this test approach is that tests are very stable and require very little maintenance once written, no matter how much the underlying implementation is refactored or rewritten.

In a product with 20+ years of a lifetime that has gone through many internal refactorings, we find that this benefit dramatically outweighs the downsides of slower test execution and more difficult debugging of failures compared to more isolated unit tests.

Mocks

Another consequence of our testing approach is that we do not provide a recommended approach to mocking. We have a few tests in our codebase that use JMock. Still, in general, we find it difficult to mock all the interactions with IntelliJ Platform components that your plugin class will need to have. We recommend working with real components instead. See also How to replace component/service in tests? and How to replace extension points in tests?.

UI Tests

Please see the dedicated intellij-ui-test-robot library. It is fully integrated with Gradle-based setup via runIdeForUiTests task.

Please do not use platform/testGuiFramework, as it is reserved for internal use.

Topics

Last modified: 17 August 2023