Mockito test case for class which calls another class in its constructor, in which 3 varibles are assigned inside them for legacy applicaiton in Java

huangapple 未分类评论48阅读模式
英文:

Mockito test case for class which calls another class in its constructor, in which 3 varibles are assigned inside them for legacy applicaiton in Java

问题

以下是翻译好的内容:

我有一个以下的类,该类在其构造函数中调用另一个类,其中分配了3个变量,当我尝试对其进行模拟时,我得到以下错误:

java.lang.RuntimeException: 调用 PowerMock 测试监听器 org.powermock.api.extension.listener.AnnotationEnabler@416dd4d8 的 beforeTestMethod 方法失败。
Caused by: org.mockito.exceptions.base.MockitoException: 
无法实例化类型为 'class com.psp.pca.businesslogic.GuidelinesProcessor' 的 @InjectMocks 字段 'guidelinesProcessor'。
在字段声明时未提供实例,因此尝试构造实例。
但是构造函数或初始化块抛出异常:null
Caused by: java.lang.NullPointerException
	at com.psp.pca.containers.GuidelineResultPageBean.<init>(GuidelineResultPageBean.java:8)
	at com.psp.pca.businesslogic.GuidelinesProcessor.<init>(GuidelinesProcessor.java:4)

GuidelinesProcessor.java

public class GuidelinesProcessor extends LogicProcessor {
    
    private GuidelineResultPageBean pb;
    
    public GuidelinesProcessor() {
        pb = new GuidelineResultPageBean();
    } 
    public void process(Context ctx, Locale loc, PropertyBundle rb) throws Exception {   
    ...
    }
}

GuidelineResultPageBean.java

public class GuidelineResultPageBean extends PageBean {
    private PackageDetails measurements;
    private Recommendation recom;
    private String guideline1 = null;
    private String guideline2 = null;
    private String guideline3 = null;
    
    public GuidelineResultPageBean() {        
        guideline1 = ResourceLoader.getProperties().getProperty(Constants.GUIDELINE1_STR);      
        guideline2 = ResourceLoader.getProperties().getProperty(Constants.GUIDELINE2_STR);
        guideline3 = ResourceLoader.getProperties().getProperty(Constants.GUIDELINE3_STR);
    }
}

Constants.java

public class Constants {
    public static final String GUIDELINE1_STR = "guideline.1";
    public static final String GUIDELINE2_STR = "guideline.2";
    public static final String GUIDELINE3_STR = "guideline.3";
}

其中:

guideline.1 = "P1"
guideline.2 = "P2"
guideline.3 = "P3"

以下是我的测试类:

@RunWith(PowerMockRunner.class)
@PrepareForTest({ ResourceLoader.class, Context.class, Logger.class })
public class GuidelinesProcessorTest {
    
    PropertyBundle mockrb;
    
    @Mock
    Context ctx;    
    @Mock
    GuidelineResultPageBean pgbean;    
    
    @InjectMocks
    GuidelinesProcessor guidelinesProcessor;  
    
    @Before
    public void setUp() {
        MockitoAnnotations.initMocks(this);
        PowerMockito.mockStatic(ResourceLoader.class);  
        mockrb = new PropertyBundle();
        mockrb.setProperty(Constants.KEY_LWH_UOFM_ENGLISH_CA, "in");
        mockrb.setProperty(Constants.KEY_WT_UOFM_ENGLISH, "lbs");
        mockrb.setProperty(Constants.KEY_LWH_UOFM_ENGLISH, "inches");        
        when("guideline.1").thenReturn("P1");
        when("guideline.2").thenReturn("P2");
        when("guideline.3").thenReturn("P3");
    }
    
    @Test
    public void testProcess() throws Exception {
        loc = new Locale("en", "US");
        
        GuidelinesProcessor guidelinesProcessorSpy = Mockito.spy(new GuidelinesProcessor());
        Mockito.doReturn(pgbean).when(guidelinesProcessorSpy);
        
        guidelinesProcessor.process(pgf, loc, mockrb);
    }
}

基本上它无法调用 PGAResourceLoader.getProperties().getProperty(Constants.GUIDELINE1_STR)

如果有人能够帮助我找出正确的模拟方式,将会非常有帮助。

英文:

I have a class below which calls another class in its constructor, in which 3 varibles are assigned, when I try to mock it I get

    java.lang.RuntimeException: Invoking the beforeTestMethod method on PowerMock test listener org.powermock.api.extension.listener.AnnotationEnabler@416dd4d8 failed.
    Caused by: org.mockito.exceptions.base.MockitoException: 
    Cannot instantiate @InjectMocks field named &#39;guidelinesProcessor&#39; of type &#39;class com.psp.pca.businesslogic.GuidelinesProcessor&#39;.
    You haven&#39;t provided the instance at field declaration so I tried to construct the instance.
    However the constructor or the initialization block threw an exception : null
