[entry] added test cases for entry
authorMyungjae Lee <mjae.lee@samsung.com>
Wed, 27 Oct 2010 12:44:24 +0000 (21:44 +0900)
committerMyungjae Lee <mjae.lee@samsung.com>
Wed, 27 Oct 2010 12:44:24 +0000 (21:44 +0900)
TC/elm_ts/entry/tslist
TC/elm_ts/entry/utc_UIFW_elm_entry_add_func.c [new file with mode: 0644]
TC/elm_ts/entry/utc_UIFW_elm_entry_cursor_next_func.c [new file with mode: 0644]
TC/elm_ts/entry/utc_UIFW_elm_entry_cursor_prev_func.c [new file with mode: 0644]
TC/elm_ts/entry/utc_UIFW_elm_entry_editable_get_func.c [new file with mode: 0644]
TC/elm_ts/entry/utc_UIFW_elm_entry_entry_get_func.c [new file with mode: 0644]
TC/elm_ts/entry/utc_UIFW_elm_entry_password_get_func.c [new file with mode: 0644]
TC/elm_ts/entry/utc_UIFW_elm_entry_selection_get_func.c [new file with mode: 0644]
TC/elm_ts/entry/utc_UIFW_elm_entry_single_line_get_func.c [new file with mode: 0644]
TC/elm_ts/entry/utc_UIFW_elm_entry_wrap_width_get_func.c [new file with mode: 0644]

