單元測試與 PowerMock

mymdeep發表於2017-03-19

為什麼進行單元測試

在我們開發的app的時候,可能會出現一些邏輯問題是測試人員測試不到的,或者在測試前需要自測的時候,希望程式自動執行,這時候就需要使用單元測試的。使用單元測試,就會需要模擬一些類或者變數,這時我們就需要使用PowerMock。

使用PowerMock

我們新建一個Android Studio工程,預設會在工程下生成如下三個資料夾:androidTest, main,test。main不用說了就是你的程式入口,androidTest是android特有的測試方法,這個後面會講。這裡主要說一下test,這個是測試java的相關程式,理論上任何java都可以利用這個進行測試。android也是java寫的,當然就也可以進行測試。

依賴

我們首先需要讓工程依賴測試的相關庫。


dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:24.2.1'
    testCompile "org.mockito:mockito-all:1.6.1"
    testCompile 'org.powermock:powermock-module-junit4:1.6.1'
    testCompile 'org.powermock:powermock-module-junit4-rule:1.6.1'
    testCompile 'org.powermock:powermock-api-mockito:1.6.1'
    testCompile "org.powermock:powermock-classloading-xstream:1.6.1"

}複製程式碼

為什麼用testCompile,這是表明只有在執行test工程時,才會依賴這些。如果對這裡的語法有什麼疑問,可以參考我之前的文章Android工程gradle詳解

開始測試

基本資料傳遞

我們在MainActivity中寫一個方法,來判斷檔案是否存在:

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    public boolean checkFile(File file){
        return  file.exists();
    }
}複製程式碼

然後在上文中提到過的test資料夾下開啟ExampleUnitTest,或者新建一個類都可以,新增如下方法:

public class ExampleUnitTest {

    @Test
    public void testEmpty() {
        File file = PowerMockito.mock(File.class);//模擬一個file檔案
        MainActivity activity = new MainActivity();//新建一個這個類
        PowerMockito.when(file.exists()).thenReturn(true);//由於file是模擬變數,那麼就要指定當呼叫模擬變數的某個方法時所返回的值
        Assert.assertTrue(activity.checkFile(file));//斷言,這個不用說了吧

    }
}複製程式碼

然後右鍵點選該檔案,選擇執行:

單元測試與 PowerMock

可以看到執行成功,一切都是正確的。根據註釋可以明白我們的意圖,就是當file.exists()返回true時,那麼這個方法也要返回true,我就認唔這個方法沒毛病。那如果方法出錯是什麼樣呢
那麼假設,我們程式碼寫錯了,我們修改一下上面的程式碼:

  public boolean checkFile(File file){
     return  !file.exists();//故意寫錯
    }複製程式碼

看看測試程式碼能不能檢測出來,執行:

單元測試與 PowerMock

很明顯斷言錯了,我們馬上就能發現對應問題。

新建物件

上面測試的物件是傳遞進來的,那麼我們如果測試一個new的物件可以嗎?當然也可以:
程式碼如下:

 public boolean checkFileByPath(String path){
        File file = new File(path);
        return  file.exists();
    }複製程式碼

測試程式碼如下:

@RunWith(PowerMockRunner.class)
public class ExampleUnitTest {

    @Test
    public void testEmpty() {
        File file = PowerMockito.mock(File.class);
        MainActivity activity = new MainActivity();
        PowerMockito.when(file.exists()).thenReturn(true);
        Assert.assertTrue(activity.checkFile(file));

    }
    @Test
    @PrepareForTest(MainActivity.class)
    public void testEmptyBypath() throws Exception {
        File file = PowerMockito.mock(File.class);
        MainActivity activity = new MainActivity();
        PowerMockito.whenNew(File.class).withArguments("path").thenReturn(file);//意思是當new File時返回模擬變數file
        PowerMockito.when(file.exists()).thenReturn(true);
        Assert.assertTrue(activity.checkFileByPath("path"));//傳入的變數與上面構建時一致,都要是path

    }
}複製程式碼