Caused by: java.lang.NullPointerException
	at com.psp.pca.containers.GuidelineResultPageBean.&lt;init&gt;(GuidelineResultPageBean.java:8)
	at com.psp.pca.businesslogic.GuidelinesProcessor.&lt;init&gt;(GuidelinesProcessor.java:4)

GuidelinesProcessor.java

public class GuidelinesProcessor extends LogicProcessor {

private GuidelineResultPageBean pb;

public GuidelinesProcessor() {
pb = new GuidelineResultPageBean();
} 
public void process(Context ctx, Locale loc, PropertyBundle rb)	throws Exception {   
.....
}
}

GuidelineResultPageBean.java

public class GuidelineResultPageBean extends PageBean {
	private PackageDetails measurements;
	private Recommendation recom;
	private String guideline1 = null;
	private String guideline2 = null;
	private String guideline3 = null;

	public GuidelineResultPageBean() {		
		guideline1 = ResourceLoader.getProperties().getProperty(Constants.GUIDELINE1_STR);		
		guideline2 = ResourceLoader.getProperties().getProperty(Constants.GUIDELINE2_STR);
		guideline3 = ResourceLoader.getProperties().getProperty(Constants.GUIDELINE3_STR);
	}
}

Constants.java

public class Constants {
public static final String GUIDELINE1_STR = &quot;guideline.1&quot;;
	public static final String GUIDELINE2_STR = &quot;guideline.2&quot;;
	public static final String GUIDELINE3_STR = &quot;guideline.3&quot;;
}

where

guideline.1 = &quot;P1&quot;
guideline.2 = &quot;P2&quot;
guideline.3 = &quot;P3&quot;

Below is my test class:

@RunWith(PowerMockRunner.class)
@PrepareForTest({ ResourceLoader.class, Context.class, Logger.class })
public class GuidelinesProcessorTest {

PropertyBundle mockrb;

@Mock
Context ctx;	
@Mock
GuidelineResultPageBean pgbean;    

@InjectMocks
GuidelinesProcessor guidelinesProcessor;  


@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
PowerMockito.mockStatic(ResourceLoader.class);  
mockrb = new PropertyBundle();
mockrb.setProperty(Constants.KEY_LWH_UOFM_ENGLISH_CA, &quot;in&quot;);
mockrb.setProperty(Constants.KEY_WT_UOFM_ENGLISH, &quot;lbs&quot;);
mockrb.setProperty(Constants.KEY_LWH_UOFM_ENGLISH, &quot;inches&quot;);		
when(&quot;guideline.1&quot;).thenReturn(&quot;P1&quot;);
when(&quot;guideline.2&quot;).thenReturn(&quot;P2&quot;);
when(&quot;guideline.3&quot;).thenReturn(&quot;P3&quot;);
}

@Test
public void testProcess() throws Exception {
loc = new Locale(&quot;en&quot;, &quot;US&quot;);

GuidelinesProcessor guidelinesProcessorSpy = Mockito.spy(new GuidelinesProcessor());
Mockito.doReturn(pgbean).when(guidelinesProcessorSpy);

guidelinesProcessor.process(pgf, loc, mockrb);
}
}

Basically it is not able to invoke

PGAResourceLoader.getProperties().getProperty(Constants.GUIDELINE1_STR)

It will be of great help, if someone can help me with the correct way of mocking it.

答案1

得分: 0

可以按照以下方式进行操作:

@Mock
private Context ctx;

@Mock
private GuidelineResultPageBean pgbean;

private GuidelinesProcessor guidelinesProcessor;

@Before
public void setUp() {
    guidelinesProcessor = PowerMockito.mock(GuidelinesProcessor.class, CALL_REAL_METHODS);
    Whitebox.setInternalState(guidelinesProcessor, "fieldName", pgbean);
    Whitebox.setInternalState(guidelinesProcessor, "fieldNameContext", ctx);
    // 继续其他操作
}
英文:

You can do the following

@Mock
private Context ctx;   
 
@Mock
private GuidelineResultPageBean pgbean;    

private GuidelinesProcessor guidelinesProcessor;  


@Before
public void setUp() {
    guidelinesProcessor = PowerMockito.mock(GuidelinesProcessor.class, CALL_REAL_METHODS);
    Whitebox.setInternalState(guidelinesProcessor, &quot;fieldName&quot;, pgbean);
    Whitebox.setInternalState(guidelinesProcessor, &quot;fieldNameContext&quot;, ctx);
    // continue
}

huangapple
  • 本文由 发表于 2020年7月23日 20:30:17
  • 转载请务必保留本文链接:https://java.coder-hub.com/63054311.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定