All files / src/ui/core zcl_abapgit_html.clas.testclasses.abap

100% Statements 259/259
100% Branches 12/12
100% Functions 12/12
100% Lines 259/259

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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 2601x 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 11x 11x 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 lcl_good_renderable DEFINITION FINAL.
  PUBLIC SECTION.
    INTERFACES zif_abapgit_gui_renderable.
ENDCLASS.
CLASS lcl_good_renderable IMPLEMENTATION.
  METHOD zif_abapgit_gui_renderable~render.
    ri_html = zcl_abapgit_html=>create( 'Hello' ).
  ENDMETHOD.
ENDCLASS.
 
CLASS lcl_bad_renderable DEFINITION FINAL.
  PUBLIC SECTION.
    INTERFACES zif_abapgit_gui_renderable.
ENDCLASS.
CLASS lcl_bad_renderable IMPLEMENTATION.
  METHOD zif_abapgit_gui_renderable~render.
    zcx_abapgit_exception=>raise( 'Fail!' ).
  ENDMETHOD.
ENDCLASS.
 
CLASS ltcl_html DEFINITION FOR TESTING DURATION SHORT RISK LEVEL HARMLESS.
 
  PRIVATE SECTION.
    DATA mo_html TYPE REF TO zif_abapgit_html.
 
    METHODS:
      wrap    FOR TESTING RAISING zcx_abapgit_exception,
      add_renderable FOR TESTING RAISING zcx_abapgit_exception,
      td      FOR TESTING RAISING zcx_abapgit_exception,
      th      FOR TESTING RAISING zcx_abapgit_exception,
      wrap_ii FOR TESTING RAISING zcx_abapgit_exception,
      indent1 FOR TESTING RAISING zcx_abapgit_exception,
      indent2 FOR TESTING RAISING zcx_abapgit_exception,
      indent3 FOR TESTING RAISING zcx_abapgit_exception,
      indent4 FOR TESTING RAISING zcx_abapgit_exception,
      indent5 FOR TESTING RAISING zcx_abapgit_exception,
      style1  FOR TESTING RAISING zcx_abapgit_exception.
 
    METHODS:
      setup.
 
ENDCLASS.
 
 
CLASS ltcl_html IMPLEMENTATION.
 
  METHOD setup.
    CREATE OBJECT mo_html TYPE zcl_abapgit_html.
  ENDMETHOD.
 
  METHOD indent1.
 
    DATA lv_exp TYPE string.
 
    mo_html->add( '<td>' ).
    mo_html->add( 'hello world' ).
    mo_html->add( '</td>' ).
 
    lv_exp = '<td>' && cl_abap_char_utilities=>newline &&
             '  hello world' && cl_abap_char_utilities=>newline &&
             '</td>'.
 
    cl_abap_unit_assert=>assert_equals(
      act = mo_html->render( )
      exp = lv_exp ).
 
  ENDMETHOD.
 
  METHOD indent2.
 
    DATA lv_exp TYPE string.
 
    mo_html->add( '<td>' ).
    mo_html->add( '<input name="comment" type="text">' ).
    mo_html->add( '</td>' ).
 
    lv_exp = '<td>' && cl_abap_char_utilities=>newline &&
             '  <input name="comment" type="text">' && cl_abap_char_utilities=>newline &&
             '</td>'.
 
    cl_abap_unit_assert=>assert_equals(
      act = mo_html->render( )
      exp = lv_exp ).
 
  ENDMETHOD.
 
  METHOD indent3.
 
    DATA lv_exp TYPE string.
 
    mo_html->add( '<td>' ).
    mo_html->add( '<textarea name="body" rows="10" cols="72"></textarea>' ).
    mo_html->add( '</td>' ).
 
    lv_exp = '<td>' && cl_abap_char_utilities=>newline &&
             '  <textarea name="body" rows="10" cols="72"></textarea>' && cl_abap_char_utilities=>newline &&
             '</td>'.
 
    cl_abap_unit_assert=>assert_equals(
      act = mo_html->render( )
      exp = lv_exp ).
 
  ENDMETHOD.
 
  METHOD indent4.
 
    DATA lv_exp TYPE string.
 
    mo_html->add( '<td>' ).
    mo_html->add( 'foo<br>bar' ).
    mo_html->add( '</td>' ).
 
    lv_exp = '<td>' && cl_abap_char_utilities=>newline &&
             '  foo<br>bar' && cl_abap_char_utilities=>newline &&
             '</td>'.
 
    cl_abap_unit_assert=>assert_equals(
      act = mo_html->render( )
      exp = lv_exp ).
 
  ENDMETHOD.
 
  METHOD indent5.
