From: ChunEon Park Date: Sat, 30 Oct 2010 06:28:07 +0000 (+0900) Subject: TC - ctxpopup X-Git-Tag: sbs-working-i386~94 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18c938e1de679fb99cde8a70d5935ddaf2aff802;p=framework%2Fuifw%2Felementary.git TC - ctxpopup --- diff --git a/TC/elm_ts/ctxpopup/tc_gen.sh b/TC/elm_ts/ctxpopup/tc_gen.sh new file mode 100755 index 0000000..a55200a --- /dev/null +++ b/TC/elm_ts/ctxpopup/tc_gen.sh @@ -0,0 +1,32 @@ +#!/bin/sh + +TMPSTR=$0 +SCRIPT=${TMPSTR##*/} + +if [ $# -lt 3 ]; then + echo "Usage) $SCRIPT module_name winset_name api_name" + exit 1 +fi + +MODULE=$1 +WINSET=$2 +API=$3 +TEMPLATE=utc_MODULE_API_func.c.in +TESTCASE=utc_${MODULE}_${API}_func + +sed -e ' + s^@API@^'"$API"'^g + s^@MODULE@^'"$MODULE"'^g + ' $TEMPLATE > $TESTCASE.c + +if [ ! -e "$TESTCASE.c" ]; then + echo "Failed" + exit 1 +fi + +echo "/elm_ts/$WINSET/$TESTCASE" >> tslist + +echo "Testcase file is $TESTCASE.c" +echo "$TESTCASE is added to tslist" +echo "Done" +echo "please put \"$TESTCASE\" as Target in Makefile" diff --git a/TC/elm_ts/ctxpopup/tet_captured b/TC/elm_ts/ctxpopup/tet_captured new file mode 100644 index 0000000..d68476d --- /dev/null +++ b/TC/elm_ts/ctxpopup/tet_captured @@ -0,0 +1 @@ +make: `utc_UIFW_elm_ctxpopup_item_del_func' is up to date. diff --git a/TC/elm_ts/ctxpopup/tslist b/TC/elm_ts/ctxpopup/tslist new file mode 100644 index 0000000..f2b5efb --- /dev/null +++ b/TC/elm_ts/ctxpopup/tslist @@ -0,0 +1,10 @@ +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_add_func +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_set_func +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_get_func +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_add_func +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_icon_set_func +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_set_func +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_del_func +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_disabled_set_func +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_clear_func +/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_get_func diff --git a/TC/elm_ts/ctxpopup/utc_MODULE_API_func.c.in b/TC/elm_ts/ctxpopup/utc_MODULE_API_func.c.in new file mode 100755 index 0000000..6c6febe --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_MODULE_API_func.c.in @@ -0,0 +1,104 @@ +#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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_@MODULE@_@API@_func_01(void); +static void utc_@MODULE@_@API@_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_@MODULE@_@API@_func_01, POSITIVE_TC_IDX }, + { utc_@MODULE@_@API@_func_02, NEGATIVE_TC_IDX }, + { NULL, 0 } +}; + +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); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of @API@() + */ +static void utc_@MODULE@_@API@_func_01(void) +{ + int r = 0; + +/* + r = @API@(...); +*/ + if (!r) { + tet_infoline("@API@() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init @API@() + */ +static void utc_@MODULE@_@API@_func_02(void) +{ + int r = 0; + +/* + r = @API@(...); +*/ + if (r) { + tet_infoline("@API@() failed in negative test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_add_func b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_add_func new file mode 100755 index 0000000..1d6a695 Binary files /dev/null and b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_add_func differ diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_add_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_add_func.c new file mode 100644 index 0000000..8f07d71 --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_add_func.c @@ -0,0 +1,77 @@ +#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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_add_func_01(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_add_func_01, POSITIVE_TC_IDX }, + { NULL, 0 } +}; + +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); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_ctxpopup_add() + */ +static void utc_UIFW_elm_ctxpopup_add_func_01(void) +{ + elm_ctxpopup_add(main_win); + tet_result(TET_PASS); +} + + diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_clear_func b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_clear_func new file mode 100755 index 0000000..8fc12ae Binary files /dev/null and b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_clear_func differ diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_clear_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_clear_func.c new file mode 100644 index 0000000..dfde42b --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_clear_func.c @@ -0,0 +1,82 @@ +#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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_clear_func_01(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_clear_func_01, POSITIVE_TC_IDX }, + { NULL, 0 } +}; + +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); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_ctxpopup_clear() + */ +static void utc_UIFW_elm_ctxpopup_clear_func_01(void) +{ + Evas_Object *obj = elm_ctxpopup_add(main_win); + Elm_Ctxpopup_Item *item = elm_ctxpopup_item_add(obj, NULL, "TEST", NULL, NULL); + evas_object_show(obj); + elm_ctxpopup_clear(obj); + + tet_result(TET_PASS); +} + + + diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_get_func b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_get_func new file mode 100755 index 0000000..3dd6c33 Binary files /dev/null and b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_get_func differ diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_get_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_get_func.c new file mode 100644 index 0000000..6bbe71e --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_get_func.c @@ -0,0 +1,104 @@ +#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 *ctxpopup; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_horizontal_get_func_01(void); +static void utc_UIFW_elm_ctxpopup_horizontal_get_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_horizontal_get_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_ctxpopup_horizontal_get_func_02, NEGATIVE_TC_IDX }, + { NULL, 0 } +}; + +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); + ctxpopup = elm_ctxpopup_add(main_win); + elm_ctxpopup_horizontal_set(ctxpopup, EINA_TRUE); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_ctxpopup_horizontal_get() + */ +static void utc_UIFW_elm_ctxpopup_horizontal_get_func_01(void) +{ + int r = 0; + r = elm_ctxpopup_horizontal_get(ctxpopup); + + if (!r) { + tet_infoline("elm_ctxpopup_horizontal_get() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_ctxpopup_horizontal_get() + */ +static void utc_UIFW_elm_ctxpopup_horizontal_get_func_02(void) +{ + int r = 0; + + r = elm_ctxpopup_horizontal_get(NULL); + + if (r) { + tet_infoline("elm_ctxpopup_horizontal_get() failed in negative test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_set_func b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_set_func new file mode 100755 index 0000000..095018b Binary files /dev/null and b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_set_func differ diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_set_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_set_func.c new file mode 100644 index 0000000..4c0edc3 --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_horizontal_set_func.c @@ -0,0 +1,78 @@ +#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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_horizontal_set_func_01(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_horizontal_set_func_01, POSITIVE_TC_IDX }, + { NULL, 0 } +}; + +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); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_ctxpopup_horizontal_set() + */ +static void utc_UIFW_elm_ctxpopup_horizontal_set_func_01(void) +{ + Evas_Object *obj = elm_ctxpopup_add(main_win); + elm_ctxpopup_horizontal_set(obj, EINA_TRUE); + tet_result(TET_PASS); +} + + diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_add_func b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_add_func new file mode 100755 index 0000000..b8fde79 Binary files /dev/null and b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_add_func differ diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_add_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_add_func.c new file mode 100644 index 0000000..ece3dc5 --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_add_func.c @@ -0,0 +1,101 @@ +#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 *ctxpopup; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_item_add_func_01(void); +static void utc_UIFW_elm_ctxpopup_item_add_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_item_add_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_ctxpopup_item_add_func_02, NEGATIVE_TC_IDX }, + { NULL, 0 } +}; + +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); + ctxpopup = elm_ctxpopup_add(main_win); + evas_object_show(ctxpopup); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_ctxpopup_item_add() + */ +static void utc_UIFW_elm_ctxpopup_item_add_func_01(void) +{ + Elm_Ctxpopup_Item * item = elm_ctxpopup_item_add(ctxpopup, NULL, "TEST", NULL, NULL ); + + if (!item) { + tet_infoline("elm_ctxpopup_item_add() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_ctxpopup_item_add() + */ +static void utc_UIFW_elm_ctxpopup_item_add_func_02(void) +{ + Elm_Ctxpopup_Item *item = elm_ctxpopup_item_add( NULL, NULL, "TEST", NULL, NULL ); + + if (item) { + tet_infoline("elm_ctxpopup_item_add() failed in negative test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_del_func b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_del_func new file mode 100755 index 0000000..3915e88 Binary files /dev/null and b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_del_func differ diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_del_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_del_func.c new file mode 100644 index 0000000..c746746 --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_del_func.c @@ -0,0 +1,81 @@ +#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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_item_del_func_01(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_item_del_func_01, POSITIVE_TC_IDX }, + { NULL, 0 } +}; + +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); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_ctxpopup_item_del() + */ +static void utc_UIFW_elm_ctxpopup_item_del_func_01(void) +{ + Evas_Object *obj = elm_ctxpopup_add(main_win); + Elm_Ctxpopup_Item *item = elm_ctxpopup_item_add(obj, NULL, "TEST", NULL, NULL); + elm_ctxpopup_item_del(item); + evas_object_show(obj); + + tet_result(TET_PASS); +} + + diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_disabled_set_func b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_disabled_set_func new file mode 100755 index 0000000..5f426a1 Binary files /dev/null and b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_disabled_set_func differ diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_disabled_set_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_disabled_set_func.c new file mode 100644 index 0000000..f9480dc --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_disabled_set_func.c @@ -0,0 +1,80 @@ +#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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_item_disabled_set_func_01(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_item_disabled_set_func_01, POSITIVE_TC_IDX }, + { NULL, 0 } +}; + +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); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_ctxpopup_item_disabled_set() + */ +static void utc_UIFW_elm_ctxpopup_item_disabled_set_func_01(void) +{ + Evas_Object *obj = elm_ctxpopup_add(main_win); + Elm_Ctxpopup_Item *item = elm_ctxpopup_item_add(obj, NULL, "TEST", NULL, NULL); + elm_ctxpopup_item_disabled_set(obj, EINA_TRUE); + evas_object_show(obj); + + tet_result(TET_PASS); +} + diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_icon_set_func b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_icon_set_func new file mode 100755 index 0000000..d596997 Binary files /dev/null and b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_icon_set_func differ diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_icon_set_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_icon_set_func.c new file mode 100644 index 0000000..0a1c66d --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_icon_set_func.c @@ -0,0 +1,80 @@ +#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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_item_icon_set_func_01(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_item_icon_set_func_01, POSITIVE_TC_IDX }, + { NULL, 0 } +}; + +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); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Negative test case of ug_init elm_ctxpopup_item_icon_set() + */ +static void utc_UIFW_elm_ctxpopup_item_icon_set_func_01(void) +{ + Evas_Object *ctxpopup = elm_ctxpopup_add(main_win); + evas_object_show(ctxpopup); + + Elm_Ctxpopup_Item *item = elm_ctxpopup_item_add(ctxpopup, NULL, "Test", NULL, NULL ); + elm_ctxpopup_item_icon_set( item, NULL); + + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_get_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_get_func.c new file mode 100644 index 0000000..e853357 --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_get_func.c @@ -0,0 +1,104 @@ +#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 *ctxpopup; + + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_item_label_get_func_01(void); +static void utc_UIFW_elm_ctxpopup_item_label_get_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_item_label_get_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_ctxpopup_item_label_get_func_02, NEGATIVE_TC_IDX }, + { NULL, 0 } +}; + +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); + ctxpopup = elm_ctxpopup_add(main_win); + evas_object_show(ctxpopup); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_ctxpopup_item_label_get() + */ +static void utc_UIFW_elm_ctxpopup_item_label_get_func_01(void) +{ + Elm_Ctxpopup_Item * item = elm_ctxpopup_item_add(ctxpopup, "TEST", NULL, NULL); + char *label = elm_ctxpopup_item_label_get(item); + + if (strcmp( label, "TEST")) { + tet_infoline("elm_ctxpopup_item_label_get() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_ctxpopup_item_label_get() + */ +static void utc_UIFW_elm_ctxpopup_item_label_get_func_02(void) +{ + Elm_Ctxpopup_Item * item = elm_ctxpopup_item_add(ctxpopup, "TEST", NULL, NULL); + char *label = elm_ctxpopup_item_label_get(NULL); + + if (!strcmp( label, "TEST")) { + tet_infoline("elm_ctxpopup_item_label_get() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_set_func b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_set_func new file mode 100755 index 0000000..2f06617 Binary files /dev/null and b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_set_func differ diff --git a/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_set_func.c b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_set_func.c new file mode 100644 index 0000000..950ae5c --- /dev/null +++ b/TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_set_func.c @@ -0,0 +1,82 @@ +#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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_ctxpopup_item_label_set_func_01(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_ctxpopup_item_label_set_func_01, POSITIVE_TC_IDX }, + { NULL, 0 } +}; + +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); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_ctxpopup_item_label_set() + */ +static void utc_UIFW_elm_ctxpopup_item_label_set_func_01(void) +{ + Evas_Object *obj = elm_ctxpopup_add(main_win); + evas_object_show(obj); + + Elm_Ctxpopup_Item *item = elm_ctxpopup_item_add(obj, NULL, "TEST", NULL, NULL); + elm_ctxpopup_item_label_set( item, "NONE"); + + tet_result(TET_PASS); +} + +