From: Rajeev Ranjan Date: Mon, 20 Sep 2010 08:06:38 +0000 (+0900) Subject: [TC/elm_ts/toggle/] Added test cases for elm_toggle. X-Git-Tag: origin~168 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9be0948e66d9db4a9ec2fc460d06fc5567d4f8f6;p=framework%2Fuifw%2Felementary.git [TC/elm_ts/toggle/] Added test cases for elm_toggle. --- diff --git a/TC/elm_ts/toggle/Makefile b/TC/elm_ts/toggle/Makefile new file mode 100755 index 0000000..4b38415 --- /dev/null +++ b/TC/elm_ts/toggle/Makefile @@ -0,0 +1,34 @@ +CC ?= gcc + +TARGETS = utc_UIFW_elm_toggle_add_func \ + utc_UIFW_elm_toggle_label_set_func \ + utc_UIFW_elm_toggle_label_get_func \ + utc_UIFW_elm_toggle_icon_set_func \ + utc_UIFW_elm_toggle_icon_get_func \ + utc_UIFW_elm_toggle_states_labels_set_func \ + utc_UIFW_elm_toggle_states_labels_get_func \ + utc_UIFW_elm_toggle_state_set_func \ + utc_UIFW_elm_toggle_state_get_func \ + utc_UIFW_elm_toggle_state_pointer_set_func + + +PKGS = elementary + +LDFLAGS = `pkg-config --libs $(PKGS)` +LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o +LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s +LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s + +CFLAGS = -I. `pkg-config --cflags $(PKGS)` +CFLAGS += -I$(TET_ROOT)/inc/tet3 +CFLAGS += -Wall + +all: $(TARGETS) + +$(TARGET): %: %.c + $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS) + +clean: + rm -f $(TARGETS) + rm -f tet_captured + rm -f *~ diff --git a/TC/elm_ts/toggle/tc_gen.sh b/TC/elm_ts/toggle/tc_gen.sh new file mode 100755 index 0000000..a55200a --- /dev/null +++ b/TC/elm_ts/toggle/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/toggle/tslist b/TC/elm_ts/toggle/tslist new file mode 100644 index 0000000..d2a587c --- /dev/null +++ b/TC/elm_ts/toggle/tslist @@ -0,0 +1,12 @@ +/elm_ts/toggle/utc_UIFW_elm_toggle_add_func +/elm_ts/toggle/utc_UIFW_elm_toggle_label_set_func +/elm_ts/toggle/utc_UIFW_elm_toggle_label_get_func +/elm_ts/toggle/utc_UIFW_elm_toggle_icon_set_func +/elm_ts/toggle/utc_UIFW_elm_toggle_icon_get_func +/elm_ts/toggle/utc_UIFW_elm_toggle_states_labels_set_func +/elm_ts/toggle/utc_UIFW__battery_read_status_func +/elm_ts/toggle/utc_UIFW_elm_toggle_states_labels_get_func +/elm_ts/toggle/utc_UIFW_elm_toggle_state_set_func +/elm_ts/toggle/utc_UIFW_elm_toggle_state_get_func +/elm_ts/toggle/utc_UIFW_elm_toggle_state_pointer_set_func +/elm_ts/toggle/utc_UIFW_elm_toggle_state_pointer_set_func diff --git a/TC/elm_ts/toggle/utc_MODULE_API_func.c.in b/TC/elm_ts/toggle/utc_MODULE_API_func.c.in new file mode 100755 index 0000000..6c6febe --- /dev/null +++ b/TC/elm_ts/toggle/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/toggle/utc_UIFW__battery_read_status_func.c b/TC/elm_ts/toggle/utc_UIFW__battery_read_status_func.c new file mode 100644 index 0000000..8019313 --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW__battery_read_status_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; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW__battery_read_status_func_01(void); +static void utc_UIFW__battery_read_status_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW__battery_read_status_func_01, POSITIVE_TC_IDX }, + { utc_UIFW__battery_read_status_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 _battery_read_status() + */ +static void utc_UIFW__battery_read_status_func_01(void) +{ + int r = 0; + +/* + r = _battery_read_status(...); +*/ + if (!r) { + tet_infoline("_battery_read_status() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init _battery_read_status() + */ +static void utc_UIFW__battery_read_status_func_02(void) +{ + int r = 0; + +/* + r = _battery_read_status(...); +*/ + if (r) { + tet_infoline("_battery_read_status() failed in negative test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_add_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_add_func.c new file mode 100644 index 0000000..811b964 --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_add_func.c @@ -0,0 +1,105 @@ +#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_toggle_add_func_01(void); +static void utc_UIFW_elm_toggle_add_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_add_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_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_toggle_add() + */ +static void utc_UIFW_elm_toggle_add_func_01(void) +{ + Evas_Object *toggle = NULL; + + toggle = elm_toggle_add(main_win); + if (!toggle) { + tet_infoline("elm_toggle_add() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_add() + */ +static void utc_UIFW_elm_toggle_add_func_02(void) +{ + Evas_Object *toggle = NULL; + + toggle = elm_toggle_add(NULL); + + if (toggle) { + tet_infoline("elm_toggle_add() failed in negative test case"); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_FAIL); + } + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_icon_get_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_icon_get_func.c new file mode 100644 index 0000000..6616c02 --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_icon_get_func.c @@ -0,0 +1,121 @@ +#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_toggle_icon_get_func_01(void); +static void utc_UIFW_elm_toggle_icon_get_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_icon_get_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_icon_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); +} + +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_toggle_icon_get() + */ +static void utc_UIFW_elm_toggle_icon_get_func_01(void) +{ + Evas_Object *toggle = NULL; + Evas_Object *icon = NULL; + char buff[PATH_MAX]; + toggle = elm_toggle_add(main_win); + icon = elm_icon_add(main_win); + snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary"); + elm_icon_file_set(icon, buff, NULL); + evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1); + elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE); + elm_toggle_icon_set(toggle, icon); + if(elm_toggle_icon_get(toggle) == NULL) + { + tet_infoline("elm_toggle_icon_get() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_icon_get() + */ +static void utc_UIFW_elm_toggle_icon_get_func_02(void) +{ + Evas_Object *toggle = NULL; + Evas_Object *icon = NULL; + char buff[PATH_MAX]; + toggle = elm_toggle_add(main_win); + icon = elm_icon_add(main_win); + snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary"); + elm_icon_file_set(icon, buff, NULL); + evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1); + elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE); + elm_toggle_icon_set(toggle, icon); + if(elm_toggle_icon_get(NULL) != NULL) + { + evas_object_del(toggle); + toggle = NULL; + tet_infoline("elm_toggle_icon_get() failed in negative test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_icon_set_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_icon_set_func.c new file mode 100644 index 0000000..b55bd06 --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_icon_set_func.c @@ -0,0 +1,107 @@ +#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_toggle_icon_set_func_01(void); +static void utc_UIFW_elm_toggle_icon_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_icon_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_icon_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_toggle_icon_set() + */ +static void utc_UIFW_elm_toggle_icon_set_func_01(void) +{ + Evas_Object *toggle = NULL; + Evas_Object *icon = NULL; + char buff[PATH_MAX]; + toggle = elm_toggle_add(main_win); + icon = elm_icon_add(main_win); + snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary"); + elm_icon_file_set(icon, buff, NULL); + evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1); + elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE); + elm_toggle_icon_set(toggle, icon); + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_icon_set() + */ +static void utc_UIFW_elm_toggle_icon_set_func_02(void) +{ + Evas_Object *toggle = NULL; + Evas_Object *icon = NULL; + char buff[PATH_MAX]; + toggle = elm_toggle_add(main_win); + icon = elm_icon_add(main_win); + snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary"); + elm_icon_file_set(icon, buff, NULL); + evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1); + elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE); + elm_toggle_icon_set(NULL, icon); + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_label_get_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_label_get_func.c new file mode 100644 index 0000000..051297b --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_label_get_func.c @@ -0,0 +1,112 @@ +#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_toggle_label_get_func_01(void); +static void utc_UIFW_elm_toggle_label_get_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_label_get_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_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); +} + +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_toggle_label_get() + */ +static void utc_UIFW_elm_toggle_label_get_func_01(void) +{ + Evas_Object *toggle = NULL; + char *buffer; + toggle = elm_toggle_add(main_win); + elm_toggle_label_set(toggle, "label"); + buffer = elm_toggle_label_get(toggle); + if(!buffer) + { + tet_infoline("elm_toggle_label_get() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_label_get() + */ +static void utc_UIFW_elm_toggle_label_get_func_02(void) +{ + Evas_Object *toggle = NULL; + char *buffer; + toggle = elm_toggle_add(main_win); + elm_toggle_label_set(toggle, "label"); + buffer = elm_toggle_label_get(NULL); + if(buffer) + { + evas_object_del(toggle); + toggle = NULL; + tet_infoline("elm_toggle_label_get() failed in negative test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); + tet_infoline("elm_toggle_label_get() failed in negative test case"); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_label_set_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_label_set_func.c new file mode 100644 index 0000000..961cb63 --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_label_set_func.c @@ -0,0 +1,95 @@ +#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_toggle_label_set_func_01(void); +static void utc_UIFW_elm_toggle_label_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_label_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_label_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_toggle_label_set() + */ +static void utc_UIFW_elm_toggle_label_set_func_01(void) +{ + Evas_Object *toggle = NULL; + + toggle = elm_toggle_add(main_win); + elm_toggle_label_set(toggle, "label"); + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_label_set() + */ +static void utc_UIFW_elm_toggle_label_set_func_02(void) +{ + Evas_Object *toggle = NULL; + + toggle = elm_toggle_add(main_win); + elm_toggle_label_set(NULL, "label"); + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_state_get_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_state_get_func.c new file mode 100644 index 0000000..2d9cf34 --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_state_get_func.c @@ -0,0 +1,105 @@ +#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_toggle_state_get_func_01(void); +static void utc_UIFW_elm_toggle_state_get_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_state_get_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_state_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); +} + +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_toggle_state_get() + */ +static void utc_UIFW_elm_toggle_state_get_func_01(void) +{ + Evas_Object *toggle = NULL; + Eina_Bool state; + + toggle = elm_toggle_add(main_win); + elm_toggle_state_set(toggle, EINA_TRUE); + state = elm_toggle_state_get(toggle); + if(state == EINA_FALSE) + { + evas_object_del(toggle); + tet_infoline("elm_toggle_state_get() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_state_get() + */ +static void utc_UIFW_elm_toggle_state_get_func_02(void) +{ + Evas_Object *toggle = NULL; + Eina_Bool state; + toggle = elm_toggle_add(main_win); + elm_toggle_state_set(toggle, EINA_TRUE); + state = elm_toggle_state_get(NULL); + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_state_pointer_set_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_state_pointer_set_func.c new file mode 100644 index 0000000..c480061 --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_state_pointer_set_func.c @@ -0,0 +1,97 @@ +#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_toggle_state_pointer_set_func_01(void); +static void utc_UIFW_elm_toggle_state_pointer_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_state_pointer_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_state_pointer_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_toggle_state_pointer_set() + */ +static void utc_UIFW_elm_toggle_state_pointer_set_func_01(void) +{ + Evas_Object *toggle = NULL; + Eina_Bool state; + + toggle = elm_toggle_add(main_win); + elm_toggle_state_pointer_set(toggle, &state); + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_state_pointer_set() + */ +static void utc_UIFW_elm_toggle_state_pointer_set_func_02(void) +{ + Evas_Object *toggle = NULL; + Eina_Bool state; + + toggle = elm_toggle_add(main_win); + elm_toggle_state_pointer_set(NULL, &state); + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_state_set_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_state_set_func.c new file mode 100644 index 0000000..0c8d9b5 --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_state_set_func.c @@ -0,0 +1,95 @@ +#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_toggle_state_set_func_01(void); +static void utc_UIFW_elm_toggle_state_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_state_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_state_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_toggle_state_set() + */ +static void utc_UIFW_elm_toggle_state_set_func_01(void) +{ + Evas_Object *toggle = NULL; + + toggle = elm_toggle_add(main_win); + elm_toggle_state_set(toggle, EINA_TRUE); + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_state_set() + */ +static void utc_UIFW_elm_toggle_state_set_func_02(void) +{ + Evas_Object *toggle = NULL; + + toggle = elm_toggle_add(main_win); + elm_toggle_state_set(NULL, EINA_TRUE); + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_states_labels_get_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_states_labels_get_func.c new file mode 100644 index 0000000..be969bf --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_states_labels_get_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_toggle_states_labels_get_func_01(void); +static void utc_UIFW_elm_toggle_states_labels_get_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_states_labels_get_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_states_labels_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); +} + +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_toggle_states_labels_get() + */ +static void utc_UIFW_elm_toggle_states_labels_get_func_01(void) +{ + Evas_Object *toggle = NULL; + char **ontextp = {0}, **offtextp = {0}; + + toggle = elm_toggle_add(main_win); + elm_toggle_states_labels_set(toggle, "on", "off"); + elm_toggle_states_labels_get(toggle, ontextp, offtextp); + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_states_labels_get() + */ +static void utc_UIFW_elm_toggle_states_labels_get_func_02(void) +{ + Evas_Object *toggle = NULL; + char **ontextp = {0}, **offtextp = {0}; + + toggle = elm_toggle_add(main_win); + elm_toggle_states_labels_set(toggle, "on", "off"); + elm_toggle_states_labels_get(NULL, ontextp, offtextp); + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/toggle/utc_UIFW_elm_toggle_states_labels_set_func.c b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_states_labels_set_func.c new file mode 100644 index 0000000..aed9cde --- /dev/null +++ b/TC/elm_ts/toggle/utc_UIFW_elm_toggle_states_labels_set_func.c @@ -0,0 +1,95 @@ +#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_toggle_states_labels_set_func_01(void); +static void utc_UIFW_elm_toggle_states_labels_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_toggle_states_labels_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_toggle_states_labels_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_toggle_states_labels_set() + */ +static void utc_UIFW_elm_toggle_states_labels_set_func_01(void) +{ + Evas_Object *toggle = NULL; + + toggle = elm_toggle_add(main_win); + elm_toggle_states_labels_set(toggle, "on", "off"); + evas_object_show(toggle); + evas_object_del(toggle); + toggle = NULL; + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_toggle_states_labels_set() + */ +static void utc_UIFW_elm_toggle_states_labels_set_func_02(void) +{ + Evas_Object *toggle = NULL; + + toggle = elm_toggle_add(main_win); + elm_toggle_states_labels_set(NULL, "on", "off"); + tet_result(TET_PASS); +} diff --git a/TC/tet_scen_arm b/TC/tet_scen_arm index ddf6fae..4d78d15 100644 --- a/TC/tet_scen_arm +++ b/TC/tet_scen_arm @@ -24,6 +24,7 @@ elm :include:/elm_ts/calendar/tslist :include:/elm_ts/check/tslist :include:/elm_ts/radio/tslist + :include:/elm_ts/toggle/tslist #yhkim ch