From: WooHyun Jung Date: Thu, 15 Mar 2012 08:47:55 +0000 (+0900) Subject: Removing TC for editfield X-Git-Tag: REL_F_I9500_20120317_1~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6256eb1ea54bdf9bb0ad33f3996bdee9fae7d6eb;p=framework%2Fuifw%2Felementary.git Removing TC for editfield --- diff --git a/TC/elm_ts/editfield/Makefile b/TC/elm_ts/editfield/Makefile deleted file mode 100755 index d1c2255..0000000 --- a/TC/elm_ts/editfield/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -CC ?= gcc - -TARGETS = utc_UIFW_elm_editfield_add_func \ - utc_UIFW_elm_editfield_label_set_func\ - utc_UIFW_elm_editfield_label_get_func\ - utc_UIFW_elm_editfield_guide_text_set_func\ - utc_UIFW_elm_editfield_guide_text_get_func\ - utc_UIFW_elm_editfield_entry_get_func\ - utc_UIFW_elm_editfield_entry_single_line_set_func\ - utc_UIFW_elm_editfield_entry_single_line_get_func\ - utc_UIFW_elm_editfield_entry_eraser_set_func\ - utc_UIFW_elm_editfield_entry_eraser_get_func - -PKGS = elementary evas - -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) - -$(TARGETS): %: %.c - $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) - -clean: - rm -f $(TARGETS) - rm -f tet_captured - rm -f *~ diff --git a/TC/elm_ts/editfield/tc_gen.sh b/TC/elm_ts/editfield/tc_gen.sh deleted file mode 100755 index a55200a..0000000 --- a/TC/elm_ts/editfield/tc_gen.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/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/editfield/tslist b/TC/elm_ts/editfield/tslist deleted file mode 100644 index dbf4165..0000000 --- a/TC/elm_ts/editfield/tslist +++ /dev/null @@ -1,10 +0,0 @@ -/elm_ts/editfield/utc_UIFW_elm_editfield_add_func -/elm_ts/editfield/utc_UIFW_elm_editfield_label_set_func -/elm_ts/editfield/utc_UIFW_elm_editfield_label_get_func -/elm_ts/editfield/utc_UIFW_elm_editfield_guide_text_set_func -/elm_ts/editfield/utc_UIFW_elm_editfield_guide_text_get_func -/elm_ts/editfield/utc_UIFW_elm_editfield_entry_get_func -/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_set_func -/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_get_func -/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_set_func -/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_get_func diff --git a/TC/elm_ts/editfield/utc_MODULE_API_func.c.in b/TC/elm_ts/editfield/utc_MODULE_API_func.c.in deleted file mode 100755 index a73d937..0000000 --- a/TC/elm_ts/editfield/utc_MODULE_API_func.c.in +++ /dev/null @@ -1,110 +0,0 @@ -#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 *ef; - -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 }, -}; - -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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = 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/editfield/utc_UIFW_elm_editfield_add_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_add_func.c deleted file mode 100644 index 73563a2..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_add_func.c +++ /dev/null @@ -1,102 +0,0 @@ -#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_editfield_add_func_01(void); -static void utc_UIFW_elm_editfield_add_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_add_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_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_editfield_add() - */ -static void utc_UIFW_elm_editfield_add_func_01(void) -{ - Evas_Object *r = NULL; - - r = elm_editfield_add(main_win); - if (!r) { - tet_infoline("elm_editfield_add() failed in positive test case"); - tet_result(TET_FAIL); - return; - } - evas_object_del(r); - r = NULL; - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_add() - */ -static void utc_UIFW_elm_editfield_add_func_02(void) -{ - Evas_Object *r = NULL; - - r = elm_editfield_add(NULL); - if (r) { - tet_infoline("elm_editfield_add() failed in negative test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_get_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_get_func.c deleted file mode 100644 index cf5aca2..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_get_func.c +++ /dev/null @@ -1,108 +0,0 @@ -#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 *ef; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_editfield_entry_eraser_get_func_01(void); -static void utc_UIFW_elm_editfield_entry_eraser_get_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_entry_eraser_get_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_entry_eraser_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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); - elm_editfield_eraser_set(ef, EINA_TRUE); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_editfield_entry_eraser_get() - */ -static void utc_UIFW_elm_editfield_entry_eraser_get_func_01(void) -{ - Eina_Bool r = EINA_FALSE; - r = elm_editfield_eraser_get(ef); - - if (!r) { - tet_infoline("elm_editfield_entry_eraser_get() failed in positive test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_entry_eraser_get() - */ -static void utc_UIFW_elm_editfield_entry_eraser_get_func_02(void) -{ - Eina_Bool r = EINA_FALSE; - r = elm_editfield_eraser_get(NULL); - - if (r) { - tet_infoline("elm_editfield_entry_eraser_get() failed in negative test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_set_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_set_func.c deleted file mode 100644 index 29df972..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_set_func.c +++ /dev/null @@ -1,93 +0,0 @@ -#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 *ef; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_editfield_entry_eraser_set_func_01(void); -static void utc_UIFW_elm_editfield_entry_eraser_set_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_entry_eraser_set_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_entry_eraser_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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_editfield_entry_eraser_set() - */ -static void utc_UIFW_elm_editfield_entry_eraser_set_func_01(void) -{ - elm_editfield_eraser_set(ef, EINA_TRUE); - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_entry_eraser_set() - */ -static void utc_UIFW_elm_editfield_entry_eraser_set_func_02(void) -{ - elm_editfield_eraser_set(NULL, EINA_TRUE); - tet_result(TET_PASS); -} diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_get_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_get_func.c deleted file mode 100644 index 0ea0e6a..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_get_func.c +++ /dev/null @@ -1,107 +0,0 @@ -#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 *ef; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_editfield_entry_get_func_01(void); -static void utc_UIFW_elm_editfield_entry_get_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_entry_get_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_entry_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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_editfield_entry_get() - */ -static void utc_UIFW_elm_editfield_entry_get_func_01(void) -{ - Evas_Object *r = NULL; - - r = elm_editfield_entry_get(ef); - if (!r) { - tet_infoline("elm_editfield_entry_get() failed in positive test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_entry_get() - */ -static void utc_UIFW_elm_editfield_entry_get_func_02(void) -{ - Evas_Object *r = NULL; - - r = elm_editfield_entry_get(NULL); - if (r) { - tet_infoline("elm_editfield_entry_get() failed in negative test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_get_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_get_func.c deleted file mode 100644 index 5f181b2..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_get_func.c +++ /dev/null @@ -1,108 +0,0 @@ -#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 *ef; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_editfield_entry_single_line_get_func_01(void); -static void utc_UIFW_elm_editfield_entry_single_line_get_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_entry_single_line_get_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_entry_single_line_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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); - elm_editfield_entry_single_line_set(ef, EINA_TRUE); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_editfield_entry_single_line_get() - */ -static void utc_UIFW_elm_editfield_entry_single_line_get_func_01(void) -{ - Eina_Bool r = EINA_FALSE; - r = elm_editfield_entry_single_line_get(ef); - - if (!r) { - tet_infoline("elm_editfield_entry_single_line_get() failed in positive test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_entry_single_line_get() - */ -static void utc_UIFW_elm_editfield_entry_single_line_get_func_02(void) -{ - Eina_Bool r = EINA_FALSE; - r = elm_editfield_entry_single_line_get(NULL); - - if (r) { - tet_infoline("elm_editfield_entry_single_line_get() failed in negative test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_set_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_set_func.c deleted file mode 100644 index d772d95..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_set_func.c +++ /dev/null @@ -1,93 +0,0 @@ -#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 *ef; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_editfield_entry_single_line_set_func_01(void); -static void utc_UIFW_elm_editfield_entry_single_line_set_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_entry_single_line_set_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_entry_single_line_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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_editfield_entry_single_line_set() - */ -static void utc_UIFW_elm_editfield_entry_single_line_set_func_01(void) -{ - elm_editfield_entry_single_line_set(ef, EINA_TRUE); - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_entry_single_line_set() - */ -static void utc_UIFW_elm_editfield_entry_single_line_set_func_02(void) -{ - elm_editfield_entry_single_line_set(NULL, EINA_TRUE); - tet_result(TET_PASS); -} diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_guide_text_get_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_guide_text_get_func.c deleted file mode 100644 index 0939ba6..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_guide_text_get_func.c +++ /dev/null @@ -1,108 +0,0 @@ -#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 *ef; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_editfield_guide_text_get_func_01(void); -static void utc_UIFW_elm_editfield_guide_text_get_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_guide_text_get_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_guide_text_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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); - elm_editfield_guide_text_set(ef, "guide text"); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_editfield_guide_text_get() - */ -static void utc_UIFW_elm_editfield_guide_text_get_func_01(void) -{ - const char *r = NULL; - - r = elm_editfield_guide_text_get(ef); - if (strcmp(r, "guide text")) { - tet_infoline("elm_editfield_guide_text_get() failed in positive test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_guide_text_get() - */ -static void utc_UIFW_elm_editfield_guide_text_get_func_02(void) -{ - const char *r = NULL; - - r = elm_editfield_guide_text_get(NULL); - if (r) { - tet_infoline("elm_editfield_guide_text_get() failed in negative test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_guide_text_set_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_guide_text_set_func.c deleted file mode 100644 index 54864f1..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_guide_text_set_func.c +++ /dev/null @@ -1,93 +0,0 @@ -#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 *ef; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_editfield_guide_text_set_func_01(void); -static void utc_UIFW_elm_editfield_guide_text_set_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_guide_text_set_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_guide_text_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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_editfield_guide_text_set() - */ -static void utc_UIFW_elm_editfield_guide_text_set_func_01(void) -{ - elm_editfield_guide_text_set(ef, "guide text"); - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_guide_text_set() - */ -static void utc_UIFW_elm_editfield_guide_text_set_func_02(void) -{ - elm_editfield_guide_text_set(NULL, "guide text"); - tet_result(TET_PASS); -} diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_label_get_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_label_get_func.c deleted file mode 100644 index 75ce807..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_label_get_func.c +++ /dev/null @@ -1,107 +0,0 @@ -#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 *ef; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_editfield_label_get_func_01(void); -static void utc_UIFW_elm_editfield_label_get_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_label_get_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); - elm_editfield_label_set(ef, "label"); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_editfield_label_get() - */ -static void utc_UIFW_elm_editfield_label_get_func_01(void) -{ - const char *r = NULL; - r = elm_editfield_label_get(ef); - if (strcmp(r, "label")) { - tet_infoline("elm_editfield_label_get() failed in positive test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_label_get() - */ -static void utc_UIFW_elm_editfield_label_get_func_02(void) -{ - const char *r = NULL; - - r = elm_editfield_label_get(NULL); - if (r) { - tet_infoline("elm_editfield_label_get() failed in negative test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_label_set_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_label_set_func.c deleted file mode 100644 index 6953abb..0000000 --- a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_label_set_func.c +++ /dev/null @@ -1,93 +0,0 @@ -#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 *ef; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_editfield_label_set_func_01(void); -static void utc_UIFW_elm_editfield_label_set_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_editfield_label_set_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_editfield_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); - ef = elm_editfield_add(main_win); - evas_object_show(ef); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - if ( NULL != ef ) { - evas_object_del(ef); - ef = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_editfield_label_set() - */ -static void utc_UIFW_elm_editfield_label_set_func_01(void) -{ - elm_editfield_label_set(ef, "label"); - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_editfield_label_set() - */ -static void utc_UIFW_elm_editfield_label_set_func_02(void) -{ - elm_editfield_label_set(NULL, "label"); - tet_result(TET_PASS); -} diff --git a/TC/tet_scen_arm b/TC/tet_scen_arm index 6acfe0c..9031f99 100644 --- a/TC/tet_scen_arm +++ b/TC/tet_scen_arm @@ -28,7 +28,6 @@ elm :include:/elm_ts/segmentcontrol/tslist :include:/elm_ts/slider/tslist :include:/elm_ts/multibuttonentry/tslist - :include:/elm_ts/editfield/tslist :include:/elm_ts/box/tslist :include:/elm_ts/entry/tslist :include:/elm_ts/dayselector/tslist diff --git a/TC/tet_scen_i386 b/TC/tet_scen_i386 index 3d92cde..7c59dee 100644 --- a/TC/tet_scen_i386 +++ b/TC/tet_scen_i386 @@ -28,7 +28,6 @@ elm :include:/elm_ts/segmentcontrol/tslist :include:/elm_ts/slider/tslist :include:/elm_ts/multibuttonentry/tslist - :include:/elm_ts/editfield/tslist :include:/elm_ts/box/tslist :include:/elm_ts/entry/tslist :include:/elm_ts/dayselector/tslist