From 4515ef417fd506fbc646406e042a9c09225ebc68 Mon Sep 17 00:00:00 2001 From: MyoungWoon Roy Kim Date: Mon, 25 Oct 2010 17:40:22 +0900 Subject: [PATCH] [Box] Add unit test cases for Box widget. --- TC/elm_ts/box/tc_gen.sh | 32 +++++++ TC/elm_ts/box/tslist | 10 ++ TC/elm_ts/box/utc_MODULE_API_func.c.in | 104 +++++++++++++++++++++ TC/elm_ts/box/utc_UIFW_elm_box_add_func.c | 98 +++++++++++++++++++ TC/elm_ts/box/utc_UIFW_elm_box_clear_func.c | 99 ++++++++++++++++++++ TC/elm_ts/box/utc_UIFW_elm_box_extended_set_func.c | 102 ++++++++++++++++++++ .../box/utc_UIFW_elm_box_homogenous_set_func.c | 102 ++++++++++++++++++++ .../box/utc_UIFW_elm_box_horizontal_set_func.c | 102 ++++++++++++++++++++ TC/elm_ts/box/utc_UIFW_elm_box_pack_after_func.c | 101 ++++++++++++++++++++ TC/elm_ts/box/utc_UIFW_elm_box_pack_before_func.c | 100 ++++++++++++++++++++ TC/elm_ts/box/utc_UIFW_elm_box_pack_end_func.c | 100 ++++++++++++++++++++ TC/elm_ts/box/utc_UIFW_elm_box_pack_start_func.c | 100 ++++++++++++++++++++ TC/elm_ts/box/utc_UIFW_elm_box_unpack_all_func.c | 102 ++++++++++++++++++++ TC/elm_ts/box/utc_UIFW_elm_box_unpack_func.c | 101 ++++++++++++++++++++ 14 files changed, 1253 insertions(+) create mode 100755 TC/elm_ts/box/tc_gen.sh create mode 100644 TC/elm_ts/box/tslist create mode 100755 TC/elm_ts/box/utc_MODULE_API_func.c.in create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_add_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_clear_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_extended_set_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_homogenous_set_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_horizontal_set_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_pack_after_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_pack_before_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_pack_end_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_pack_start_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_unpack_all_func.c create mode 100644 TC/elm_ts/box/utc_UIFW_elm_box_unpack_func.c diff --git a/TC/elm_ts/box/tc_gen.sh b/TC/elm_ts/box/tc_gen.sh new file mode 100755 index 0000000..a55200a --- /dev/null +++ b/TC/elm_ts/box/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/box/tslist b/TC/elm_ts/box/tslist new file mode 100644 index 0000000..a84874d --- /dev/null +++ b/TC/elm_ts/box/tslist @@ -0,0 +1,10 @@ +/elm_ts/box/utc_UIFW_elm_box_add_func +/elm_ts/box/utc_UIFW_elm_box_horizontal_set_func +/elm_ts/box/utc_UIFW_elm_box_homogenous_set_func +/elm_ts/box/utc_UIFW_elm_box_pack_start_func +/elm_ts/box/utc_UIFW_elm_box_pack_end_func +/elm_ts/box/utc_UIFW_elm_box_pack_before_func +/elm_ts/box/utc_UIFW_elm_box_pack_after_func +/elm_ts/box/utc_UIFW_elm_box_clear_func +/elm_ts/box/utc_UIFW_elm_box_unpack_func +/elm_ts/box/utc_UIFW_elm_box_unpack_all_func diff --git a/TC/elm_ts/box/utc_MODULE_API_func.c.in b/TC/elm_ts/box/utc_MODULE_API_func.c.in new file mode 100755 index 0000000..6c6febe --- /dev/null +++ b/TC/elm_ts/box/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/box/utc_UIFW_elm_box_add_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_add_func.c new file mode 100644 index 0000000..6934a86 --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_add_func.c @@ -0,0 +1,98 @@ +#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_box_add_func_01(void); +static void utc_UIFW_elm_box_add_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_add_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_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); +} + +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_box_add() + */ +static void utc_UIFW_elm_box_add_func_01(void) +{ + Evas_Object *test_eo = NULL; + + test_eo = elm_box_add(main_win); + TET_CHECK_PASS(NULL, test_eo); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]: PASS, A Box is added sucessfully."); + +} + +/** + * @brief Negative test case of ug_init elm_box_add() + */ +static void utc_UIFW_elm_box_add_func_02(void) +{ + Evas_Object *test_eo = NULL; + + test_eo = elm_box_add(NULL); + TET_CHECK_FAIL(NULL, test_eo); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]: PASS, Adding a Box has failed."); + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_clear_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_clear_func.c new file mode 100644 index 0000000..6b08e5a --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_clear_func.c @@ -0,0 +1,99 @@ +#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_box_clear_func_01(void); +static void utc_UIFW_elm_box_clear_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_clear_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_clear_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 elm_box_clear() + */ +static void utc_UIFW_elm_box_clear_func_01(void) +{ + Evas_Object *test_box = NULL; + + test_box = elm_box_add(main_win); + + // Current return type of this API is "Void": + elm_box_clear(test_box); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_01, [TYPE]: Positive, [RESULT]: PASS, Clears the box items."); + +} + +/** + * @brief Negative test case of ug_init elm_box_clear() + */ +static void utc_UIFW_elm_box_clear_func_02(void) +{ + + // Current return type of this API is "Void": + elm_box_clear(NULL); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_02, [TYPE]: Negative, [RESULT]: PASS, Clearing the box items has failed."); + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_extended_set_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_extended_set_func.c new file mode 100644 index 0000000..a7608ca --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_extended_set_func.c @@ -0,0 +1,102 @@ +#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_box_extended_set_func_01(void); +static void utc_UIFW_elm_box_extended_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_extended_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_extended_set_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 elm_box_extended_set() + */ +static void utc_UIFW_elm_box_extended_set_func_01(void) +{ + Evas_Object *test_eo = NULL; + + test_eo = elm_box_add(main_win); + + // Current return type of this API is "Void". + elm_box_extended_set(test_eo, EINA_TRUE); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]: PASS, Set the extended mode."); + +} + +/** + * @brief Positive test case of ug_init elm_box_extended_set() + */ +static void utc_UIFW_elm_box_extended_set_func_02(void) +{ + Evas_Object *test_eo = NULL; + + test_eo = elm_box_add(main_win); + + // Current return type of this API is "Void". + elm_box_extended_set(test_eo, EINA_FALSE); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]: PASS, Set the normal mode."); + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_homogenous_set_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_homogenous_set_func.c new file mode 100644 index 0000000..b2f624d --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_homogenous_set_func.c @@ -0,0 +1,102 @@ +#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_box_homogenous_set_func_01(void); +static void utc_UIFW_elm_box_homogenous_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_homogenous_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_homogenous_set_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 elm_box_homogenous_set() + */ +static void utc_UIFW_elm_box_homogenous_set_func_01(void) +{ + Evas_Object *test_eo = NULL; + + test_eo = elm_box_add(main_win); + + // Current return tyep of this API is "Void" + elm_box_homogenous_set(test_eo, EINA_TRUE); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]: PASS, Set homogenous layout ON."); + +} + +/** + * @brief Positive test case of ug_init elm_box_homogenous_set() + */ +static void utc_UIFW_elm_box_homogenous_set_func_02(void) +{ + Evas_Object *test_eo = NULL; + + test_eo = elm_box_add(main_win); + + // Current return tyep of this API is "Void" + elm_box_homogenous_set(test_eo, EINA_FALSE); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Positive, [RESULT]: PASS, Set homogenous layout OFF."); + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_horizontal_set_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_horizontal_set_func.c new file mode 100644 index 0000000..ce1d1ff --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_horizontal_set_func.c @@ -0,0 +1,102 @@ +#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_box_horizontal_set_func_01(void); +static void utc_UIFW_elm_box_horizontal_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_horizontal_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_horizontal_set_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 elm_box_horizontal_set() + */ +static void utc_UIFW_elm_box_horizontal_set_func_01(void) +{ + Evas_Object *test_eo = NULL; + + test_eo = elm_box_add(main_win); + + // Current return type of this API is "Void" + elm_box_horizontal_set(test_eo, EINA_TRUE); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]: PASS, Set the horizontal orientation."); + +} + +/** + * @brief Positive test case of ug_init elm_box_horizontal_set() + */ +static void utc_UIFW_elm_box_horizontal_set_func_02(void) +{ + Evas_Object *test_eo = NULL; + + test_eo = elm_box_add(main_win); + + // Current return type of this API is "Void" + elm_box_horizontal_set(test_eo, EINA_FALSE); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]: PASS, Set the vertical orientation."); + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_pack_after_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_pack_after_func.c new file mode 100644 index 0000000..1f3df12 --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_pack_after_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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_box_pack_after_func_01(void); +static void utc_UIFW_elm_box_pack_after_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_pack_after_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_pack_after_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 elm_box_pack_after() + */ +static void utc_UIFW_elm_box_pack_after_func_01(void) +{ + Evas_Object *test_box = NULL; + Evas_Object *btn = NULL; + + test_box = elm_box_add(main_win); + btn = elm_button_add(main_win); + + // Current return type of thsi API is "Void". + elm_box_pack_after(test_box, btn, NULL); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_01, [TYPE]: Positive, [RESULT]: PASS, Adds an object to the box after the indicated object."); + + +} + +/** + * @brief Negative test case of ug_init elm_box_pack_after() + */ +static void utc_UIFW_elm_box_pack_after_func_02(void) +{ + // Current return type of thsi API is "Void". + elm_box_pack_after(NULL, NULL, NULL); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_02, [TYPE]: Negative, [RESULT]: PASS, Adding an object to the box after the indicated object has failed."); + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_pack_before_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_pack_before_func.c new file mode 100644 index 0000000..5448e78 --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_pack_before_func.c @@ -0,0 +1,100 @@ +#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_box_pack_before_func_01(void); +static void utc_UIFW_elm_box_pack_before_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_pack_before_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_pack_before_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 elm_box_pack_before() + */ +static void utc_UIFW_elm_box_pack_before_func_01(void) +{ + Evas_Object *test_box = NULL; + Evas_Object *btn = NULL; + + test_box = elm_box_add(main_win); + btn = elm_button_add(main_win); + + // Current return type of thsi API is "Void". + elm_box_pack_before(test_box, btn, NULL); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_01, [TYPE]: Positive, [RESULT]: PASS, Adds an object to the box before the indicated object."); + +} + +/** + * @brief Negative test case of ug_init elm_box_pack_before() + */ +static void utc_UIFW_elm_box_pack_before_func_02(void) +{ + // Current return type of thsi API is "Void". + elm_box_pack_before(NULL, NULL, NULL); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_02, [TYPE]: Negative, [RESULT]: PASS, Adding an object to the box before the indicated object has failed."); + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_pack_end_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_pack_end_func.c new file mode 100644 index 0000000..7c216cb --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_pack_end_func.c @@ -0,0 +1,100 @@ +#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_box_pack_end_func_01(void); +static void utc_UIFW_elm_box_pack_end_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_pack_end_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_pack_end_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 elm_box_pack_end() + */ +static void utc_UIFW_elm_box_pack_end_func_01(void) +{ + Evas_Object *test_box = NULL; + Evas_Object *entry = NULL; + + test_box = elm_box_add(main_win); + entry = elm_entry_add(test_box); + + // Current return type of this API is "Void" + elm_box_pack_end(test_box, entry); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_01, [TYPE]: Positive, [RESULT]: PASS, Adds a box at the end of the box."); + +} + +/** + * @brief Negative test case of ug_init elm_box_pack_end() + */ +static void utc_UIFW_elm_box_pack_end_func_02(void) +{ + // Current return type of this API is "Void" + elm_box_pack_end(NULL, NULL); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_02, [TYPE]: Negative, [RESULT]: PASS, Adding a box at the end of the box has failed."); + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_pack_start_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_pack_start_func.c new file mode 100644 index 0000000..e1985f9 --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_pack_start_func.c @@ -0,0 +1,100 @@ +#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_box_pack_start_func_01(void); +static void utc_UIFW_elm_box_pack_start_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_pack_start_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_pack_start_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 elm_box_pack_start() + */ +static void utc_UIFW_elm_box_pack_start_func_01(void) +{ + Evas_Object *test_box = NULL; + Evas_Object *label = NULL; + + test_box = elm_box_add(main_win); + label = elm_label_add(test_box); + + // Current return type of this API is "Void". + elm_box_pack_start(test_box, label); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_01, [TYPE]: Positive, [RESULT]: PASS, Adds a box at the start of the box."); + +} + +/** + * @brief Negative test case of ug_init elm_box_pack_start() + */ +static void utc_UIFW_elm_box_pack_start_func_02(void) +{ + // Current return type of this API is "Void". + elm_box_pack_start(NULL, NULL); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_02, [TYPE]: Negative, [RESULT]: PASS, Adding a box at the start of the box has failed."); + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_unpack_all_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_unpack_all_func.c new file mode 100644 index 0000000..8e683cf --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_unpack_all_func.c @@ -0,0 +1,102 @@ +#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_box_unpack_all_func_01(void); +static void utc_UIFW_elm_box_unpack_all_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_unpack_all_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_unpack_all_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 elm_box_unpack_all() + */ +static void utc_UIFW_elm_box_unpack_all_func_01(void) +{ + Evas_Object *test_box = NULL; + Evas_Object *label = NULL; + + test_box = elm_box_add(main_win); + label = elm_label_add(test_box); + + // Current return type of this API is "Void" + elm_box_unpack_all(test_box); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_01, [TYPE]: Positive, [RESULT]: PASS, Unpacks the box items."); + +} + +/** + * @brief Negative test case of ug_init elm_box_unpack_all() + */ +static void utc_UIFW_elm_box_unpack_all_func_02(void) +{ + + // Current return type of this API is "Void" + elm_box_unpack_all(NULL); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_02, [TYPE]: Negative, [RESULT]: PASS, Unpacking the box items has failed."); + + +} diff --git a/TC/elm_ts/box/utc_UIFW_elm_box_unpack_func.c b/TC/elm_ts/box/utc_UIFW_elm_box_unpack_func.c new file mode 100644 index 0000000..83bf61b --- /dev/null +++ b/TC/elm_ts/box/utc_UIFW_elm_box_unpack_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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_box_unpack_func_01(void); +static void utc_UIFW_elm_box_unpack_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_box_unpack_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_box_unpack_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 elm_box_unpack() + */ +static void utc_UIFW_elm_box_unpack_func_01(void) +{ + Evas_Object *test_box = NULL; + Evas_Object *label = NULL; + + test_box = elm_box_add(main_win); + label = elm_label_add(test_box); + + // Current return type of this API is "Void" + elm_box_unpack(test_box, label); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_01, [TYPE]: Positive, [RESULT]: PASS, Unpack a box item."); + +} + +/** + * @brief Negative test case of ug_init elm_box_unpack() + */ +static void utc_UIFW_elm_box_unpack_func_02(void) +{ + + // Current return type of this API is "Void" + elm_box_unpack(NULL, NULL); + + tet_result(TET_PASS); + tet_infoline("[[ TET_MSG ]]::[ID]: TC_02, [TYPE]: Negative, [RESULT]: PASS, Unpacking a box item has failed."); + +} -- 2.7.4