注意當使用PowerMockito.whenNew方法時,必須加註解@PrepareForTest和@RunWith。註解@PrepareForTest裡寫的類是需要mock的new物件程式碼所在的類。

模擬一個類中的final型別方法

首先我們需要寫一個包含fina方法的類:

public class StringUtil {
   public final boolean isOk(){
       return true;
   }
}複製程式碼

然後呼叫:

 public boolean checkString(StringUtil util){

        return  util.isOk();
    }複製程式碼

接著給出測試程式碼:

 @Test
    @PrepareForTest(StringUtil.class)
    public void testFinal() throws Exception {
        StringUtil util = PowerMockito.mock(StringUtil.class);
        MainActivity activity = new MainActivity();
        PowerMockito.when(util.isOk()).thenReturn(true);
        Assert.assertTrue(activity.checkString(util));

    }複製程式碼

當需要mock final方法的時候,必須加註解@PrepareForTest和@RunWith。註解@PrepareForTest裡寫的類是final方法所在的類。

模擬靜態方法

給出靜態方法:

public class StringUtil {
   public final boolean isOk(){
       return true;
   }

    public static boolean isOkStatic(){
        return true;
    }
}複製程式碼

給出呼叫:

public boolean checkStringByStatic(){

        return  StringUtil.isOkStatic();
    }複製程式碼

測試程式碼:

 @Test
    @PrepareForTest(StringUtil.class)
    public void testStatic() throws Exception {
        MainActivity activity = new MainActivity();
        PowerMockito.mockStatic(StringUtil.class);
        PowerMockito.when(StringUtil.isOkStatic()).thenReturn(true);
        Assert.assertTrue(activity.checkStringByStatic());

    }複製程式碼

當需要mock靜態方法的時候,必須加註解@PrepareForTest和@RunWith。註解@PrepareForTest裡寫的類是靜態方法所在的類。

模擬私有方法

我們寫一個私有方法和呼叫:

public boolean checkStringPrivate(){

        return  isOkPrivate();
    }
    private  boolean isOkPrivate(){
        return true;
    }複製程式碼

測試程式碼:

@Test
    @PrepareForTest(MainActivity.class)
    public void testPrivate() throws Exception {
        MainActivity mainActivity = PowerMockito.mock(MainActivity.class);
        PowerMockito.when(mainActivity.checkStringPrivate()).thenCallRealMethod();
        PowerMockito.when(mainActivity, "isOkPrivate").thenReturn(true);//isOkPrivate是私有方法,但是模擬了MainActivity,可以通過公有方法間接呼叫測試
        Assert.assertTrue(mainActivity.checkStringPrivate());

    }複製程式碼

spy

當我們想檢測一個類中變數的變化時可以用這種方式:
比如我們寫一個Spyer類:

public class Spyer {
    public int count = 0;
    public void onCreate(){
        count = 1;
    }
}複製程式碼

我們在測試的時候可以這樣:

  @Test
    public void testSpy() throws Exception {
       Spyer spyer = PowerMockito.spy(new Spyer());
      spyer.onCreate();
        Assert.assertEquals(1, spyer.count);


    }複製程式碼

模糊匹配

當我們想測試一個方法時,可能不想傳入某一個精確的值,這時候可以使用Mockito.anyInt(),Mockito.anyString()

##

可能出現的問題

  • org.powermock.reflect.exceptions.FieldNotFoundException:
    junit和powermock版本衝突:
    可以做如下修改:
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:24.2.1'
    testCompile "org.mockito:mockito-all:1.6.1"
    testCompile 'org.powermock:powermock-module-junit4:1.6.1'
    testCompile 'org.powermock:powermock-module-junit4-rule:1.6.1'
    testCompile 'org.powermock:powermock-api-mockito:1.6.1'
    testCompile "org.powermock:powermock-classloading-xstream:1.6.1"

}複製程式碼
  • 使用Powermock後會提示classloader錯誤
    加入註解:@PowerMockIgnore("javax.management.*")

相關文章