[Added Test cases for elm_button]
authorRajeev Ranjan <rajeev.r@samsung.com>
Fri, 17 Sep 2010 07:57:14 +0000 (16:57 +0900)
committerRajeev Ranjan <rajeev.r@samsung.com>
Fri, 17 Sep 2010 07:57:14 +0000 (16:57 +0900)
13 files changed:
TC/elm_ts/button/Makefile
TC/elm_ts/button/tslist
TC/elm_ts/button/utc_UIFW_elm_button_add_func.c
TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_gap_timeout_set_func.c [new file with mode: 0644]
TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_initial_timeout_set_func.c [new file with mode: 0644]
TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func.c [new file with mode: 0644]
TC/elm_ts/button/utc_UIFW_elm_button_icon_get_func.c [new file with mode: 0644]
TC/elm_ts/button/utc_UIFW_elm_button_icon_set_func.c [new file with mode: 0644]
TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c [new file with mode: 0644]
TC/elm_ts/button/utc_UIFW_elm_button_label_get_func.c [new file with mode: 0644]
TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c [new file with mode: 0644]
TC/elm_ts/button/utc_UIFW_elm_button_label_set_func.c [new file with mode: 0644]
TC/tet_scen_arm

index b98f48d..bec4458 100755 (executable)
@@ -1,6 +1,15 @@
 CC ?= gcc
 
-TARGETS = uts_elm_button_add_func
+TARGETS = utc_UIFW_elm_button_add_func \
+               utc_UIFW_elm_button_label_set_func \
+               utc_UIFW_elm_button_label_set_for_state_func \
+               utc_UIFW_elm_button_label_get_func \
+               utc_UIFW_elm_button_label_get_for_state_func \
+               utc_UIFW_elm_button_icon_set_func \
+               utc_UIFW_elm_button_icon_get_func \
+               utc_UIFW_elm_button_auto_repeat_set_func \
+               utc_UIFW_elm_button_autorepeat_initial_timeout_set_func \
+               utc_UIFW_elm_button_autorepeat_gap_timeout_set_func
 
 PKGS = elementary
 
index 1b7bd27..5741209 100644 (file)
@@ -1,2 +1,10 @@
-/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func
 /elm_ts/button/utc_UIFW_elm_button_add_func
