Expand my Community achievements bar.

SOLVED

Unit Test for for SlingServlet

Avatar

Level 7

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 7

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 4

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 7

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

Avatar

Level 7

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