Expand my Community achievements bar.

Nomination window for the Adobe Community Advisor Program, Class of 2025, is now open!
SOLVED

Unit Test for for SlingServlet

Avatar

Level 8

Hi All

I need to write a UnitTest for a doGet method in a Servlet that extends SlingSafeMethodsServlet. 

 

This is the doGet method I need to write the UnitTest for and I am not sure how to mock the resource for it:

@Override
protected void doGet(@Nonnull SlingHttpServletRequest request, @Nonnull SlingHttpServletResponse response) throws IOException {
final JsonResponse jsonResponse = new JsonResponse(response);
final String title = request.getParameter("title");
final List<APIResult> locations = LocationFinderUtil.getLocationResultStream(request, searchService)
.filter(result -> StringUtils.isNotBlank(title) &&
(StringUtils.containsIgnoreCase(result.getTitle(), title) || StringUtils.containsIgnoreCase(result.getAdditionalAddress(), title)))
.map(APIResult::new)
.collect(Collectors.toList());
jsonResponse.write(locations);
}

 

1 Accepted Solution

Avatar

Community Advisor
7 Replies

Avatar

Level 5

Hi @anasustic ,

 

For writing Junits for OSGi Code, You can go for Mockito framework and use AEMContext to mock the resources. Or you can use Sling Mocks- https://sling.apache.org/documentation/development/sling-mock.html

Please refer the below links for your reference, 

https://aemhints.com/2020/12/19/junit-test-in-aem-6-5-servlet/

https://myaemlearnings.blogspot.com/2020/07/unit-testing-hands-on-for-sling-servlet.html

https://www.youtube.com/watch?v=hY_b3d9VZ_k

 

 

 

Avatar

Level 8

Hi @Hemalatha 

Thanks for the reply. 

I am sorry but these two links are broken:

https://aemhints.com/2020/12/19/junit-test-in-aem-6-5-servlet/

https://myaemlearnings.blogspot.com/2020/07/unit-testing-hands-on-for-sling-servlet.html

 

If I use the AEMContext to mock the resource how do I build it using 

aemContext.build().resource()

 

Avatar

Level 5

Hi @anasustic ,

 

The links are working. PFA. May be it was blocked if you are using VPN. Kindly check. Understand the Junit samples for servlet. How it has been written and note down the test cases for your servlet based on your use case, then write it by referring the samples is the best way. 

Hemalatha_0-1638445869513.png

 

Avatar

Level 8

Thank you very much @Hemalatha I will research the links from another location. It appears not to work from my current location.

Avatar

Community Advisor

Avatar

Level 8

Thanks @arunpatidar 

Your example is clear. I do however build a resource that is a page with several components. I am not sure if I can build a complex resource with context.

Avatar

Community Advisor