index c579df1..de15add 100644 (file)
@@ -1,3 +1,11 @@
+/elm_ts/entry/utc_UIFW_elm_entry_add_func
+/elm_ts/entry/utc_UIFW_elm_entry_single_line_get_func
+/elm_ts/entry/utc_UIFW_elm_entry_password_get_func
+/elm_ts/entry/utc_UIFW_elm_entry_entry_get_func
+/elm_ts/entry/utc_UIFW_elm_entry_wrap_width_get_func
+/elm_ts/entry/utc_UIFW_elm_entry_editable_get_func
+/elm_ts/entry/utc_UIFW_elm_entry_cursor_next_func
+/elm_ts/entry/utc_UIFW_elm_entry_cursor_prev_func
 /elm_ts/entry/utc_UIFW_elm_entry_cursor_up_func
 /elm_ts/entry/utc_UIFW_elm_entry_cursor_down_func
 /elm_ts/entry/utc_UIFW_elm_entry_cursor_is_format_get_func
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_add_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_add_func.c
new file mode 100644 (file)
index 0000000..d3895b8
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>\r
+#include <Elementary.h>\r
+\r
+// Definitions\r
+// For checking the result of the positive test case.\r
+#define TET_CHECK_PASS(x1, y...) \\r
+{ \\r
+       Evas_Object *err = y; \\r
+       if (err == (x1)) \\r
+               { \\r
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \\r
+                       tet_result(TET_FAIL); \\r
+                       return; \\r
+               } \\r
+}\r
+\r
+// For checking the result of the negative test case.\r
+#define TET_CHECK_FAIL(x1, y...) \\r
+{ \\r
+       Evas_Object *err = y; \\r
+       if (err != (x1)) \\r
+               { \\r
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \\r
+                       tet_result(TET_FAIL); \\r
+                       return; \\r
+               } \\r
+}\r
+\r
+\r
+Evas_Object *main_win;\r
+\r
+static void startup(void);\r
+static void cleanup(void);\r
+\r
+void (*tet_startup)(void) = startup;\r
+void (*tet_cleanup)(void) = cleanup;\r
+\r
+static void utc_UIFW_elm_entry_add_func_01(void);\r
+static void utc_UIFW_elm_entry_add_func_02(void);\r
+\r
+enum {\r
+       POSITIVE_TC_IDX = 0x01,\r
+       NEGATIVE_TC_IDX,\r
+};\r
+\r
+struct tet_testlist tet_testlist[] = {\r
+       { utc_UIFW_elm_entry_add_func_01, POSITIVE_TC_IDX },\r
+       { utc_UIFW_elm_entry_add_func_02, NEGATIVE_TC_IDX },\r
+       { NULL, 0 }\r
+};\r
+\r
+static void startup(void)\r
+{\r
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");\r
+       elm_init(0, NULL);\r
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);\r
+       evas_object_show(main_win);     \r
+}\r
+\r
+static void cleanup(void)\r
+{\r
+       if ( NULL != main_win ) {\r
+               evas_object_del(main_win);\r
+               main_win = NULL;\r
+       }\r
+       elm_shutdown();\r
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");\r
+}\r
+\r
+/**\r
+ * @brief Positive test case of elm_entry_add()\r
+ */\r
+static void utc_UIFW_elm_entry_add_func_01(void)\r
+{\r
+       Evas_Object *entry = NULL;\r
+       Evas *e;\r
+       e = evas_object_evas_get(main_win);\r
+       entry= elm_entry_add(e);\r
+       evas_object_show(entry);        \r
+       if (!entry) {\r
+               tet_infoline("elm_entry_add() failed in positive test case");\r
+               tet_result(TET_FAIL);\r
+               return;\r
+       }\r
+       tet_result(TET_PASS);\r
+}\r
+\r
+/**\r
+ * @brief Negative test case of ug_init elm_entry_add()\r
+ */\r
+static void utc_UIFW_elm_entry_add_func_02(void)\r
+{\r
+       Evas_Object *entry = NULL;\r
+       Evas *e;\r
+       e = evas_object_evas_get(main_win);\r
+       entry = elm_entry_add(NULL);\r
+       evas_object_show(entry);\r
+       if (entry) {\r
+               tet_infoline("elm_entry_add() failed in negative test case");\r
+               tet_result(TET_FAIL);\r
+               return;\r
+       }\r
+       tet_result(TET_PASS);\r
+}\r
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_cursor_next_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_cursor_next_func.c
new file mode 100644 (file)
index 0000000..3785f42
--- /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;
+Evas_Object *entry;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_entry_cursor_next_func_01(void);
+static void utc_UIFW_elm_entry_cursor_next_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_entry_cursor_next_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_entry_cursor_next_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);     
+       entry = elm_entry_add(main_win);
+       evas_object_show(entry);
+       elm_entry_entry_set(entry, "test string");
+       elm_entry_cursor_begin_set(entry);
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       if ( NULL != entry ) {
+               evas_object_del(entry);
+               entry = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_entry_cursor_next()
+ */
+static void utc_UIFW_elm_entry_cursor_next_func_01(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_cursor_next(entry);
+       
+       if (!ret) {
+               tet_infoline("elm_entry_cursor_next() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_entry_cursor_next()
+ */
+static void utc_UIFW_elm_entry_cursor_next_func_02(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_cursor_next(NULL);
+
+       if (ret) {
+               tet_infoline("elm_entry_cursor_next() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_cursor_prev_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_cursor_prev_func.c
new file mode 100644 (file)
index 0000000..e98cdc8
--- /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;
+Evas_Object *entry;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_entry_cursor_prev_func_01(void);
+static void utc_UIFW_elm_entry_cursor_prev_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_entry_cursor_prev_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_entry_cursor_prev_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);     
+       entry = elm_entry_add(main_win);
+       evas_object_show(entry);
+       elm_entry_entry_set(entry, "test string");
+       elm_entry_cursor_end_set(entry);
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       if ( NULL != entry ) {
+               evas_object_del(entry);
+               entry = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_entry_cursor_prev()
+ */
+static void utc_UIFW_elm_entry_cursor_prev_func_01(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_cursor_prev(entry);
+       
+       if (!ret) {
+               tet_infoline("elm_entry_cursor_prev() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_entry_cursor_prev()
+ */
+static void utc_UIFW_elm_entry_cursor_prev_func_02(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_cursor_prev(NULL);
+
+       if (ret) {
+               tet_infoline("elm_entry_cursor_prev() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_editable_get_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_editable_get_func.c
new file mode 100644 (file)
index 0000000..104f658
--- /dev/null
@@ -0,0 +1,107 @@
+#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;
+Evas_Object *entry;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_entry_editable_get_func_01(void);
+static void utc_UIFW_elm_entry_editable_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_entry_editable_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_entry_editable_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);     
+       entry = elm_entry_add(main_win);
+       evas_object_show(entry);
+       elm_entry_editable_set(entry, EINA_TRUE);
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       if ( NULL != entry ) {
+               evas_object_del(entry);
+               entry = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_entry_editable_get()
+ */
+static void utc_UIFW_elm_entry_editable_get_func_01(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_editable_get(entry);
+       
+       if (!ret) {
+               tet_infoline("elm_entry_editable_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_entry_editable_get()
+ */
+static void utc_UIFW_elm_entry_editable_get_func_02(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_editable_get(NULL);
+
+       if (ret) {
+               tet_infoline("elm_entry_editable_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_entry_get_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_entry_get_func.c
new file mode 100644 (file)
index 0000000..c417a89
--- /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;
+Evas_Object *entry;
+const char *test_str = "test string";
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_entry_entry_get_func_01(void);
+static void utc_UIFW_elm_entry_entry_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_entry_entry_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_entry_entry_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);     
+       entry = elm_entry_add(main_win);
+       evas_object_show(entry);
+       elm_entry_entry_set(entry, test_str);
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       if ( NULL != entry ) {
+               evas_object_del(entry);
+               entry = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_entry_entry_get()
+ */
+static void utc_UIFW_elm_entry_entry_get_func_01(void)
+{
+       const char *str = NULL;
+       str = elm_entry_entry_get(entry);
+       
+       if (strcmp(str, test_str)) {
+               tet_infoline("elm_entry_entry_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_entry_entry_get()
+ */
+static void utc_UIFW_elm_entry_entry_get_func_02(void)
+{
+       const char *str = NULL;
+       str = elm_entry_entry_get(NULL);
+
+       if (str) {
+               tet_infoline("elm_entry_entry_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_password_get_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_password_get_func.c
new file mode 100644 (file)
index 0000000..51081f3
--- /dev/null
@@ -0,0 +1,107 @@
+#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;
+Evas_Object *entry;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_entry_password_get_func_01(void);
+static void utc_UIFW_elm_entry_password_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_entry_password_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_entry_password_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);     
+       entry = elm_entry_add(main_win);
+       evas_object_show(entry);
+       elm_entry_password_set(entry, EINA_TRUE);
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       if ( NULL != entry ) {
+               evas_object_del(entry);
+               entry = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_entry_password_get()
+ */
+static void utc_UIFW_elm_entry_password_get_func_01(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_password_get(entry);
+       
+       if (!ret) {
+               tet_infoline("elm_entry_password_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_entry_password_get()
+ */
+static void utc_UIFW_elm_entry_password_get_func_02(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_password_get(NULL);
+
+       if (ret) {
+               tet_infoline("elm_entry_password_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_selection_get_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_selection_get_func.c
new file mode 100644 (file)
index 0000000..ff5c127
--- /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;
+Evas_Object *entry;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_entry_selection_get_func_01(void);
+static void utc_UIFW_elm_entry_selection_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_entry_selection_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_entry_selection_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);     
+       entry = elm_entry_add(main_win);
+       evas_object_show(entry);
+       elm_entry_entry_set(entry, "test string");
+       elm_entry_select_all(entry);
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       if ( NULL != entry ) {
+               evas_object_del(entry);
+               entry = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_entry_selection_get()
+ */
+static void utc_UIFW_elm_entry_selection_get_func_01(void)
+{
+       const char *str = NULL;
+       str = elm_entry_selection_get(entry);
+       
+       if (!ret) {
+               tet_infoline("elm_entry_selection_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_entry_selection_get()
+ */
+static void utc_UIFW_elm_entry_selection_get_func_02(void)
+{
+       const char *str = NULL;
+       str = elm_entry_selection_get(NULL);
+
+       if (ret) {
+               tet_infoline("elm_entry_selection_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_single_line_get_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_single_line_get_func.c
new file mode 100644 (file)
index 0000000..89c43d3
--- /dev/null
@@ -0,0 +1,107 @@
+#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;
+Evas_Object *entry;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_entry_single_line_get_func_01(void);
+static void utc_UIFW_elm_entry_single_line_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_entry_single_line_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_entry_single_line_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);     
+       entry = elm_entry_add(main_win);
+       evas_object_show(entry);
+       elm_entry_single_line_set(entry, EINA_TRUE);
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       if ( NULL != entry ) {
+               evas_object_del(entry);
+               entry = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_entry_single_line_get()
+ */
+static void utc_UIFW_elm_entry_single_line_get_func_01(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_single_line_get(entry);
+       
+       if (!ret) {
+               tet_infoline("elm_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_entry_single_line_get()
+ */
+static void utc_UIFW_elm_entry_single_line_get_func_02(void)
+{
+       Eina_Bool ret = EINA_FALSE;
+       ret = elm_entry_single_line_get(NULL);
+
+       if (ret) {
+               tet_infoline("elm_entry_single_line_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_wrap_width_get_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_wrap_width_get_func.c
new file mode 100644 (file)
index 0000000..d396e04
--- /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;
+Evas_Object *entry;
+const Evas_Coord test_wrap_width = 10;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_entry_wrap_width_get_func_01(void);
+static void utc_UIFW_elm_entry_wrap_width_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_entry_wrap_width_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_entry_wrap_width_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);     
+       entry = elm_entry_add(main_win);
+       evas_object_show(entry);
+       elm_entry_wrap_width_set(entry, test_wrap_width);
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       if ( NULL != entry ) {
+               evas_object_del(entry);
+               entry = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_entry_wrap_width_get()
+ */
+static void utc_UIFW_elm_entry_wrap_width_get_func_01(void)
+{
+       Evas_Coord w = 0;
+       w = elm_entry_wrap_width_get(entry);
+       
+       if (w!=test_wrap_width) {
+               tet_infoline("elm_entry_wrap_width_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_entry_wrap_width_get()
+ */
+static void utc_UIFW_elm_entry_wrap_width_get_func_02(void)
+{
+       Evas_Coord w = 0;
+       w = elm_entry_wrap_width_get(NULL);
+
+       if (w) {
+               tet_infoline("elm_entry_wrap_width_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}