[datefield][bubble]add TC
authorSohyun Kim <anna1014.kim@samsung.com>
Mon, 13 Sep 2010 10:04:32 +0000 (19:04 +0900)
committerSohyun Kim <anna1014.kim@samsung.com>
Mon, 13 Sep 2010 10:04:32 +0000 (19:04 +0900)
24 files changed:
TC/elm_ts/bubble/Makefile [new file with mode: 0755]
TC/elm_ts/bubble/tc_gen.sh [new file with mode: 0755]
TC/elm_ts/bubble/tslist [new file with mode: 0644]
TC/elm_ts/bubble/utc_MODULE_API_func.c.in [new file with mode: 0755]
TC/elm_ts/datefield/Makefile [new file with mode: 0755]
TC/elm_ts/datefield/tc_gen.sh [new file with mode: 0755]
TC/elm_ts/datefield/tet_captured [new file with mode: 0644]
TC/elm_ts/datefield/tslist [new file with mode: 0644]
TC/elm_ts/datefield/utc_MODULE_API_func.c.in [new file with mode: 0755]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_add_func [new file with mode: 0755]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_add_func.c [new file with mode: 0644]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_get_func [new file with mode: 0755]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_get_func.c [new file with mode: 0644]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_set_func [new file with mode: 0755]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_set_func.c [new file with mode: 0644]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_get_func [new file with mode: 0755]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_get_func.c [new file with mode: 0644]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_set_func [new file with mode: 0755]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_set_func.c [new file with mode: 0644]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_get_func [new file with mode: 0755]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_get_func.c [new file with mode: 0644]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_set_func [new file with mode: 0755]
TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_set_func.c [new file with mode: 0644]
TC/tet_scen_arm

