mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 13:03:01 +08:00

* change function module call to method call * add test case for valid XSTRING value Co-authored-by: Lars Hvam <larshp@hotmail.com>
74 lines
1.6 KiB
ABAP
74 lines
1.6 KiB
ABAP
|
|
CLASS ltcl_test DEFINITION FOR TESTING
|
|
DURATION SHORT
|
|
RISK LEVEL HARMLESS FINAL.
|
|
|
|
PRIVATE SECTION.
|
|
METHODS:
|
|
adler32 FOR TESTING,
|
|
sha1 FOR TESTING RAISING zcx_abapgit_exception,
|
|
sha1_raw_valid FOR TESTING RAISING zcx_abapgit_exception,
|
|
sha1_raw_invalid FOR TESTING RAISING zcx_abapgit_exception.
|
|
|
|
ENDCLASS.
|
|
|
|
|
|
CLASS ltcl_test IMPLEMENTATION.
|
|
|
|
METHOD adler32.
|
|
|
|
DATA: lv_adler TYPE zif_abapgit_definitions=>ty_adler32.
|
|
|
|
lv_adler = zcl_abapgit_hash=>adler32( '1122334455667788' ).
|
|
|
|
cl_abap_unit_assert=>assert_equals(
|
|
act = lv_adler
|
|
exp = '08000265' ).
|
|
|
|
ENDMETHOD.
|
|
|
|
METHOD sha1.
|
|
|
|
DATA: lv_sha1 TYPE zif_abapgit_definitions=>ty_sha1.
|
|
|
|
lv_sha1 = zcl_abapgit_hash=>sha1(
|
|
iv_type = zif_abapgit_definitions=>c_type-commit
|
|
iv_data = '112211221122' ).
|
|
|
|
cl_abap_unit_assert=>assert_equals(
|
|
act = lv_sha1
|
|
exp = 'af2261a340c5188baf86a64a581d22012303023c' ).
|
|
|
|
ENDMETHOD.
|
|
|
|
|
|
METHOD sha1_raw_valid.
|
|
|
|
DATA: lv_sha1 TYPE zif_abapgit_definitions=>ty_sha1,
|
|
lv_input TYPE xstring.
|
|
|
|
lv_input = 'C5188BAF86A64A581D2201'.
|
|
lv_sha1 = zcl_abapgit_hash=>sha1_raw( lv_input ).
|
|
|
|
cl_abap_unit_assert=>assert_equals(
|
|
act = lv_sha1
|
|
exp = '0ec2eba75071f87988ced3237cae5ec7c5efd795' ).
|
|
|
|
ENDMETHOD.
|
|
|
|
METHOD sha1_raw_invalid.
|
|
|
|
DATA: lv_sha1 TYPE zif_abapgit_definitions=>ty_sha1,
|
|
lv_input TYPE xstring.
|
|
|
|
lv_input = 'LOREM_IPSUM'.
|
|
lv_sha1 = zcl_abapgit_hash=>sha1_raw( lv_input ).
|
|
|
|
cl_abap_unit_assert=>assert_equals(
|
|
act = lv_sha1
|
|
exp = 'da39a3ee5e6b4b0d3255bfef95601890afd80709' ).
|
|
|
|
ENDMETHOD.
|
|
|
|
ENDCLASS.
|