From: tasn Date: Sun, 14 Aug 2011 11:26:50 +0000 (+0000) Subject: Evas tests: Fixed the cursor_content_get to comply to the bugfix. X-Git-Tag: accepted/2.0/20130306.225542~242^2~128 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a2495484496ad03cc1c14c3b235d9521636eaa4c;p=profile%2Fivi%2Fevas.git Evas tests: Fixed the cursor_content_get to comply to the bugfix. Previous test checked the existing but broken behaviour, now it checks the correct behaviour. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@62440 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/tests/evas_test_textblock.c b/src/tests/evas_test_textblock.c index 3bd5d65..d868080 100644 --- a/src/tests/evas_test_textblock.c +++ b/src/tests/evas_test_textblock.c @@ -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), "
")); 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, "a
aa"); 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), "")); 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), "
")); 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), "")); 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), "")); fail_if(!evas_textblock_cursor_format_is_visible_get(cur)); END_TB_TEST();