前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >An example of unit test on Web UI component context node class

An example of unit test on Web UI component context node class

作者头像
Jerry Wang
发布2020-01-21 15:20:45
2950
发布2020-01-21 15:20:45
举报

Prerequisite

You should be familiar with how to work with ABAP unit test framework. Requirement is to write unit test for this method below:

I copy the standard class CL_PRDTXT_TEXTCUCO_CN02 into a local class ZCL_PRDTXT_TEXTCUCO_CN02 and generate test class based on the latter. The same approach could be applied to the standard class for sure. Create local unit test class for it via wizard:

Here below is automatically generated code:

Since usually we will manipulate private attributes of CUT ( class under test ) so insert the following code into header part of local test class, so that local test class can modify private attributes of CUT.

First attempt

When performing unit test for the first time, the statement coverage is extremely low:

Check the source code of tested method, the reason is in our local test class, we didn’t pass a valid value for parameter FOCUS_BO, so the method directly return when its first line is executed.

Solution

I plan to pass a fake bol entity for parameter FOCUS_BO. Then I construct it in method class_setup:

代码语言:javascript
复制
METHOD class_setup.
    lo_prod = zcl_prod_unit_test_tool=>get_fake_bol_entity(
       iv_bol_name = 'Product'
       is_data = get_sample_data( )
       iv_key = get_sample_data( )-product_guid ).

  ENDMETHOD.

METHOD get_sample_data.
    rs_data = VALUE #( product_guid = '0123456789123456' product_id = 'I042416' product_type = '01' ).
  ENDMETHOD.
Now the local test class method is changed as below:
METHOD on_new_focus.
    DATA focus_bo TYPE REF TO if_bol_bo_property_access.

    focus_bo ?= lo_prod.
    f_cut->on_new_focus( focus_bo ).
  ENDMETHOD.

Second attempt

When I run unit test, it fails this time with following error message:

The reason is in line 42, the method being tested tries to read product with a valid guid, unfortunately in my test code I have passed a fake guid ‘0123456789123456’, thus not_found exception is raised.

Solution

Change get_sample_data in local test class as below, which can ensure the product_guid is always valid since it is read from DB table.

代码语言:javascript
复制
METHOD get_sample_data.
    DATA:ls_prod TYPE comm_product.
    SELECT SINGLE * INTO ls_prod FROM comm_product WHERE product_type = '01'.
    rs_data = VALUE #( product_guid = ls_prod-product_guid product_id = ls_prod-product_id product_type = '01' ).
  ENDMETHOD.

Third attempt

Now the unit test could pass successfully, however still some statement is not executed at all.

Those unreached statements are marked as red. The reason is there is no entity contained in collection wrapper.

Solution

Create a new method in test class:

代码语言:javascript
复制
METHOD create_wrapper.
    DATA: lr_attr TYPE REF TO crmst_uiu_text_attr.

    CREATE DATA lr_attr.

    DATA(lr_value) = NEW cl_bsp_wd_value_node( lr_attr ).
    CREATE OBJECT f_cut->collection_wrapper.

    f_cut->collection_wrapper->add( lr_value ).
  ENDMETHOD.

And call it in set_up method:

代码语言:javascript
复制
METHOD setup.
    CREATE OBJECT f_cut.
    create_wrapper( ).
  ENDMETHOD.

Finally, the unit test is finished successfully and all executable statements have been covered:

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-01-01 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Prerequisite
  • First attempt
  • Solution
  • Second attempt
  • Solution
  • Third attempt
  • Solution
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档