使用ABAP實現Mock測試工具Mockito
What is Mockito?
Mockito is a mocking framework, JAVA-based library that is used for effective unit testing of JAVA applications. In our unit test there are usually some dependency on other external service implementation for example network or database service. Usually in order to isolate our test code from these dependencies we have to create mock class against them.
Mockito in Java can create transient mock class ( which is only available in current test session ) for us in a very easy way. See one example below:
This is a very simple class for book manager. Three books are hard coded. If requested book index is bigger than 3, then message 1 “not exist” returns.
In this blog, I will first introduce how Mockito is used in Java to mock this manager class, then show you how the logic of Mockito could be implemented in ABAP.
class BookManager{
private String[] books = {"Inside Java", "Inside ABAP", "Inside JavaScript"};
public String getBook(int index){
if( index < books.length)
return books[index];
return "not exist";
}}
Use Mockito in Java
The magic is located in line 18 ~ 23. First in line 18 a proxy class is generated based on BookManager which is to be mocked, then line 20~23 we told the Mockito “when the method getBook with specified argument ( 0, 1, 2, 3 ) are called, please return given mocked data “mocked book {index}” accordingly.
And no doubt we can get the following output in console:
mocked book 0mocked book 1mocked book 2mocked book 3
How does it work in Java
Now let me unveil the mistery for you. In order to make the logic better understood, I split the one line
"when(mockedManager.getBook(0)).thenReturn("mocked book 0");"
into the following equivalence:
The mock process actually consists of four steps:
Step1: create a proxy class by inheriting BookManager.class dynamically. The generated class is a sub class of BookManager created via CGLIB, which I have already demonstrate how to implement it in ABAP in this blog:
Step2: mockedManager.getBook(0): Since we call getBook on the mocked class, the original implementation of this method can never be called again. When you click F5 to debug into this method, you can find the method call of getBook is intercepted into Mockito framework code:
Inside handler.handle(invocation) in line 47, first an instance of OngoingStubbingImpl is created for later usage.
In line 93, Mockito will check whether there is available mocked data ( In Mockito the terminology for “mocked data” is “answer” ) for current metod call in method findAnswerFor. If available, go to IF branch in line 97 to return mocked data, or else return default answer, in my example I don’t prepare any mocked data for getBook, so it simply returns null.
The logic of this step could be described in the following activity diagram:
Step3: Object stubbing = when(“dummy, any string here is ok”);
OngoingStubbingImpl stub = (OngoingStubbingImpl)stubbing; The static method call simply returns the OngoingStubbingImpl instance created in step2. We need call corresponding method of this instance to feed mocked data.
Step4: stub.thenReturn(“Mocked book!!!”); This line feeds the mocked data “Mocked book!!!” for method getBook. The answer is inserted to a ConcurrentLinkedQueue.
Now the mocked data is ready for consuming in line
System.out.println(mockedManager.getBook(0));
Since all the previous four steps for mock are done, we expect this time, the findAnswerfor will really return something.
Inside this method, each element in the queue is looped to evaluate whether it matches the mocked method call:
The evaluation is done based on three conditions: mocked class instance must be equal, method name and argument must be equal.
finally mocked data is returned for getBook in this IF branch.
How to simulate Mockito in ABAP
First this is the book manager class written in ABAP:
class ZCL_BOOK_MANAGER definition
public
create public .public section.
methods CONSTRUCTOR .
methods GET_BOOK
importing
!IV_INDEX type I
returning
value(RV_BOOK_NAME) type STRING .protected section.private section.
data MT_BOOKS type STRING_TABLE .ENDCLASS.CLASS ZCL_BOOK_MANAGER IMPLEMENTATION.
METHOD constructor.
mt_books = VALUE string_table( ( CONV #('Inside Java') )
( CONV #( 'Inside ABAP' ) )
( CONV #( 'Inside Javascript' ) ) ).
ENDMETHOD.
method GET_BOOK.
rv_book_name = value #( mt_books[ iv_index ] DEFAULT 'not exist' ).
endmethod.ENDCLASS.
And this is the report to test:
REPORT zmockito1.DATA(lo_stub) = zcl_abap_mockito=>mock( 'ZCL_BOOK_MANAGER' ).CHECK lo_stub IS NOT INITIAL.DATA(lo_mock) = CAST zcl_book_manager( lo_stub ).zcl_abap_mockito=>when( lo_mock->get_book( 1 ) )->then_return( 'Data 1' ).zcl_abap_mockito=>when( lo_mock->get_book( 2 ) )->then_return( 'Data 2' ).zcl_abap_mockito=>when( lo_mock->get_book( 3 ) )->then_return( 'Data 3' ).zcl_abap_mockito=>when( lo_mock->get_book( 4 ) )->then_return( 'Data 4' ).WRITE: / lo_mock->get_book( 1 ).WRITE: / lo_mock->get_book( 2 ).WRITE: / lo_mock->get_book( 3 ).WRITE: / lo_mock->get_book( 4 ).
Execution result:
Still I will explain how the mock is done in ABAP via the same four steps as in Java Mockito.
Step1: Create a transient sub class dynamically via ABAP call:
zcl_abap_mockito=>mock
The implementation has already been explained in this blog: Implement CGLIB in ABAP
Step2:
lo_mock->get_book( 1 )
When the get_book is executed, of course the original implementation will never be called again. Instead, the mocked class will delegate this call to Mockito framework method zcl_abap_mockito=>get_mocked_data
In zcl_abap_mockito=>get_mocked_data, just the same as Java, there is a IF branch:
Step3: call method when to return the instance which is the counterpart for “OngoingStubbingImpl” in Java.
Step4: call method then_return( ‘Data 1’ ) to feed mocked data for get_book method.
Further reading
I have written a series of blogs which compare the language feature among ABAP, JavaScript and Java. You can find a list of them below:
- Lazy Loading, Singleton and Bridge design pattern in JavaScript and in ABAP
- Functional programming – Simulate Curry in ABAP
- Functional Programming – Try Reduce in JavaScript and in ABAP
- Simulate Mockito in ABAP
- A simulation of Java Spring dependency injection annotation @Inject in ABAP
- Singleton bypass – ABAP and Java
- Weak reference in ABAP and Java
- Fibonacci Sequence in ES5, ES6 and ABAP
- Java byte code and ABAP Load
- How to write a correct program rejected by compiler: Exception handling in Java and in ABAP
- An small example to learn Garbage collection in Java and in ABAP
- String Template in ABAP, ES6, Angular and React
- Try to access static private attribute via ABAP RTTI and Java Reflection
- Local class in ABAP, Java and JavaScript
- Integer in ABAP, Java and JavaScript
- Covariance in Java and simulation in ABAP
- Various Proxy Design Pattern implementation variants in Java and ABAP
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2716790/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 使用 mockito 替代 unitest.mockMockito
- Mock 工具使用 - 模擬弱網測試Mock
- Java mockito mock InputStreamJavaMockito
- [譯] 使用 Espresso 和 Mockito 測試 MVPEspressoMockitoMVP
- ABAP Webdynpro效能測試工具Web
- Mockito雞尾酒第一杯 單測MockMockito
- 單元測試與MockitoMockito
- 單元測試框架 mockito框架Mockito
- 使用 YApi 管理 API 文件,測試, mockAPIMock
- 單元測試利器Mockito框架Mockito框架
- 使用 Postman 工具高效管理和測試 SAP ABAP OData 服務試讀版Postman
- Java單元測試神器之MockitoJavaMockito
- 單元測試模擬框架Mockito框架Mockito
- 如何實現介面異常場景測試?測試方法探索與測試工具實現
- 使用 Moq 測試.NET Core 應用 -- Mock 方法Mock
- Mock 在 Python 單元測試中的使用MockPython
- 介面測試工具 Postman 使用實踐Postman
- Mockito提升單元測試覆蓋率Mockito
- Mock生成測試資料Mock
- Go 單元測試之mock介面測試GoMock
- 單元測試-mock使用應該注意什麼Mock
- 使用 Moq 測試.NET Core 應用 -- Mock 行為Mock
- 使用 Moq 測試.NET Core 應用 -- Mock 屬性Mock
- 介面測試-使用 mock 生產隨機資料Mock隨機
- 介面測試-使用mock生產隨機資料Mock隨機
- Spring單元測試教程(JUnit5+Mockito)SpringMockito
- 單元測試:單元測試中的mockMock
- go:極簡上手使用 stretchr/testify 進行mock測試GoMock
- 史上最輕量!阿里新型單元測試 Mock 工具開源阿里Mock
- 測試工具-XPath使用
- 如何利用fiddler做mock測試Mock
- APP測試的極簡Mock方法——Mock服務端介面APPMock服務端
- 測試開發工程必備技能之一:Mock的使用Mock
- powerMock和mockito使用Mockito
- Mock測試你的Spring MVC介面MockSpringMVC
- 介面測試工具和使用
- 掌握 xUnit 單元測試中的 Mock 與 Stub 實戰Mock
- JUnit+Mockito單元測試之打樁when().thenReturn();Mockito