+/elm_ts/button/utc_UIFW_elm_button_label_set_func
+/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func
+/elm_ts/button/utc_UIFW_elm_button_label_get_func
+/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func
+/elm_ts/button/utc_UIFW_elm_button_icon_set_func
+/elm_ts/button/utc_UIFW_elm_button_icon_get_func
+/elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func
+/elm_ts/button/utc_UIFW_elm_button_autorepeat_initial_timeout_set_func
+/elm_ts/button/utc_UIFW_elm_button_autorepeat_gap_timeout_set_func
index 407f835..de6c3ec 100644 (file)
@@ -71,17 +71,19 @@ static void cleanup(void)
  */
 static void utc_UIFW_elm_button_add_func_01(void)
 {
-       Evas_Object *button = NULL;
-
-       button = elm_button_add(main_win);
-       if (!button) {
-               tet_infoline("elm_button_add() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       evas_object_del(button);
-       button = NULL;
-       tet_result(TET_PASS);
+   Evas_Object *button = NULL;
+
+   button = elm_button_add(main_win);
+   if (!button) {
+      tet_infoline("elm_button_add() failed in positive test case");
+      tet_result(TET_FAIL);
+      return;
+   }
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_add() failed in positive test case");
 }
 
 /**
@@ -89,17 +91,18 @@ static void utc_UIFW_elm_button_add_func_01(void)
  */
 static void utc_UIFW_elm_button_add_func_02(void)
 {
-       Evas_Object *button = NULL;
+   Evas_Object *button = NULL;
 
 
-       button = elm_button_add(NULL);
+   button = elm_button_add(NULL);
 
-       if (button) {
-               tet_infoline("elm_button_add() failed in negative test case");
-               tet_result(TET_FAIL);
-               evas_object_del(button);
-               button = NULL;
-               return;
-       }
-       tet_result(TET_PASS);
+   if (button) {
+          tet_infoline("elm_button_add() failed in negative test case");
+          tet_result(TET_FAIL);
+          evas_object_del(button);
+          button = NULL;
+          return;
+   }
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_add() failed in negative test case");
 }
diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_gap_timeout_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_gap_timeout_set_func.c
new file mode 100644 (file)
index 0000000..9c5b01f
--- /dev/null
@@ -0,0 +1,97 @@
+#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_UIFW_elm_button_autorepeat_gap_timeout_set_func_01(void);
+static void utc_UIFW_elm_button_autorepeat_gap_timeout_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_button_autorepeat_gap_timeout_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_button_autorepeat_gap_timeout_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 != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_button_autorepeat_gap_timeout_set()
+ */
+static void utc_UIFW_elm_button_autorepeat_gap_timeout_set_func_01(void)
+{
+   button = elm_button_add(main_win);
+   elm_button_autorepeat_set(button, EINA_TRUE);
+   elm_button_autorepeat_initial_timeout_set(button, 1.0);
+   elm_button_autorepeat_gap_timeout_set(button, 0.1);
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_autorepeat_gap_timeout_set() failed in positive test case");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_button_autorepeat_gap_timeout_set()
+ */
+static void utc_UIFW_elm_button_autorepeat_gap_timeout_set_func_02(void)
+{
+   button = elm_button_add(main_win);
+   elm_button_autorepeat_set(NULL, EINA_TRUE);
+   elm_button_autorepeat_gap_timeout_set(button, 0.1);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_autorepeat_gap_timeout_set() failed in negative test case");
+}
diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_initial_timeout_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_initial_timeout_set_func.c
new file mode 100644 (file)
index 0000000..77a315b
--- /dev/null
@@ -0,0 +1,95 @@
+#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_UIFW_elm_button_autorepeat_initial_timeout_set_func_01(void);
+static void utc_UIFW_elm_button_autorepeat_initial_timeout_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_button_autorepeat_initial_timeout_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_button_autorepeat_initial_timeout_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 != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_button_autorepeat_initial_timeout_set()
+ */
+static void utc_UIFW_elm_button_autorepeat_initial_timeout_set_func_01(void)
+{
+   button = elm_button_add(main_win);
+   elm_button_autorepeat_set(button, EINA_TRUE);
+   elm_button_autorepeat_initial_timeout_set(button, 1.0);
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_autorepeat_initial_timeout_set() failed in positive test case");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_button_autorepeat_initial_timeout_set()
+ */
+static void utc_UIFW_elm_button_autorepeat_initial_timeout_set_func_02(void)
+{
+   button = elm_button_add(main_win);
+   elm_button_autorepeat_set(NULL, EINA_TRUE);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_autorepeat_initial_timeout_set() failed in negative test case");
+}
diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func.c
new file mode 100644 (file)
index 0000000..26d2aa1
--- /dev/null
@@ -0,0 +1,94 @@
+#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_UIFW_elm_button_autorepeat_set_func_01(void);
+static void utc_UIFW_elm_button_autorepeat_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_button_autorepeat_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_button_autorepeat_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 != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_button_autorepeat_set()
+ */
+static void utc_UIFW_elm_button_autorepeat_set_func_01(void)
+{
+   button = elm_button_add(main_win);
+   elm_button_autorepeat_set(button, EINA_TRUE);
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_autorepeat_set() failed in positive test case");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_button_autorepeat_set()
+ */
+static void utc_UIFW_elm_button_autorepeat_set_func_02(void)
+{
+   button = elm_button_add(main_win);
+   elm_button_autorepeat_set(NULL, EINA_TRUE);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_autorepeat_set() failed in negative test case");
+}
diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_icon_get_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_icon_get_func.c
new file mode 100644 (file)
index 0000000..401e7c4
--- /dev/null
@@ -0,0 +1,120 @@
+#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_UIFW_elm_button_icon_get_func_01(void);
+static void utc_UIFW_elm_button_icon_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_button_icon_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_button_icon_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 != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_button_icon_get()
+ */
+static void utc_UIFW_elm_button_icon_get_func_01(void)
+{
+   Evas_Object *button = NULL;
+   Evas_Object *icon = NULL;
+   char buff[PATH_MAX];
+   button = elm_button_add(main_win);
+   icon = elm_icon_add(main_win);
+   snprintf(buf, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buf, NULL);
+   evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
+   elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
+   elm_button_icon_set(button, icon);
+   if(elm_button_icon_get(button) == NULL)
+      {
+         tet_infoline("elm_button_con_get() failed in positive test case");
+         tet_result(TET_FAIL);
+      }
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_icon_get() failed in positive test case");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_button_icon_get()
+ */
+static void utc_UIFW_elm_button_icon_get_func_02(void)
+{
+   Evas_Object *button = NULL;
+   Evas_Object *icon = NULL;
+   char buff[PATH_MAX];
+   button = elm_button_add(main_win);
+   icon = elm_icon_add(main_win);
+   snprintf(buf, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buf, NULL);
+   evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
+   elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
+   elm_button_icon_set(button, icon);
+   if(elm_button_icon_get(NULL) != NULL)
+      {
+        evas_object_del(button);
+        button = NULL;
+        tet_infoline("elm_button_icon_get() failed in negative test case");
+        tet_result(TET_FAIL);
+      }
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_icon_get() failed in negative test case");
+}
diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_icon_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_icon_set_func.c
new file mode 100644 (file)
index 0000000..0bec2ec
--- /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; \
+               } \
+}
+
+
+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_button_icon_set_func_01(void);
+static void utc_UIFW_elm_button_icon_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_button_icon_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_button_icon_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 != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_button_icon_set()
+ */
+static void utc_UIFW_elm_button_icon_set_func_01(void)
+{
+   Evas_Object *button = NULL;
+   Evas_Object *icon = NULL;
+   char buff[PATH_MAX];
+   button = elm_button_add(main_win);
+   icon = elm_icon_add(main_win);
+   snprintf(buf, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buf, NULL);
+   evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
+   elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
+   elm_button_icon_set(button, icon);
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_icon_set() failed in positive test case");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_button_icon_set()
+ */
+static void utc_UIFW_elm_button_icon_set_func_02(void)
+{
+   Evas_Object *button = NULL;
+   Evas_Object *icon = NULL;
+   char buff[PATH_MAX];
+   button = elm_button_add(main_win);
+   icon = elm_icon_add(main_win);
+   snprintf(buf, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buf, NULL);
+   evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
+   elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
+   elm_button_icon_set(NULL, icon);
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_icon_set() failed in negative test case");
+}
diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c
new file mode 100644 (file)
index 0000000..0b935ee
--- /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; \
+               } \
+}
+
+
+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_button_label_get_for_state_func_01(void);
+static void utc_UIFW_elm_button_label_get_for_state_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_button_label_get_for_state_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_button_label_get_for_state_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 elm_button_label_get_for_state()
+ */
+static void utc_UIFW_elm_button_label_get_for_state_func_01(void)
+{
+   Evas_Object *button = NULL;
+   char *buffer;
+   button = elm_button_add(main_win);
+   elm_button_label_set(button, _("default"), UIControlStateDefault);
+   buffer = elm_button_label_get_for_state(btn, UIControlStateDefault));
+   if(!buffer)
+      {
+         tet_infoline("elm_button_label_get() failed in positive test case");
+         tet_result(TET_FAIL);
+         return;
+      }
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_label_get_for_state() failed in positive test case");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_button_label_get_for_state()
+ */
+static void utc_UIFW_elm_button_label_get_for_state_func_02(void)
+{
+   Evas_Object *button = NULL;
+   char *buffer;
+   button = elm_button_add(main_win);
+   elm_button_label_set(button, _("default"), UIControlStateDefault);
+   buffer = elm_button_label_get(NULL, _("default"), UIControlStateDefault);
+   if(buffer)
+      {
+         evas_object_del(button);
+         button = NULL;
+         tet_infoline("elm_button_label_get_for_state() failed in negative test case");
+         tet_result(TET_FAIL);
+         return;
+      }
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_label_get_for_state() failed in negative test case");
+}
diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_get_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_get_func.c
new file mode 100644 (file)
index 0000000..ade6df7
--- /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; \
+               } \
+}
+
+
+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_button_label_get_func_01(void);
+static void utc_UIFW_elm_button_label_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_button_label_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_button_label_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 != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_button_label_get()
+ */
+static void utc_UIFW_elm_button_label_get_func_01(void)
+{
+   Evas_Object *button = NULL;
+   char *buffer;
+   button = elm_button_add(main_win);
+   elm_button_label_set(button, _("default"));
+   buffer = elm_button_label_get(button));
+   if(!buffer)
+      {
+         tet_infoline("elm_button_label_get() failed in positive test case");
+         tet_result(TET_FAIL);
+      }
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_label_get() failed in positive test case");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_button_label_get()
+ */
+static void utc_UIFW_elm_button_label_get_func_02(void)
+{
+   Evas_Object *button = NULL;
+   char *buffer;
+   button = elm_button_add(main_win);
+   elm_button_label_set(button, _("default"));
+   buffer = elm_button_label_get(NULL);
+   if(buffer)
+      {
+         evas_object_del(button);
+         button = NULL;
+         tet_infoline("elm_button_label_get() failed in negative test case");
+         tet_result(TET_FAIL);
+      }
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_label_get() failed in negative test case");
+}
diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c
new file mode 100644 (file)
index 0000000..7c189b9
--- /dev/null
@@ -0,0 +1,96 @@
+#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_UIFW_elm_button_label_set_for_state_func_01(void);
+static void utc_UIFW_elm_button_label_set_for_state_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_button_label_set_for_state_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_button_label_set_for_state_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 elm_button_label_set_for_state()
+ */
+static void utc_UIFW_elm_button_label_set_for_state_func_01(void)
+{
+   Evas_Object *button = NULL;
+
+   button = elm_button_add(main_win);
+   elm_button_label_set_for_state(button, _("default"), UIControlStateDefault);
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_label_set_for_state() failed in positive test case");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_button_label_set_for_state()
+ */
+static void utc_UIFW_elm_button_label_set_for_state_func_02(void)
+{
+   Evas_Object *button = NULL;
+
+   button = elm_button_add(main_win);
+   elm_button_label_set_for_state(NULL, _("default"), UIControlStateDefault);
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_label_set_for_state() failed in negative test case");
+}
diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_set_func.c
new file mode 100644 (file)
index 0000000..84adbf5
--- /dev/null
@@ -0,0 +1,96 @@
+#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_UIFW_elm_button_label_set_func_01(void);
+static void utc_UIFW_elm_button_label_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_button_label_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_button_label_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 != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_button_label_set()
+ */
+static void utc_UIFW_elm_button_label_set_func_01(void)
+{
+   Evas_Object *button = NULL;
+
+   button = elm_button_add(main_win);
+   elm_button_label_set(button, _("default"));
+   evas_object_show(button);
+   evas_object_del(button);
+   button = NULL;
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_label_set() failed in positive test case");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_button_label_set()
+ */
+static void utc_UIFW_elm_button_label_set_func_02(void)
+{
+   Evas_Object *button = NULL;
+
+   button = elm_button_add(main_win);
+   elm_button_label_set(NULL, _("default"));
+   tet_result(TET_PASS);
+   tet_infoline("elm_button_label_set() failed in negative test case");
+}
index 88ac523..2da44ab 100644 (file)
@@ -11,8 +11,8 @@ elm
        :include:/elm_ts/colorpalette/tslist
        :include:/elm_ts/colorpicker/tslist
        :include:/elm_ts/gengrid/tslist
-        :include:/elm_ts/pagecontrol/tslist
-        :include:/elm_ts/selectioninfo/tslist
+    :include:/elm_ts/pagecontrol/tslist
+    :include:/elm_ts/selectioninfo/tslist
        :include:/elm_ts/button/tslist
        :include:/elm_ts/popup/tslist
        :include:/elm_ts/label/tslist