1. 程式人生 > >Mockito單元測試框架使用教程

Mockito單元測試框架使用教程

1.1 Mockito是什麼?

Mockito是mocking框架,它讓你用簡潔的API做測試。而且Mockito簡單易學,它可讀性強和驗證語法簡潔。

1.2 為什麼需要Mock

測試驅動的開發( TDD)要求我們先寫單元測試,再寫實現程式碼。在寫單元測試的過程中,我們往往會遇到要測試的類有很多依賴,這些依賴的類/物件/資源又有別的依賴,從而形成一個大的依賴樹,要在單元測試的環境中完整地構建這樣的依賴,是一件很困難的事情。如下圖所示: 

為了測試類A,我們需要Mock B類和C類(用虛擬物件來代替)如下圖所示:

1.3 Stub和Mock異同[1]

  • 相同:Stub和Mock都是模擬外部依賴
  • 不同:Stub是完全模擬一個外部依賴, 而Mock還可以用來判斷測試通過還是失敗 

1.4 Mockito資源

1.5 使用場景

  • 提前建立測試; TDD(測試驅動開發)
  • 團隊可以並行工作
  • 你可以建立一個驗證或者演示程式
  • 為無法訪問的資源編寫測試
  • Mock 可以交給使用者
  • 隔離系統  

2 使用Mockito [2][4]

新增maven依賴

<dependency>
     <groupId>org.mockito</groupId>
     <artifactId>mockito-all</artifactId>
     <version>1.9.5</version
>
<scope>test</scope> </dependency>

新增junit依賴

<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>4.11</version>
  <scope>test</scope>
</dependency>

新增引用

import static org.mockito.Mockito.*;
import
static org.junit.Assert.*;

2.1 驗證行為

    @Test
    public void verify_behaviour(){
        //模擬建立一個List物件
        List mock = mock(List.class);
        //使用mock的物件
        mock.add(1);
        mock.clear();
        //驗證add(1)和clear()行為是否發生
        verify(mock).add(1);
        verify(mock).clear();
    }

2.2 模擬我們所期望的結果

 @Test
    public void when_thenReturn(){
        //mock一個Iterator類
        Iterator iterator = mock(Iterator.class);
        //預設當iterator呼叫next()時第一次返回hello,第n次都返回world
        when(iterator.next()).thenReturn("hello").thenReturn("world");
        //使用mock的物件
        String result = iterator.next() + " " + iterator.next() + " " + iterator.next();
        //驗證結果
        assertEquals("hello world world",result);
    }
    @Test(expected = IOException.class)
    public void when_thenThrow() throws IOException {
        OutputStream outputStream = mock(OutputStream.class);
        OutputStreamWriter writer = new OutputStreamWriter(outputStream);
        //預設當流關閉時丟擲異常
        doThrow(new IOException()).when(outputStream).close();
        outputStream.close();
    }

2.3 RETURNS_SMART_NULLS和RETURNS_DEEP_STUBS

RETURNS_SMART_NULLS實現了Answer介面的物件,它是建立mock物件時的一個可選引數,mock(Class,Answer)。

在建立mock物件時,有的方法我們沒有進行stubbing,所以呼叫時會放回Null這樣在進行操作是很可能丟擲NullPointerException。如果通過RETURNS_SMART_NULLS引數建立的mock物件在沒有呼叫stubbed方法時會返回SmartNull。例如:返回型別是String,會返回”“;是int,會返回0;是List,會返回空的List。另外,在控制檯視窗中可以看到SmartNull的友好提示。

    @Test
    public void returnsSmartNullsTest() {
        List mock = mock(List.class, RETURNS_SMART_NULLS);
        System.out.println(mock.get(0));

        //使用RETURNS_SMART_NULLS引數建立的mock物件,不會丟擲NullPointerException異常。另外控制檯視窗會提示資訊“SmartNull returned by unstubbed get() method on mock”
        System.out.println(mock.toArray().length);
    }

RETURNS_DEEP_STUBS也是建立mock物件時的備選引數