diff --git a/TC/elm_ts/bubble/Makefile b/TC/elm_ts/bubble/Makefile
new file mode 100755 (executable)
index 0000000..bb6ac7f
--- /dev/null
@@ -0,0 +1,25 @@
+CC ?= gcc
+
+TARGETS = uts_elm_imageslider_add_test \
+         uts_elm_imageslider_add_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/bubble/tc_gen.sh b/TC/elm_ts/bubble/tc_gen.sh
new file mode 100755 (executable)
index 0000000..a55200a
--- /dev/null
@@ -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/bubble/tslist b/TC/elm_ts/bubble/tslist
new file mode 100644 (file)
index 0000000..b824c5b
--- /dev/null
@@ -0,0 +1 @@
+#/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func
diff --git a/TC/elm_ts/bubble/utc_MODULE_API_func.c.in b/TC/elm_ts/bubble/utc_MODULE_API_func.c.in
new file mode 100755 (executable)
index 0000000..710e5a1
--- /dev/null
@@ -0,0 +1,103 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// 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 },
+};
+
+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/datefield/Makefile b/TC/elm_ts/datefield/Makefile
new file mode 100755 (executable)
index 0000000..6f63cd1
--- /dev/null
@@ -0,0 +1,30 @@
+CC ?= gcc
+
+TARGETS = utc_UIFW_elm_datefield_add_func \
+         utc_UIFW_elm_datefield_layout_set_func \
+         utc_UIFW_elm_datefield_layout_get_func \
+         utc_UIFW_elm_datefield_date_set_func \
+         utc_UIFW_elm_datefield_date_get_func \
+         utc_UIFW_elm_datefield_time_mode_set_func \
+         utc_UIFW_elm_datefield_time_mode_get_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/datefield/tc_gen.sh b/TC/elm_ts/datefield/tc_gen.sh
new file mode 100755 (executable)
index 0000000..a55200a
--- /dev/null
@@ -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/datefield/tet_captured b/TC/elm_ts/datefield/tet_captured
new file mode 100644 (file)
index 0000000..bc927bc
--- /dev/null
@@ -0,0 +1 @@
+make: `utc_UIFW_elm_datefield_time_mode_get_func' is up to date.
diff --git a/TC/elm_ts/datefield/tslist b/TC/elm_ts/datefield/tslist
new file mode 100644 (file)
index 0000000..14844c0
--- /dev/null
@@ -0,0 +1,7 @@
+/elm_ts/datefield/utc_UIFW_elm_datefield_add_func
+/elm_ts/datefield/utc_UIFW_elm_datefield_layout_set_func
+/elm_ts/datefield/utc_UIFW_elm_datefield_layout_get_func
+/elm_ts/datefield/utc_UIFW_elm_datefield_date_set_func
+/elm_ts/datefield/utc_UIFW_elm_datefield_date_get_func
+/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_set_func
+/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_get_func
diff --git a/TC/elm_ts/datefield/utc_MODULE_API_func.c.in b/TC/elm_ts/datefield/utc_MODULE_API_func.c.in
new file mode 100755 (executable)
index 0000000..710e5a1
--- /dev/null
@@ -0,0 +1,103 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// 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 },
+};
+
+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/datefield/utc_UIFW_elm_datefield_add_func b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_add_func
new file mode 100755 (executable)
index 0000000..fe8bfee
Binary files /dev/null and b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_add_func differ
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_add_func.c b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_add_func.c
new file mode 100644 (file)
index 0000000..4212a46
--- /dev/null
@@ -0,0 +1,112 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// 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; \
+               } \
+}
+
+
+static Evas_Object *main_win;
+static Evas_Object *datefield;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_datefield_add_func_01(void);
+static void utc_UIFW_elm_datefield_add_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_datefield_add_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_datefield_add_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);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != datefield) {
+               evas_object_del(datefield);
+               datefield = NULL;
+       }
+       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_datefield_add()
+ */
+static void utc_UIFW_elm_datefield_add_func_01(void)
+{
+       datefield = elm_datefield_add(main_win);
+
+       if (!datefield) {
+               tet_infoline("elm_datefield_add() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+
+       evas_object_resize(datefield, 480, 80);
+       evas_object_move(datefield, 0, 0);
+       evas_object_show(datefield);
+       
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_datefield_add()
+ */
+static void utc_UIFW_elm_datefield_add_func_02(void)
+{      
+       datefield = elm_datefield_add(NULL);
+
+       if (datefield) {
+               tet_infoline("elm_datefield_add() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       
+       evas_object_resize(datefield, 480, 80);
+       evas_object_move(datefield, 0, 0);
+       evas_object_show(datefield);
+       
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_get_func b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_get_func
new file mode 100755 (executable)
index 0000000..ffbfb31
Binary files /dev/null and b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_get_func differ
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_get_func.c b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_get_func.c
new file mode 100644 (file)
index 0000000..dd2b3be
--- /dev/null
@@ -0,0 +1,108 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// 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; \
+               } \
+}
+
+
+static Evas_Object *main_win;
+static Evas_Object *datefield;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_datefield_date_get_func_01(void);
+static void utc_UIFW_elm_datefield_date_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_datefield_date_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_datefield_date_get_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);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != datefield) {
+               evas_object_del(datefield);
+               datefield = NULL;
+       }
+       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_datefield_date_get()
+ */
+static void utc_UIFW_elm_datefield_date_get_func_01(void)
+{
+       int year, month, day, hour, min;
+       
+       datefield = elm_datefield_add(main_win);
+       elm_datefield_date_set(datefield, 2010, 10, 14, 5, 30);
+       elm_datefield_date_get(datefield, &year, &month, &day, &hour, &min);
+       
+       if (!(year == 2010 && month == 10 && day == 14 && hour == 5 && min == 30)) {
+               tet_infoline("elm_datefield_date_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_datefield_date_get()
+ */
+static void utc_UIFW_elm_datefield_date_get_func_02(void)
+{
+       datefield = elm_datefield_add(main_win);
+       elm_datefield_date_set(datefield, 2010, 10, 14, 5, 30);
+       elm_datefield_date_get(datefield, NULL, NULL, NULL, NULL, NULL); 
+
+       /*if () {
+               tet_infoline("elm_datefield_date_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }*/
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_set_func b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_set_func
new file mode 100755 (executable)
index 0000000..29bd042
Binary files /dev/null and b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_set_func differ
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_set_func.c b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_date_set_func.c
new file mode 100644 (file)
index 0000000..330ff82
--- /dev/null
@@ -0,0 +1,110 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// 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; \
+               } \
+}
+
+
+static Evas_Object *main_win;
+static Evas_Object *datefield;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_datefield_date_set_func_01(void);
+static void utc_UIFW_elm_datefield_date_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_datefield_date_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_datefield_date_set_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);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != datefield) {
+               evas_object_del(datefield);
+               datefield = NULL;
+       }
+       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_datefield_date_set()
+ */
+static void utc_UIFW_elm_datefield_date_set_func_01(void)
+{
+       int year, month, day, hour, min;
+       
+       datefield = elm_datefield_add(main_win);
+       elm_datefield_date_set(datefield, 2010, 10, 14, 1, 36);
+       elm_datefield_date_get(datefield, &year, &month, &day, &hour, &min);
+       
+       if (!(year == 2010 && month == 10 && day == 14 && hour == 1 && min == 36)) {
+               tet_infoline("elm_datefield_date_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_datefield_date_set()
+ */
+static void utc_UIFW_elm_datefield_date_set_func_02(void)
+{
+       int year, month, day, hour, min;
+
+       datefield = elm_datefield_add(main_win);
+       elm_datefield_date_set(datefield, 3000, 13, 50, 28, 70);
+       elm_datefield_date_get(datefield, &year, &month, &day, &hour, &min);
+       
+       if (!(year <= 2099 && month <= 12 && day <= 31 && hour <= 23 && min <= 59)) {
+               tet_infoline("elm_datefield_date_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_get_func b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_get_func
new file mode 100755 (executable)
index 0000000..5e6f448
Binary files /dev/null and b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_get_func differ
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_get_func.c b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_get_func.c
new file mode 100644 (file)
index 0000000..06dd581
--- /dev/null
@@ -0,0 +1,108 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// 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; \
+               } \
+}
+
+
+static Evas_Object *main_win;
+static Evas_Object *datefield;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_datefield_layout_get_func_01(void);
+static void utc_UIFW_elm_datefield_layout_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_datefield_layout_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_datefield_layout_get_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);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != datefield) {
+               evas_object_del(datefield);
+               datefield = NULL;
+       }
+       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_datefield_layout_get()
+ */
+static void utc_UIFW_elm_datefield_layout_get_func_01(void)
+{
+       int r = 0;
+       
+       datefield = elm_datefield_add(main_win);
+       r = elm_datefield_layout_get(datefield);
+       
+       if (r != ELM_DATEFIELD_LAYOUT_DATEANDTIME) {
+               tet_infoline("elm_datefield_layout_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_datefield_layout_get()
+ */
+static void utc_UIFW_elm_datefield_layout_get_func_02(void)
+{
+       int r = 0;
+
+       datefield = elm_datefield_add(main_win);
+       r = elm_datefield_layout_get(NULL);
+
+       if (r == ELM_DATEFIELD_LAYOUT_DATEANDTIME) {
+               tet_infoline("elm_datefield_layout_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_set_func b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_set_func
new file mode 100755 (executable)
index 0000000..0ef16d2
Binary files /dev/null and b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_set_func differ
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_set_func.c b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_layout_set_func.c
new file mode 100644 (file)
index 0000000..781e360
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// 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; \
+               } \
+}
+
+
+static Evas_Object *main_win;
+static Evas_Object *datefield;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_datefield_layout_set_func_01(void);
+static void utc_UIFW_elm_datefield_layout_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_datefield_layout_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_datefield_layout_set_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);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != datefield) {
+               evas_object_del(datefield);
+               datefield = NULL;
+       }
+       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_datefield_layout_set()
+ */
+static void utc_UIFW_elm_datefield_layout_set_func_01(void)
+{
+       datefield = elm_datefield_add(main_win);
+       elm_datefield_layout_set(datefield, ELM_DATEFIELD_LAYOUT_TIME);
+
+       if (elm_datefield_layout_get(datefield) != ELM_DATEFIELD_LAYOUT_TIME) {
+               tet_infoline("elm_datefield_layout_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_datefield_layout_set()
+ */
+static void utc_UIFW_elm_datefield_layout_set_func_02(void)
+{
+       datefield = elm_datefield_add(main_win);
+       elm_datefield_layout_set(datefield, ELM_DATEFIELD_LAYOUT_DATEANDTIME+1);
+       
+       if (elm_datefield_layout_get(datefield) > ELM_DATEFIELD_LAYOUT_DATEANDTIME) {
+               tet_infoline("elm_datefield_layout_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_get_func b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_get_func
new file mode 100755 (executable)
index 0000000..3e34728
Binary files /dev/null and b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_get_func differ
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_get_func.c b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_get_func.c
new file mode 100644 (file)
index 0000000..942626f
--- /dev/null
@@ -0,0 +1,108 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// 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; \
+               } \
+}
+
+
+static Evas_Object *main_win;
+static Evas_Object *datefield;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_datefield_time_mode_get_func_01(void);
+static void utc_UIFW_elm_datefield_time_mode_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_datefield_time_mode_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_datefield_time_mode_get_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);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != datefield ) {
+               evas_object_del(datefield);
+               datefield = NULL;
+       }
+       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_datefield_time_mode_get()
+ */
+static void utc_UIFW_elm_datefield_time_mode_get_func_01(void)
+{
+       Eina_Bool mode = EINA_FALSE;
+       
+       datefield = elm_datefield_add(main_win);
+       mode = elm_datefield_time_mode_get(datefield);
+
+       if (mode != EINA_TRUE) {
+               tet_infoline("elm_datefield_time_mode_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_datefield_time_mode_get()
+ */
+static void utc_UIFW_elm_datefield_time_mode_get_func_02(void)
+{
+       Eina_Bool mode = EINA_FALSE;
+
+       datefield = elm_datefield_add(main_win);
+       mode = elm_datefield_time_mode_get(NULL);
+
+       /*if () {
+               tet_infoline("elm_datefield_time_mode_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }*/
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_set_func b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_set_func
new file mode 100755 (executable)
index 0000000..e0c3e48
Binary files /dev/null and b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_set_func differ
diff --git a/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_set_func.c b/TC/elm_ts/datefield/utc_UIFW_elm_datefield_time_mode_set_func.c
new file mode 100644 (file)
index 0000000..16f2f84
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// 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; \
+               } \
+}
+
+
+static Evas_Object *main_win;
+static Evas_Object *datefield;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_datefield_time_mode_set_func_01(void);
+static void utc_UIFW_elm_datefield_time_mode_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_datefield_time_mode_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_datefield_time_mode_set_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);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != datefield ) {
+               evas_object_del(datefield);
+               datefield = NULL;
+       }       
+       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_datefield_time_mode_set()
+ */
+static void utc_UIFW_elm_datefield_time_mode_set_func_01(void)
+{
+       datefield = elm_datefield_add(main_win);
+       elm_datefield_time_mode_set(datefield, EINA_FALSE);
+       
+       if (elm_datefield_time_mode_get(datefield) != EINA_FALSE) {
+               tet_infoline("elm_datefield_time_mode_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_datefield_time_mode_set()
+ */
+static void utc_UIFW_elm_datefield_time_mode_set_func_02(void)
+{
+       datefield = elm_datefield_add(main_win);
+       elm_datefield_time_mode_set(datefield, 2);
+       
+       if (!(elm_datefield_time_mode_get(datefield) == EINA_TRUE || elm_datefield_time_mode_get == EINA_FALSE)) {
+               tet_infoline("elm_datefield_time_mode_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
index 929a63a..db0a649 100755 (executable)
@@ -18,7 +18,8 @@ elm
        :include:/elm_ts/label/tslist
        :include:/elm_ts/searchbar/tslist
        :include:/elm_ts/webview/tslist
-
+       :include:/elm_ts/datefield/tslist
+       :include:/elm_ts/bubble/tslist
 
 #yhkim
 ch