* don't dump if something messes up or the nesting gets too wide
    DO 300 TIMES.
      mo_html->add( '<td>' ).
    ENDDO.
 
    mo_html->render( ).
 
  ENDMETHOD.
 
  METHOD style1.
 
    DATA lv_exp TYPE string.
 
    mo_html->add( '<style type="text/css">' ).
    mo_html->add( '.class1 { color: red }' ).
    mo_html->add( '.class2 {' ).
    mo_html->add( 'color: red' ).
    mo_html->add( '}' ).
    mo_html->add( '</style>' ).
 
    lv_exp = '<style type="text/css">' && cl_abap_char_utilities=>newline &&
             '  .class1 { color: red }' && cl_abap_char_utilities=>newline &&
             '  .class2 {' && cl_abap_char_utilities=>newline &&
             '    color: red' && cl_abap_char_utilities=>newline &&
             '  }' && cl_abap_char_utilities=>newline &&
             '</style>'.
 
    cl_abap_unit_assert=>assert_equals(
      act = mo_html->render( )
      exp = lv_exp ).
 
  ENDMETHOD.
 
  METHOD td.
 
    mo_html->td( 'Hello' ).
    mo_html->td(
      iv_format_single_line = abap_false
      iv_content = 'Hello' ).
    cl_abap_unit_assert=>assert_equals(
      act = mo_html->render( )
      exp =
        '<td>Hello</td>' && cl_abap_char_utilities=>newline &&
        '<td>' && cl_abap_char_utilities=>newline &&
        '  Hello' && cl_abap_char_utilities=>newline &&
        '</td>' ).
 
  ENDMETHOD.
 
  METHOD th.
 
    mo_html->th( 'Hello' ).
    mo_html->th(
      iv_format_single_line = abap_false
      iv_content = 'Hello' ).
    cl_abap_unit_assert=>assert_equals(
      act = mo_html->render( )
      exp =
        '<th>Hello</th>' && cl_abap_char_utilities=>newline &&
        '<th>' && cl_abap_char_utilities=>newline &&
        '  Hello' && cl_abap_char_utilities=>newline &&
        '</th>' ).
 
  ENDMETHOD.
 
  METHOD wrap_ii.
 
    mo_html->wrap(
      iv_tag     = 'td'
      ii_content = zcl_abapgit_html=>create( )->add( 'Hello' ) ).
 
    cl_abap_unit_assert=>assert_equals(
      act = mo_html->render( )
      exp =
        '<td>' && cl_abap_char_utilities=>newline &&
        '  Hello' && cl_abap_char_utilities=>newline &&
        '</td>' ).
 
  ENDMETHOD.
 
  METHOD wrap.
 
    mo_html->wrap( 'td' ).
    mo_html->wrap(
      iv_tag     = 'td'
      iv_content = 'Hello' ).
    mo_html->wrap(
      iv_tag     = 'td'
      iv_class   = 'class'
      iv_hint    = 'hint'
      iv_id      = 'id'
      iv_content = 'Hello' ).
    mo_html->wrap(
      iv_tag     = 'td'
      iv_content = 'Hello'
      iv_format_single_line = abap_true ).
    mo_html->wrap(
      iv_tag     = 'td'
      iv_content = 'Hello'
      is_data_attr = zcl_abapgit_html=>parse_data_attr( 'id=123' )
      iv_format_single_line = abap_true ).
 
    cl_abap_unit_assert=>assert_equals(
      act = mo_html->render( )
      exp =
        |<td></td>\n| &&
        |<td>\n| &&
        |  Hello\n| &&
        |</td>\n| &&
        |<td id="id" class="class" title="hint">\n| &&
        |  Hello\n| &&
        |</td>\n| &&
        |<td>Hello</td>\n| &&
        |<td data-id="123">Hello</td>| ).
 
  ENDMETHOD.
 
  METHOD add_renderable.
 
    DATA lo_good TYPE REF TO lcl_good_renderable.
    DATA lo_bad TYPE REF TO lcl_bad_renderable.
 
    CREATE OBJECT lo_good.
    CREATE OBJECT lo_bad.
 
    cl_abap_unit_assert=>assert_equals(
      act = zcl_abapgit_html=>create( lo_good )->render( )
      exp = 'Hello' ).
 
    cl_abap_unit_assert=>assert_char_cp(
      act = zcl_abapgit_html=>create( lo_bad )->render( )
      exp = '<span*Fail!*' ).
 
  ENDMETHOD.
 
ENDCLASS.