RETURNS_DEEP_STUBS引數程式會自動進行mock所需的物件,方法deepstubsTest和deepstubsTest2是等價的

    @Test
    public void deepstubsTest(){
        Account account=mock(Account.class,RETURNS_DEEP_STUBS);
        when(account.getRailwayTicket().getDestination()).thenReturn("Beijing");
        account.getRailwayTicket().getDestination();
        verify(account.getRailwayTicket()).getDestination();
        assertEquals("Beijing",account.getRailwayTicket().getDestination());
    }
    @Test
    public void deepstubsTest2(){
        Account account=mock(Account.class); 
        RailwayTicket railwayTicket=mock(RailwayTicket.class);        
        when(account.getRailwayTicket()).thenReturn(railwayTicket); 
        when(railwayTicket.getDestination()).thenReturn("Beijing");

        account.getRailwayTicket().getDestination();
        verify(account.getRailwayTicket()).getDestination();    
        assertEquals("Beijing",account.getRailwayTicket().getDestination());
    }    

    public class RailwayTicket{
        private String destination;

        public String getDestination() {
            return destination;
        }

        public void setDestination(String destination) {
            this.destination = destination;
        }        
    }

    public class Account{
        private RailwayTicket railwayTicket;

        public RailwayTicket getRailwayTicket() {
            return railwayTicket;
        }

        public void setRailwayTicket(RailwayTicket railwayTicket) {
            this.railwayTicket = railwayTicket;
        }
    }

2.4 模擬方法體丟擲異常

    @Test(expected = RuntimeException.class)
    public void doThrow_when(){
        List list = mock(List.class);
        doThrow(new RuntimeException()).when(list).add(1);
        list.add(1);
    }

2.5 使用註解來快速模擬 

在上面的測試中我們在每個測試方法裡都mock了一個List物件,為了避免重複的mock,是測試類更具有可讀性,我們可以使用下面的註解方式來快速模擬物件:

    @Mock
    private List mockList;

OK,我們再用註解的mock物件試試 

    @Test
    public void shorthand(){
        mockList.add(1);
        verify(mockList).add(1);
    }

執行這個測試類你會發現報錯了,mock的物件為NULL,為此我們必須在基類中新增初始化mock的程式碼

public class MockitoExample2 {
    @Mock
    private List mockList;

    public MockitoExample2(){
        MockitoAnnotations.initMocks(this);
    }

    @Test
    public void shorthand(){
        mockList.add(1);
        verify(mockList).add(1);
    }
}

或者使用built-in runner:MockitoJUnitRunner

@RunWith(MockitoJUnitRunner.class)
public class MockitoExample2 {
    @Mock
    private List mockList;

    @Test
    public void shorthand(){
        mockList.add(1);
        verify(mockList).add(1);
    }
}

2.6 引數匹配

    @Test
    public void with_arguments(){
        Comparable comparable = mock(Comparable.class);
        //預設根據不同的引數返回不同的結果
        when(comparable.compareTo("Test")).thenReturn(1);
        when(comparable.compareTo("Omg")).thenReturn(2);
        assertEquals(1, comparable.compareTo("Test"));
        assertEquals(2, comparable.compareTo("Omg"));
        //對於沒有預設的情況會返回預設值
        assertEquals(0, comparable.compareTo("Not stub"));
    }

除了匹配製定引數外,還可以匹配自己想要的任意引數

    @Test
    public void with_unspecified_arguments(){
        List list = mock(List.class);
        //匹配任意引數
        when(list.get(anyInt())).thenReturn(1);
        when(list.contains(argThat(new IsValid()))).thenReturn(true);
        assertEquals(1, list.get(1));
        assertEquals(1, list.get(999));
        assertTrue(list.contains(1));
        assertTrue(!list.contains(3));
    }

    private class IsValid extends ArgumentMatcher<List>{
        @Override
        public boolean matches(Object o) {
            return o == 1 || o == 2;
        }
    }

注意:如果你使用了引數匹配,那麼所有的引數都必須通過matchers來匹配,如下程式碼:

    @Test
    public void all_arguments_provided_by_matchers(){
        Comparator comparator = mock(Comparator.class);
        comparator.compare("nihao","hello");
        //如果你使用了引數匹配,那麼所有的引數都必須通過matchers來匹配
        verify(comparator).compare(anyString(),eq("hello"));
        //下面的為無效的引數匹配使用
        //verify(comparator).compare(anyString(),"hello");
    }

2.7 自定義引數匹配

    @Test
    public void argumentMatchersTest(){
        //建立mock物件
        List<String> mock = mock(List.class);

        //argThat(Matches<T> matcher)方法用來應用自定義的規則,可以傳入任何實現Matcher介面的實現類。
        when(mock.addAll(argThat(new IsListofTwoElements()))).thenReturn(true);

        mock.addAll(Arrays.asList("one","two","three"));
        //IsListofTwoElements用來匹配size為2的List,因為例子傳入List為三個元素,所以此時將失敗。
        verify(mock).addAll(argThat(new IsListofTwoElements()));
    }

    class IsListofTwoElements extends ArgumentMatcher<List>
    {
        public boolean matches(Object list)
        {
            return((List)list).size()==2;
        }
    }

