This a part of my ongoing series about writing integration tests with AEM.
Building tests is an integral part of software development, and does not only include unit test but also integration and frontend tests. With AEM as a Cloud Service integration tests are getting more and more important, as it allows you to run automated tests on “real” cloud service instances as part of the Cloudmanager Pipeline. See the documentation of CloudManager.
If you check the details, you will find that the overall structure for integration tests are part of all projects which are created based on the AEM Project Archetype since at least version 11 (April 2017). So technically everyone is able to implement integration tests based on that structure yet, but I haven’t seen them to have received proper attention. I ignored these integration tests also for most of the time…

Photo by Pavan Trikutam on Unsplash
Recently I worked with my colleague Valentin Olteanu on creating a small integration test suite, and I was honestly surprised how easy it can be. And because integration tests are now an official part of the Cloud Manager pipeline and the first place where your code can be tested on an real CM instance.
So I want to give you a short overview of the capabilities of the Integration-Test framework for AEM. In the next blog post I will show a real-life usecase where such Integration tests can really help.
Ok, what are these integration tests and what can we do with these tests?
Integration tests are running outside of AEM, as part of the deployment/test pipeline. They test the interaction of your custom application (which you have validated with your unittests) with everything else, most prominently AEM itself. You can test the complete page rendering, you can test custom integrations, background processes and everything where you need the full AEM stack, and where mocks are not sufficient.
The test framework itself provides you proper abstraction to perform a lot of operations in very convenient way. For example
- There is an AssetClient which allows you to upload assets into AEM
- Functionality to create/delete/modify pages (as part of the CQClient)
- Functionaity to replicate content
- and much more (see the whole list of clients)
And everything wrapped in java, so you don’t have to deal with underlying HTTP requests. So this is an effective way to remote control AEM from within java code. But of course there’s also a raw preconfigured HTTP Client (with hostnames, authentication etc alreay set) which you can use to perform custom actions. And the testing framework around is still the junit framework we are all used to.
But be aware: This integration test suite cannot directly access the JCR and Sling API, because it is running externally. If you want to create nodes or read their status, you have to rely on other means.
It is also no Selenium Test! If you want to do proper UI testing, please check the documentation on UI testing (still in beta, expect the general availability soon). I plan to create a blog post about it.
A very simple integration (basically just a validation of a page which has been created with a Page rule) can look like this (the full code)
@Test
public void testCreatePageAsAuthor() throws InterruptedException {
// This shows that it exists for the author user
userRule.getClient().pageExistsWithRetry(pageRule.getPath(), TIMEOUT);
}
This integration test class itself comes with a bit of boilerplate code, mostly Junit rules to setup the connection and prepare the environment (for example to create the page for which we test the existence).
And the best thing: You don’t need to take care of URLs and authentication, because these parameters are specified outside of your code and are normally provided via Maven properties. This keeps the code very portable, and gives you the chance to execute it both locally and as part of the Cloudmanager pipeline.
Iin the next blog post I want to demonstrate how easy it can be to validate that a page in the AEM author renders correctly.
You must be logged in to post a comment.