From 7f6fd753e80f105d9c9a2529703373f6dca752dd Mon Sep 17 00:00:00 2001 From: WooHyun Jung Date: Fri, 1 Oct 2010 17:32:50 +0900 Subject: [PATCH] [TC-dialoguegroup] added --- TC/elm_ts/dialoguegroup/Makefile | 4 +- TC/elm_ts/dialoguegroup/tslist | 2 + .../utc_UIFW_elm_dialoguegroup_insert_after_func.c | 116 +++++++++++++++++++++ ...utc_UIFW_elm_dialoguegroup_insert_before_func.c | 115 ++++++++++++++++++++ 4 files changed, 236 insertions(+), 1 deletion(-) create mode 100644 TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_after_func.c create mode 100644 TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func.c diff --git a/TC/elm_ts/dialoguegroup/Makefile b/TC/elm_ts/dialoguegroup/Makefile index db4e168..3dd1ae2 100755 --- a/TC/elm_ts/dialoguegroup/Makefile +++ b/TC/elm_ts/dialoguegroup/Makefile @@ -2,7 +2,9 @@ CC ?= gcc TARGETS = utc_UIFW_elm_dialoguegroup_add_func \ utc_UIFW_elm_dialoguegroup_prepend_func \ - utc_UIFW_elm_dialoguegroup_append_func + utc_UIFW_elm_dialoguegroup_append_func \ + utc_UIFW_elm_dialoguegroup_insert_after_func \ + utc_UIFW_elm_dialoguegroup_insert_before_func PKGS = elementary diff --git a/TC/elm_ts/dialoguegroup/tslist b/TC/elm_ts/dialoguegroup/tslist index b61fa84..a829d97 100644 --- a/TC/elm_ts/dialoguegroup/tslist +++ b/TC/elm_ts/dialoguegroup/tslist @@ -1,3 +1,5 @@ /elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_add_func /elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_append_func /elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_prepend_func +/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_after_func +/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_after_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_after_func.c new file mode 100644 index 0000000..88676ab --- /dev/null +++ b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_after_func.c @@ -0,0 +1,116 @@ +#include +#include + +// 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; +Evas_Object *dg; +Evas_Object *ly; +Dialogue_Item *after; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_dialoguegroup_insert_after_func_01(void); +static void utc_UIFW_elm_dialoguegroup_insert_after_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_dialoguegroup_insert_after_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_dialoguegroup_insert_after_func_02, NEGATIVE_TC_IDX }, +}; + +static void startup(void) +{ + tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ "); + elm_init(0, NULL); + main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); + evas_object_show(main_win); + dg = elm_dialoguegroup_add(main_win); + evas_object_show(dg); + ly = elm_layout_add(main_win); + after = elm_dialoguegroup_append(dg, ly, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + if ( NULL != dg ) { + evas_object_del(dg); + dg = NULL; + } + if ( NULL != ly) { + evas_object_del(ly); + ly = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_dialoguegroup_insert_after() + */ +static void utc_UIFW_elm_dialoguegroup_insert_after_func_01(void) +{ + Dialogue_Item *r = NULL; + Evas_Object *layout = NULL; + layout = elm_layout_add(main_win); + r = elm_dialoguegroup_insert_after(dg, layout, after, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT); + + if (!r) { + tet_infoline("elm_dialoguegroup_insert_after() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_dialoguegroup_insert_after() + */ +static void utc_UIFW_elm_dialoguegroup_insert_after_func_02(void) +{ + Dialogue_Item *r = NULL; + r = elm_dialoguegroup_insert_after(dg, NULL, after, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT); + + if (r) { + tet_infoline("elm_dialoguegroup_insert_after() failed in negative test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func.c new file mode 100644 index 0000000..79f3b54 --- /dev/null +++ b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func.c @@ -0,0 +1,115 @@ +#include +#include + +// 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; +Evas_Object *dg; +Evas_Object *ly; +Dialogue_Item *before; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_dialoguegroup_insert_before_func_01(void); +static void utc_UIFW_elm_dialoguegroup_insert_before_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_dialoguegroup_insert_before_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_dialoguegroup_insert_before_func_02, NEGATIVE_TC_IDX }, +}; + +static void startup(void) +{ + tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ "); + elm_init(0, NULL); + main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); + evas_object_show(main_win); + dg = elm_dialoguegroup_add(main_win); + evas_object_show(dg); + ly = elm_layout_add(main_win); + before = elm_dialoguegroup_append(dg, ly, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + if ( NULL != dg ) { + evas_object_del(dg); + dg = NULL; + } + if ( NULL != ly) { + evas_object_del(ly); + ly = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_dialoguegroup_insert_before() + */ +static void utc_UIFW_elm_dialoguegroup_insert_before_func_01(void) +{ + Dialogue_Item *r = NULL; + Evas_Object *layout = NULL; + layout = elm_layout_add(main_win); + r = elm_dialoguegroup_insert_before(dg, layout, before, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT); + + if (!r) { + tet_infoline("elm_dialoguegroup_insert_before() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_dialoguegroup_insert_before() + */ +static void utc_UIFW_elm_dialoguegroup_insert_before_func_02(void) +{ + Dialogue_Item *r = NULL; + r = elm_dialoguegroup_insert_before(dg, NULL, before, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT); + + if (r) { + tet_infoline("elm_dialoguegroup_insert_before() failed in negative test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} -- 2.7.4