2.8 捕獲引數來進一步斷言

較複雜的引數匹配器會降低程式碼的可讀性,有些地方使用引數捕獲器更加合適。

        @Test
    public void capturing_args(){
        PersonDao personDao = mock(PersonDao.class);
        PersonService personService = new PersonService(personDao);

        ArgumentCaptor<Person> argument = ArgumentCaptor.forClass(Person.class);
        personService.update(1,"jack");
        verify(personDao).update(argument.capture());
        assertEquals(1,argument.getValue().getId());
        assertEquals("jack",argument.getValue().getName());
    }

     class Person{
        private int id;
        private String name;

        Person(int id, String name) {
            this.id = id;
            this.name = name;
        }
        public int getId() {
            return id;
        }
        public String getName() {
            return name;
        }
    }

    interface PersonDao{
        public void update(Person person);
    }

    class PersonService{
        private PersonDao personDao;

        PersonService(PersonDao personDao) {
            this.personDao = personDao;
        }
        public void update(int id,String name){
            personDao.update(new Person(id,name));
        }
    }

2.9 使用方法預期回撥介面生成期望值(Answer結構)

@Test
    public void answerTest(){
        when(mockList.get(anyInt())).thenAnswer(new CustomAnswer());
        assertEquals("hello world:0",mockList.get(0));
        assertEquals("hello world:999",mockList.get(999));
    }

    private class CustomAnswer implements Answer<String>{
        @Override
        public String answer(InvocationOnMock invocation) throws Throwable {
            Object[] args = invocation.getArguments();
            return "hello world:"+args[0];
        }
    }

也可使用匿名內部類實現

    @Test
    public void answer_with_callback(){
        //使用Answer來生成我們我們期望的返回
        when(mockList.get(anyInt())).thenAnswer(new Answer<Object>() {
            @Override
            public Object answer(InvocationOnMock invocation) throws Throwable {
                Object[] args = invocation.getArguments();
                return "hello world:"+args[0];
            }
        });
        assertEquals("hello world:0",mockList.get(0));
        assertEquals("hello world:999",mockList.get(999));
    }

2.10 修改對未預設的呼叫返回預設期望

複製程式碼
    @Test
    public void unstubbed_invocations(){
        //mock物件使用Answer來對未預設的呼叫返回預設期望值
        List mock = mock(List.class,new Answer() {
            @Override
            public Object answer(InvocationOnMock invocation) throws Throwable {
                return 999;
            }
        });
        //下面的get(1)沒有預設,通常情況下會返回NULL,但是使用了Answer改變了預設期望值
        assertEquals(999, mock.get(1));
        //下面的size()沒有預設,通常情況下會返回0,但是使用了Answer改變了預設期望值
        assertEquals(999,mock.size());
    }
複製程式碼

2.11 用spy監控真實物件  

  • Mock不是真實的物件,它只是用型別的class建立了一個虛擬物件,並可以設定物件行為
  • Spy是一個真實的物件,但它可以設定物件行為
  • InjectMocks建立這個類的物件並自動將標記@Mock、@Spy等註解的屬性值注入到這個中
複製程式碼
    @Test(expected = IndexOutOfBoundsException.class)
    public void spy_on_real_objects(){
        List list = new LinkedList();
        List spy = spy(list);
        //下面預設的spy.get(0)會報錯,因為會呼叫真實物件的get(0),所以會丟擲越界異常
        //when(spy.get(0)).thenReturn(3);

        //使用doReturn-when可以避免when-thenReturn呼叫真實物件api
        doReturn(999).when(spy).get(999);
        //預設size()期望值
        when(spy.size()).thenReturn(100);
        //呼叫真實物件的api
        spy.add(1);
        spy.add(2);
        assertEquals(100,spy.size());
        assertEquals(1,spy.get(0));
        assertEquals(2,spy.get(1));
        verify(spy).add(1);
        verify(spy).add(2);
        assertEquals(999,spy.get(999));
        spy.get(2);
    }
複製程式碼

2.12 真實的部分mock

複製程式碼
    @Test
    public void real_partial_mock(){
        //通過spy來呼叫真實的api
        List list = spy(new ArrayList());
        assertEquals(0,list.size());
        A a  = mock(A.class);
        //通過thenCallRealMethod來呼叫真實的api
        when(a.doSomething(anyInt())).thenCallRealMethod();
        assertEquals(999,a.doSomething(999));
    }


    class A{
        public int doSomething(int i){
            return i;
        }
    }
複製程式碼

