Evas tests: Fixed the cursor_content_get to comply to the bugfix.
authorTom Hacohen <tom@stosb.com>
Sun, 14 Aug 2011 11:26:50 +0000 (11:26 +0000)
committerTom Hacohen <tom@stosb.com>
Sun, 14 Aug 2011 11:26:50 +0000 (11:26 +0000)
Previous test checked the existing but broken behaviour, now it checks the
correct behaviour.

SVN revision: 62440

legacy/evas/src/tests/evas_test_textblock.c

index 3bd5d6555a35760b3eb3d2224fc9d52b51015bc2..d868080107f6a34d3b4691205e376f8564f4a4cf 100644 (file)
@@ -308,7 +308,7 @@ START_TEST(evas_textblock_cursor)
    evas_textblock_cursor_pos_set(cur, 0);
    fail_if(strcmp(evas_textblock_cursor_content_get(cur), "T"));
    evas_textblock_cursor_pos_set(cur, 9);
-   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "br"));
+   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "<br>"));
    evas_textblock_cursor_pos_set(cur, 43);
    fail_if(strcmp(evas_textblock_cursor_content_get(cur), "ד"));
 
@@ -1708,29 +1708,25 @@ START_TEST(evas_textblock_formats)
    evas_object_textblock_text_markup_set(tb, "<ps>a<br>a<tab>a<item></>");
    fail_if(strcmp(evas_textblock_node_format_text_get(
                evas_textblock_cursor_format_get(cur)), "ps"));
-   /* FIXME: Current behavior makes it return "ps" instead of the actual
-    * utf8 value of the ps (same goes to "+ item" instead of the object
-    * replacement char) which is bad, but I guess I can't break API, so
-    * this is ensuring that this possibly unwanted behavior works. */
-   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "ps"));
+   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "<ps>"));
    fail_if(!evas_textblock_cursor_format_is_visible_get(cur));
    fail_if(!evas_textblock_cursor_char_next(cur));
    fail_if(!evas_textblock_cursor_char_next(cur));
    fail_if(strcmp(evas_textblock_node_format_text_get(
                evas_textblock_cursor_format_get(cur)), "br"));
-   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "br"));
+   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "<br>"));
    fail_if(!evas_textblock_cursor_format_is_visible_get(cur));
    fail_if(!evas_textblock_cursor_char_next(cur));
    fail_if(!evas_textblock_cursor_char_next(cur));
    fail_if(strcmp(evas_textblock_node_format_text_get(
                evas_textblock_cursor_format_get(cur)), "tab"));
-   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "tab"));
+   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "<tab>"));
    fail_if(!evas_textblock_cursor_format_is_visible_get(cur));
    fail_if(!evas_textblock_cursor_char_next(cur));
    fail_if(!evas_textblock_cursor_char_next(cur));
    fail_if(strcmp(evas_textblock_node_format_text_get(
                evas_textblock_cursor_format_get(cur)), "+ item"));
-   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "+ item"));
+   fail_if(strcmp(evas_textblock_cursor_content_get(cur), "<item>"));
    fail_if(!evas_textblock_cursor_format_is_visible_get(cur));
 
    END_TB_TEST();