JUnit - Page model NullPointerException | Community
Skip to main content
Nitin_laad
Community Advisor
Community Advisor
November 25, 2020
Solved

JUnit - Page model NullPointerException

  • November 25, 2020
  • 4 replies
  • 3090 views

Hi All, 

Trying to get Page model object (OOB) in JUnit test case, but getting NullPointerException (at line#75).
Am I missing anything in the implementation, any thoughts/suggestion please.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by BrianKasingli

Try again after making your Sling Model more simple. Change to :

@Model(adaptables = { SlingHttpServletRequest.class, Resource.class }, defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL) public class PageModel implements Page { }

 If this doesn't work, try to remove implements Page. Just seeing it your developer's environment is working at all. It might just be a coding convention issue.

4 replies

Level 4
November 26, 2020

Hi @nitin_laad ,

Please try below line.

PageModel model = context.request().adaptTo(PageModel.class);

https://experienceleague.adobe.com/docs/experience-manager-learn/getting-started-wknd-tutorial-develop/unit-testing.html?lang=en#testing-get-occupations 

If possible, please share json what you are referencing below. 

Thanks,

Sandeep.

 

Nitin_laad
Community Advisor
Community Advisor
November 26, 2020

Thank You @sandeep6, pfa json

Vijayalakshmi_S
Level 10
November 26, 2020

Hi @nitin_laad,

Please check the Model under test. In this case, PageModel.class - If any of the injects/references used in sling model is null in the context of test environment, then it will result in Model being null. 

We need to set those references used in Model to aemContext and then use it to get the Model object. 

Example : If a Model uses Externalizer service, then we need to set the Externalizer to aemContext first before instantiating the Model. 

Please share the PageModel.class if it is fine to share for further debugging.

Nitin_laad
Community Advisor
Community Advisor
November 26, 2020

Thank You Vijaylaxmi for your time, Here is the model definition....and related junit and json (modified version)

Getting NullPointer for pageModel.getTitle(). 

BrianKasingli
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
November 26, 2020

@nitin_laad do you have the RunWith annotation set?

 

@RunWith(MockitoJUnitRunner.class) public class ComponentTest { @Rule public final AemContext context = new AemContext(ResourceResolverType.JCR_MOCK); private Component component; @Test public void itShouldNotBeNull() { Resource componentContext = context.create().resource("/content/my-site/home/jcr:content/component", new ValueMapDecorator(ImmutableMap.<String, Object> of( "fakeProp", "example"))); underTest = componentContext.adaptTo(Component.class); assertNotNulll(underTest); } }

 

 

Nitin_laad
Community Advisor
Community Advisor
November 26, 2020
Thank You @briankasingli, tried with suggested option but no luck
BrianKasingli
Community Advisor and Adobe Champion
BrianKasingliCommunity Advisor and Adobe ChampionAccepted solution
Community Advisor and Adobe Champion
November 26, 2020

Try again after making your Sling Model more simple. Change to :

@Model(adaptables = { SlingHttpServletRequest.class, Resource.class }, defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL) public class PageModel implements Page { }

 If this doesn't work, try to remove implements Page. Just seeing it your developer's environment is working at all. It might just be a coding convention issue.

Nitin_laad
Community Advisor
Community Advisor
November 27, 2020
I am able to successfully run below test case