2.13 重置mock

複製程式碼
    @Test
    public void reset_mock(){
        List list = mock(List.class);
        when(list.size()).thenReturn(10);
        list.add(1);
        assertEquals(10,list.size());
        //重置mock,清除所有的互動和預設
        reset(list);
        assertEquals(0,list.size());
    }
複製程式碼

2.14 驗證確切的呼叫次數

複製程式碼
    @Test
    public void verifying_number_of_invocations(){
        List list = mock(List.class);
        list.add(1);
        list.add(2);
        list.add(2);
        list.add(3);
        list.add(3);
        list.add(3);
        //驗證是否被呼叫一次,等效於下面的times(1)
        verify(list).add(1);
        verify(list,times(1)).add(1);
        //驗證是否被呼叫2次
        verify(list,times(2)).add(2);
        //驗證是否被呼叫3次
        verify(list,times(3)).add(3);
        //驗證是否從未被呼叫過
        verify(list,never()).add(4);
        //驗證至少呼叫一次
        verify(list,atLeastOnce()).add(1);
        //驗證至少呼叫2次
        verify(list,atLeast(2)).add(2);
        //驗證至多呼叫3次
        verify(list,atMost(3)).add(3);
    }
複製程式碼

2.15 連續呼叫

複製程式碼
    @Test(expected = RuntimeException.class)
    public void consecutive_calls(){
        //模擬連續呼叫返回期望值,如果分開,則只有最後一個有效
        when(mockList.get(0)).thenReturn(0);
        when(mockList.get(0)).thenReturn(1);
        when(mockList.get(0)).thenReturn(2);
        when(mockList.get(1)).thenReturn(0).thenReturn(1).thenThrow(new RuntimeException());
        assertEquals(2,mockList.get(0));
        assertEquals(2,mockList.get(0));
        assertEquals(0,mockList.get(1));
        assertEquals(1,mockList.get(1));
        //第三次或更多呼叫都會丟擲異常
        mockList.get(1);
    }
複製程式碼

2.16 驗證執行順序

複製程式碼
    @Test
    public void verification_in_order(){
        List list = mock(List.class);
        List list2 = mock(List.class);
        list.add(1);
        list2.add("hello");
        list.add(2);
        list2.add("world");
        //將需要排序的mock物件放入InOrder
        InOrder inOrder = inOrder(list,list2);
        //下面的程式碼不能顛倒順序,驗證執行順序
        inOrder.verify(list).add(1);
        inOrder.verify(list2).add("hello");
        inOrder.verify(list).add(2);
        inOrder.verify(list2).add("world");
    }
複製程式碼

2.17 確保模擬物件上無互動發生

複製程式碼
    @Test
    public void verify_interaction(){
        List list = mock(List.class);
        List list2 = mock(List.class);
        List list3 = mock(List.class);
        list.add(1);
        verify(list).add(1);
        verify(list,never()).add(2);
        //驗證零互動行為
        verifyZeroInteractions(list2,list3);
    }
複製程式碼

2.18 找出冗餘的互動(即未被驗證到的)

複製程式碼
    @Test(expected = NoInteractionsWanted.class)
    public void find_redundant_interaction(){
        List list = mock(List.class);
        list.add(1);
        list.add(2);
        verify(list,times(2)).add(anyInt());
        //檢查是否有未被驗證的互動行為,因為add(1)和add(2)都會被上面的anyInt()驗證到,所以下面的程式碼會通過
        verifyNoMoreInteractions(list);

        List list2 = mock(List.class);
        list2.add(1);
        list2.add(2);
        verify(list2).add(1);
        //檢查是否有未被驗證的互動行為,因為add(2)沒有被驗證,所以下面的程式碼會失敗丟擲異常
        verifyNoMoreInteractions(list2);
    }
複製程式碼

3 Mockito如何實現Mock[3]

 返回

Mockito並不是建立一個真實的物件,而是模擬這個物件,他用簡單的when(mock.method(params)).thenRetrun(result)語句設定mock物件的行為,如下語句:

// 設定mock物件的行為 - 當呼叫其get方法獲取第0個元素時,返回"first"
Mockito.when(mockedList.get(0)).thenReturn("first");

在Mock物件的時候,建立一個proxy物件,儲存被呼叫的方法名(get),以及呼叫時候傳遞的引數(0),然後在呼叫thenReturn方法時再把“first”儲存起來,這樣,就有了構建一個stub方法所需的所有資訊,構建一個stub。當get方法被呼叫的時候,實際上呼叫的是之前儲存的proxy物件的get方法,返回之前儲存的資料。

參考