[TC/genlist] Fixed genlist TC.
authorDaniel Juyung Seo <juyung.seo@samsung.com>
Wed, 11 May 2011 04:04:25 +0000 (13:04 +0900)
committerDaniel Juyung Seo <juyung.seo@samsung.com>
Wed, 11 May 2011 04:08:53 +0000 (13:08 +0900)
TC/elm_ts/genlist/Makefile
TC/elm_ts/genlist/tslist
TC/elm_ts/genlist/utc_UIFW_elm_genlist_edit_mode_set_func.c
TC/elm_ts/genlist/utc_UIFW_elm_genlist_edit_selected_items_del_func.c [deleted file]
TC/elm_ts/genlist/utc_UIFW_elm_genlist_edit_selected_items_get_func.c [deleted file]
TC/elm_ts/genlist/utc_UIFW_elm_genlist_item_insert_after_func.c
TC/elm_ts/genlist/utc_UIFW_elm_genlist_item_rename_mode_set_func.c

index a14e09d..f61486d 100755 (executable)
@@ -45,10 +45,25 @@ TARGETS = utc_UIFW_elm_genlist_add_func \
          utc_UIFW_elm_genlist_item_expanded_get_func \
          utc_UIFW_elm_genlist_item_disabled_set_func \
          utc_UIFW_elm_genlist_item_disabled_get_func \
-         utc_UIFW_elm_genlist_item_display_only_set_func
+         utc_UIFW_elm_genlist_item_display_only_set_func \
+         utc_UIFW_elm_genlist_item_display_only_get_func \
+         utc_UIFW_elm_genlist_item_show_func \
+         utc_UIFW_elm_genlist_item_bring_in_func \
+         utc_UIFW_elm_genlist_item_top_show_func \
+         utc_UIFW_elm_genlist_item_top_bring_in_func \
+         utc_UIFW_elm_genlist_item_middle_show_func \
+         utc_UIFW_elm_genlist_item_middle_bring_in_func \
+         utc_UIFW_elm_genlist_item_del_func \
+         utc_UIFW_elm_genlist_item_data_set_func \
+         utc_UIFW_elm_genlist_item_data_get_func \
+         utc_UIFW_elm_genlist_item_update_func \
+         utc_UIFW_elm_genlist_scroller_policy_set_func \
+         utc_UIFW_elm_genlist_edit_mode_set_func \
+         utc_UIFW_elm_genlist_item_expanded_depth_get_func \
+         utc_UIFW_elm_genlist_item_rename_mode_set_func \
+         utc_UIFW_elm_genlist_item_move_after_func
 
-
-PKGS = elementary
+PKGS = elementary evas
 
 LDFLAGS = `pkg-config --libs $(PKGS)`
 LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
@@ -61,8 +76,8 @@ CFLAGS += -Wall
 
 all: $(TARGETS)
 
-$(TARGET): %: %.c
-       $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+$(TARGETS): %: %.c
+       $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
 
 clean:
        rm -f $(TARGETS)
index 3b0b9de..cbfe822 100644 (file)
@@ -57,8 +57,6 @@
 /elm_ts/genlist/utc_UIFW_elm_genlist_item_update_func
 /elm_ts/genlist/utc_UIFW_elm_genlist_scroller_policy_set_func
 /elm_ts/genlist/utc_UIFW_elm_genlist_edit_mode_set_func
-/elm_ts/genlist/utc_UIFW_elm_genlist_edit_selected_items_del_func
-/elm_ts/genlist/utc_UIFW_elm_genlist_edit_selected_items_get_func
 /elm_ts/genlist/utc_UIFW_elm_genlist_item_expanded_depth_get_func
 /elm_ts/genlist/utc_UIFW_elm_genlist_item_rename_mode_set_func
 /elm_ts/genlist/utc_UIFW_elm_genlist_item_move_after_func
index a29cf94..2ef7911 100644 (file)
@@ -96,17 +96,15 @@ static void cleanup(void)
        tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
 }
 
-static Elm_Genlist_Edit_Class ec;
-
 /**
  * @brief Positive test case of elm_genlist_edit_mode_set()
  */
 static void utc_UIFW_elm_genlist_edit_mode_set_func_01(void)
 {
-       ec.move = NULL;
-       ec.item_selected = NULL;
+       itc.func.moved = NULL;
+       itc.edit_item_style = "edit_default";
 
-       elm_genlist_edit_mode_set(genlist, ELM_GENLIST_EDIT_MODE_REORDER | ELM_GENLIST_EDIT_MODE_SELECT, &ec);
+       elm_genlist_edit_mode_set(genlist, EINA_TRUE);
 
        tet_result(TET_PASS);
 }
