All files / src/repo/utils zcl_abapgit_repo_item_state.clas.testclasses.abap

100% Statements 230/230
100% Branches 2/2
100% Functions 2/2
100% Lines 230/230

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 2311x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
CLASS ltcl_state_test DEFINITION FINAL
  FOR TESTING
  RISK LEVEL HARMLESS
  DURATION SHORT.
  PRIVATE SECTION.
    METHODS test_sum_with_status FOR TESTING.
    METHODS test_sum_with_ritem FOR TESTING.
ENDCLASS.
 
CLASS ltcl_state_test IMPLEMENTATION.
  METHOD test_sum_with_status.
 
    DATA ls_item TYPE zif_abapgit_definitions=>ty_result.
    DATA lo_cut TYPE REF TO zcl_abapgit_repo_item_state.
 
    CREATE OBJECT lo_cut.
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-unchanged ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-unchanged ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_false ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_true ).
 
    ls_item-lstate = zif_abapgit_definitions=>c_state-added.
    ls_item-rstate = zif_abapgit_definitions=>c_state-deleted.
    lo_cut->sum_with_status_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-deleted ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_false ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
    " Similar state
    ls_item-lstate = zif_abapgit_definitions=>c_state-added.
    ls_item-rstate = zif_abapgit_definitions=>c_state-deleted.
    lo_cut->sum_with_status_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-deleted ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_false ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
    ls_item-lstate = zif_abapgit_definitions=>c_state-unchanged.
    ls_item-rstate = zif_abapgit_definitions=>c_state-added.
    lo_cut->sum_with_status_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ). " Unchanged does not update state
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-mixed ). " Mixed
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_false ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
    ls_item-lstate = zif_abapgit_definitions=>c_state-unchanged.
    ls_item-rstate = zif_abapgit_definitions=>c_state-added.
    ls_item-packmove = abap_true.
    lo_cut->sum_with_status_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-mixed ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_true ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
    ls_item-lstate = zif_abapgit_definitions=>c_state-unchanged.
    ls_item-rstate = zif_abapgit_definitions=>c_state-added.
    ls_item-packmove = abap_false.
    lo_cut->sum_with_status_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-mixed ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_true ). " does not reset
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
  ENDMETHOD.
 
  METHOD test_sum_with_ritem.
 
    DATA ls_item TYPE zif_abapgit_definitions=>ty_repo_item.
    DATA lo_cut TYPE REF TO zcl_abapgit_repo_item_state.
 
    CREATE OBJECT lo_cut.
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-unchanged ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-unchanged ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_false ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_true ).
 
    ls_item-lstate = zif_abapgit_definitions=>c_state-added.
    ls_item-rstate = zif_abapgit_definitions=>c_state-deleted.
    lo_cut->sum_with_repo_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-deleted ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_false ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
    " Similar state
    ls_item-lstate = zif_abapgit_definitions=>c_state-added.
    ls_item-rstate = zif_abapgit_definitions=>c_state-deleted.
    lo_cut->sum_with_repo_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-deleted ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_false ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
    ls_item-lstate = zif_abapgit_definitions=>c_state-unchanged.
    ls_item-rstate = zif_abapgit_definitions=>c_state-added.
    lo_cut->sum_with_repo_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ). " Unchanged does not update state
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-mixed ). " Mixed
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_false ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
    ls_item-lstate = zif_abapgit_definitions=>c_state-unchanged.
    ls_item-rstate = zif_abapgit_definitions=>c_state-added.
    ls_item-packmove = abap_true.
    lo_cut->sum_with_repo_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-mixed ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_true ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
    ls_item-lstate = zif_abapgit_definitions=>c_state-unchanged.
    ls_item-rstate = zif_abapgit_definitions=>c_state-added.
    ls_item-packmove = abap_false.
    lo_cut->sum_with_repo_item( ls_item ).
 
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->local( )
      exp = zif_abapgit_definitions=>c_state-added ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->remote( )
      exp = zif_abapgit_definitions=>c_state-mixed ).
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_reassigned( )
      exp = abap_true ). " does not reset
    cl_abap_unit_assert=>assert_equals(
      act = lo_cut->is_unchanged( )
      exp = abap_false ).
 
  ENDMETHOD.
ENDCLASS.