使用ReflectionTestUtils解決依賴注入

weixin_33751566發表於2016-07-25

概述

當使用junit來測試Spring的程式碼時,為了減少依賴,需要給物件的依賴,設定一個mock物件,但是由於Spring可以使用@Autoware類似的註解方式,對私有的成員進行賦值,此時無法直接對私有的依賴設定mock物件。可以通過引入ReflectionTestUtils,解決依賴注入的問題。

使用簡介

在Spring框架中,可以使用註解的方式如:@Autowair、@Inject、@Resource,對私有的方法或屬性進行註解賦值,如果需要修改賦值,可以使用ReflectionTestUtils達到目的。

程式碼例子

待測試類:Foo

package com.github.yongzhizhan.draftbox.springtest;

import org.springframework.beans.factory.annotation.Autowired;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;

/**
 * 被測類
 */
public class Foo {
    @Autowired
    private String m_String;

    @PostConstruct
    private void onStarted(){
        System.out.println("on started " + m_String);
    }

    @PreDestroy
    private void onStop(){
        System.out.println("on stop " + m_String);
    }
}

使用ReflectionTestUtils解決依賴注入:

package com.github.yongzhizhan.draftbox.springtest;

import org.junit.Test;
import org.springframework.test.util.ReflectionTestUtils;

/**
 * 使用ReflectionTestUtils解決依賴注入
 * @author zhanyongzhi
 */
public class ReflectionTestUtilsTest {
    @Test
    public void testDefault(){
        Foo tFoo = new Foo();

        //set private property
        ReflectionTestUtils.setField(tFoo, "m_String", "Hello");

        //invoke construct and destroy method
        ReflectionTestUtils.invokeMethod(tFoo, "onStarted");
        ReflectionTestUtils.invokeMethod(tFoo, "onStop");
    }
}

在github中檢視

參考

unit-testing

相關文章