@@ -116,6 +114,6 @@ static void utc_UIFW_elm_genlist_edit_mode_set_func_01(void)
  */
 static void utc_UIFW_elm_genlist_edit_mode_set_func_02(void)
 {
-       elm_genlist_edit_mode_set(NULL, ELM_GENLIST_EDIT_MODE_NONE, NULL);
+       elm_genlist_edit_mode_set(NULL, EINA_FALSE);
        tet_result(TET_PASS);
 }
diff --git a/TC/elm_ts/genlist/utc_UIFW_elm_genlist_edit_selected_items_del_func.c b/TC/elm_ts/genlist/utc_UIFW_elm_genlist_edit_selected_items_del_func.c
deleted file mode 100644 (file)
index 8145fe4..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-#include <tet_api.h>
-#include <Elementary.h>
-
-// Definitions
-// For checking the result of the positive test case.
-#define TET_CHECK_PASS(x1, y...) \
-{ \
-       Evas_Object *err = y; \
-       if (err == (x1)) \
-               { \
-                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
-                       tet_result(TET_FAIL); \
-                       return; \
-               } \
-}
-
-// For checking the result of the negative test case.
-#define TET_CHECK_FAIL(x1, y...) \
-{ \
-       Evas_Object *err = y; \
-       if (err != (x1)) \
-               { \
-                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
-                       tet_result(TET_FAIL); \
-                       return; \
-               } \
-}
-
-
-Evas_Object *main_win, *genlist;
-static char *Items[] = { "Main Item1", "Main Item 2", "Main Item 3", "Main Item 4", "Main Item 5", "Main Item 6", "Main Item 7", "Main Item 8"  };
-Elm_Genlist_Item_Class itc;
-
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_genlist_edit_selected_items_del_func_01(void);
-static void utc_UIFW_elm_genlist_edit_selected_items_del_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_genlist_edit_selected_items_del_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_genlist_edit_selected_items_del_func_02, NEGATIVE_TC_IDX },
-       { NULL, 0 }
-};
-
-static char *_gl_label_get( const void *data, Evas_Object *obj, const char *part )
-{
-       int index = (int) data;
-
-       if (!strcmp(part, "elm.text")) {
-               return strdup(Items[index]);
-       }
-       return NULL;
-}
-
-static void startup(void)
-{
-       Elm_Genlist_Item *item = NULL;
-       int index = 0;
-       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
-       elm_init(0, NULL);
-       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
-       evas_object_show(main_win);     
-       genlist = elm_genlist_add(main_win);
-       evas_object_show(genlist);
-       elm_win_resize_object_add(main_win, genlist);
-       evas_object_size_hint_align_set(genlist, EVAS_HINT_FILL, EVAS_HINT_FILL);
-       evas_object_size_hint_weight_set(genlist, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-       itc.item_style = "1line_textonly";
-       itc.func.label_get = _gl_label_get;
-       itc.func.icon_get = NULL;
-       itc.func.state_get = NULL;
-       itc.func.del = NULL;
-       for (index = 0; index < 5; index++) {
-               item = elm_genlist_item_append(genlist, &itc, (void *) index, NULL,
-                               ELM_GENLIST_ITEM_NONE, NULL, NULL);
-       }
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-static Elm_Genlist_Edit_Class ec;
-
-/**
- * @brief Positive test case of elm_genlist_edit_selected_items_del()
- */
-static void utc_UIFW_elm_genlist_edit_selected_items_del_func_01(void)
-{
-       ec.move = NULL;
-       ec.item_selected = NULL;
-
-       elm_genlist_edit_mode_set(genlist, ELM_GENLIST_EDIT_MODE_REORDER | ELM_GENLIST_EDIT_MODE_SELECT, &ec);
-       elm_genlist_edit_selected_items_del(genlist);
-
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_genlist_edit_selected_items_del()
- */
-static void utc_UIFW_elm_genlist_edit_selected_items_del_func_02(void)
-{
-       elm_genlist_edit_selected_items_del(NULL);
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/genlist/utc_UIFW_elm_genlist_edit_selected_items_get_func.c b/TC/elm_ts/genlist/utc_UIFW_elm_genlist_edit_selected_items_get_func.c
deleted file mode 100644 (file)
index 7068f3a..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-#include <tet_api.h>
-#include <Elementary.h>
-
-// Definitions
-// For checking the result of the positive test case.
-#define TET_CHECK_PASS(x1, y...) \
-{ \
-       Evas_Object *err = y; \
-       if (err == (x1)) \
-               { \
-                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
-                       tet_result(TET_FAIL); \
-                       return; \
-               } \
-}
-
-// For checking the result of the negative test case.
-#define TET_CHECK_FAIL(x1, y...) \
-{ \
-       Evas_Object *err = y; \
-       if (err != (x1)) \
-               { \
-                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
-                       tet_result(TET_FAIL); \
-                       return; \
-               } \
-}
-
-
-Evas_Object *main_win, *genlist;
-static char *Items[] = { "Main Item1", "Main Item 2", "Main Item 3", "Main Item 4", "Main Item 5", "Main Item 6", "Main Item 7", "Main Item 8"  };
-Elm_Genlist_Item_Class itc;
-
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_genlist_edit_selected_items_get_func_01(void);
-static void utc_UIFW_elm_genlist_edit_selected_items_get_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_genlist_edit_selected_items_get_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_genlist_edit_selected_items_get_func_02, NEGATIVE_TC_IDX },
-       { NULL, 0 }
-};
-
-static char *_gl_label_get( const void *data, Evas_Object *obj, const char *part )
-{
-       int index = (int) data;
-
-       if (!strcmp(part, "elm.text")) {
-               return strdup(Items[index]);
-       }
-       return NULL;
-}
-
-static void startup(void)
-{
-       Elm_Genlist_Item *item = NULL;
-       int index = 0;
-       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
-       elm_init(0, NULL);
-       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
-       evas_object_show(main_win);     
-       genlist = elm_genlist_add(main_win);
-       evas_object_show(genlist);
-       elm_win_resize_object_add(main_win, genlist);
-       evas_object_size_hint_align_set(genlist, EVAS_HINT_FILL, EVAS_HINT_FILL);
-       evas_object_size_hint_weight_set(genlist, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-       itc.item_style = "1line_textonly";
-       itc.func.label_get = _gl_label_get;
-       itc.func.icon_get = NULL;
-       itc.func.state_get = NULL;
-       itc.func.del = NULL;
-       for (index = 0; index < 5; index++) {
-               item = elm_genlist_item_append(genlist, &itc, (void *) index, NULL,
-                               ELM_GENLIST_ITEM_NONE, NULL, NULL);
-       }
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-static Elm_Genlist_Edit_Class ec;
-
-/**
- * @brief Positive test case of elm_genlist_edit_selected_items_get()
- */
-static void utc_UIFW_elm_genlist_edit_selected_items_get_func_01(void)
-{
-       ec.move = NULL;
-       ec.item_selected = NULL;
-
-       elm_genlist_edit_mode_set(genlist, ELM_GENLIST_EDIT_MODE_REORDER | ELM_GENLIST_EDIT_MODE_SELECT, &ec);
-       elm_genlist_edit_selected_items_get(genlist);
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_genlist_edit_selected_items_get()
- */
-static void utc_UIFW_elm_genlist_edit_selected_items_get_func_02(void)
-{
-       elm_genlist_edit_selected_items_get(NULL);
-       tet_result(TET_PASS);
-}
index bfd4533..bf7ad43 100644 (file)
@@ -106,10 +106,10 @@ static void utc_UIFW_elm_genlist_item_insert_after_func_02(void)
 {
    Elm_Genlist_Item *item = NULL, *result_item = NULL;
 
-   item = elm_genlist_item_append(genlist, &itc, (void *) 0, NULL, NULL,
+   item = elm_genlist_item_append(genlist, &itc, (void *) 0, NULL,
                        ELM_GENLIST_ITEM_NONE, NULL, NULL);   
    
-       result_item = elm_genlist_item_insert_after(NULL, &itc, (void *) 0, NULL, NULL,
+       result_item = elm_genlist_item_insert_after(NULL, &itc, (void *) 0, NULL, item,
                        ELM_GENLIST_ITEM_NONE, NULL, NULL);
 
        if (result_item) {
index 5d2c11d..185cfc8 100644 (file)
@@ -96,8 +96,6 @@ static void cleanup(void)
        tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
 }
 
-static Elm_Genlist_Edit_Class ec;
-
 /**
  * @brief Positive test case of elm_genlist_item_rename_mode_set()
  */
@@ -105,7 +103,6 @@ static void utc_UIFW_elm_genlist_item_rename_mode_set_func_01(void)
 {
        Elm_Genlist_Item *it = NULL;
 
-       elm_genlist_edit_mode_set(genlist, ELM_GENLIST_EDIT_MODE_REORDER | ELM_GENLIST_EDIT_MODE_SELECT, &ec);
        it = elm_genlist_item_append(genlist, &itc, NULL, NULL, ELM_GENLIST_ITEM_NONE, NULL, NULL);
        elm_genlist_item_rename_mode_set(it, EINA_TRUE);
        tet_result(TET_PASS);
@@ -116,7 +113,6 @@ static void utc_UIFW_elm_genlist_item_rename_mode_set_func_01(void)
  */
 static void utc_UIFW_elm_genlist_item_rename_mode_set_func_02(void)
 {
-       elm_genlist_edit_mode_set(genlist, ELM_GENLIST_EDIT_MODE_REORDER | ELM_GENLIST_EDIT_MODE_SELECT, &ec);
        elm_genlist_item_rename_mode_set(NULL, EINA_FALSE);
        tet_result(TET_PASS);
 }