test case updation for elm_calendar
authorRajeev Ranjan <rajeev.r@samsung.com>
Fri, 8 Oct 2010 09:38:50 +0000 (18:38 +0900)
committerRajeev Ranjan <rajeev.r@samsung.com>
Fri, 8 Oct 2010 09:38:50 +0000 (18:38 +0900)
TC/elm_ts/calendar/Makefile
TC/elm_ts/calendar/tslist
TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_set_func.c [new file with mode: 0644]
TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_set_func.c [new file with mode: 0644]
TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_set_func.c [new file with mode: 0644]
TC/elm_ts/calendar/utc_UIFW_elm_calendar_selected_time_set_func.c [new file with mode: 0644]
TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_set_func.c

index 96ba4fd..204fedd 100755 (executable)
@@ -8,7 +8,11 @@ TARGETS = utc_UIFW_elm_calendar_add_func \
          utc_UIFW_elm_calendar_marks_get_func \
          utc_UIFW_elm_calendar_min_max_year_get_func \
          utc_UIFW_elm_calendar_selected_time_get_func \
-         utc_UIFW_elm_calendar_weekdays_names_set_func 
+         utc_UIFW_elm_calendar_weekdays_names_set_func \
+         utc_UIFW_elm_calendar_interval_set_func \
+         utc_UIFW_elm_calendar_min_max_year_set_func \
+         utc_UIFW_elm_calendar_day_selection_enabled_set_func \
+         utc_UIFW_elm_calendar_selected_time_set_func
 
 PKGS = elementary
 
index fcfc374..d78380e 100644 (file)
@@ -7,3 +7,7 @@
 /elm_ts/calendar/utc_UIFW_elm_calendar_mark_add_func
 /elm_ts/calendar/utc_UIFW_elm_calendar_marks_get_func
 /elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_set_func
+/elm_ts/calendar/utc_UIFW_elm_calendar_interval_set_func
+/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_set_func
+/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_set_func
+/elm_ts/calendar/utc_UIFW_elm_calendar_selected_time_set_func
diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_set_func.c b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_set_func.c
new file mode 100644 (file)
index 0000000..c9f63ad
--- /dev/null
@@ -0,0 +1,97 @@
+#include <tet_api.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_calendar_day_selection_enabled_set_func_01(void);
+static void utc_UIFW_elm_calendar_day_selection_enabled_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_calendar_day_selection_enabled_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_calendar_day_selection_enabled_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_calendar_day_selection_enabled_set()
+ */
+static void utc_UIFW_elm_calendar_day_selection_enabled_set_func_01(void)
+{
+   Evas_Object *test_eo = elm_calendar_add(main_win);
+   elm_calendar_day_selection_enabled_set(test_eo, EINA_TRUE);
+
+   TET_CHECK_PASS(NULL, test_eo);
+
+   tet_result(TET_PASS);
+   tet_infoline("elm_calendar_day_selection_enabled_set() passed in positive test case");
+   evas_object_del(test_eo);
+   test_eo = NULL;
+}
+
+/**
+ * @brief Negative test case of ug_init elm_calendar_day_selection_enabled_set()
+ */
+static void utc_UIFW_elm_calendar_day_selection_enabled_set_func_02(void)
+{
+   Evas_Object *test_eo = elm_calendar_add(main_win);
+   elm_calendar_day_selection_enabled_set(NULL, EINA_TRUE);
+   tet_infoline("elm_calendar_day_selection_enabled_set() passed in negative test case");
+   evas_object_del(test_eo);
+   test_eo = NULL;
+   tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_set_func.c b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_set_func.c
new file mode 100644 (file)
index 0000000..e514c5d
--- /dev/null
@@ -0,0 +1,97 @@
+#include <tet_api.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_calendar_interval_set_func_01(void);
+static void utc_UIFW_elm_calendar_interval_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_calendar_interval_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_calendar_interval_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_calendar_interval_set()
+ */
+static void utc_UIFW_elm_calendar_interval_set_func_01(void)
+{
+   Evas_Object *test_eo = elm_calendar_add(main_win);
+   elm_calendar_interval_set(test_eo, 0.4);
+
+   TET_CHECK_PASS(NULL, test_eo);
+
+   tet_result(TET_PASS);
+   tet_infoline("elm_calendar_interval_set() passed in positive test case");
+   evas_object_del(test_eo);
+   test_eo = NULL;
+}
+
+/**
+ * @brief Negative test case of ug_init elm_calendar_interval_set()
+ */
+static void utc_UIFW_elm_calendar_interval_set_func_02(void)
+{
+   Evas_Object *test_eo = elm_calendar_add(main_win);
+   elm_calendar_interval_set(NULL, 0.4);
+   tet_infoline("elm_calendar_interval_set() passed in negative test case");
+   evas_object_del(test_eo);
+   test_eo = NULL;
+   tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_set_func.c b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_set_func.c
new file mode 100644 (file)
index 0000000..83193ba
--- /dev/null
@@ -0,0 +1,97 @@
+#include <tet_api.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_calendar_min_max_year_set_func_01(void);
+static void utc_UIFW_elm_calendar_min_max_year_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_calendar_min_max_year_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_calendar_min_max_year_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_calendar_min_max_year_set()
+ */
+static void utc_UIFW_elm_calendar_min_max_year_set_func_01(void)
+{
+   Evas_Object *test_eo = elm_calendar_add(main_win);
+   elm_calendar_min_max_year_set(test_eo, 2010, 2020);
+
+   TET_CHECK_PASS(NULL, test_eo);
+
+   tet_result(TET_PASS);
+   tet_infoline("elm_calendar_min_max_year_set() passed in positive test case");
+   evas_object_del(test_eo);
+   test_eo = NULL;
+}
+
+/**
+ * @brief Negative test case of ug_init elm_calendar_min_max_year_set()
+ */
+static void utc_UIFW_elm_calendar_min_max_year_set_func_02(void)
+{
+   Evas_Object *test_eo = elm_calendar_add(main_win);
+   elm_calendar_min_max_year_set(NULL, 2010, 2020);
+   tet_infoline("elm_calendar_min_max_year_set() passed in negative test case");
+   evas_object_del(test_eo);
+   test_eo = NULL;
+   tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_selected_time_set_func.c b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_selected_time_set_func.c
new file mode 100644 (file)
index 0000000..c1928d7
--- /dev/null
@@ -0,0 +1,105 @@
+#include <tet_api.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 void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_calendar_selected_time_set_func_01(void);
+static void utc_UIFW_elm_calendar_selected_time_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_calendar_selected_time_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_calendar_selected_time_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_calendar_selected_time_set()
+ */
+static void utc_UIFW_elm_calendar_selected_time_set_func_01(void)
+{
+   Evas_Object *test_eo = NULL;
+   struct tm selected_time;
+   time_t current_time;
+   test_eo = elm_calendar_add(main_win);
+   current_time = time(NULL) + 34 * 84600;
+   localtime_r(&current_time, &selected_time);
+   elm_calendar_selected_time_set(test_eo, &selected_time);
+
+   TET_CHECK_PASS(NULL, test_eo);
+
+   tet_result(TET_PASS);
+   tet_infoline("elm_calendar_selected_time_set() passed in positive test case");
+   evas_object_del(test_eo);
+   test_eo = NULL;
+}
+
+/**
+ * @brief Negative test case of ug_init elm_calendar_selected_time_set()
+ */
+static void utc_UIFW_elm_calendar_selected_time_set_func_02(void)
+{
+   Evas_Object *test_eo = NULL;
+   struct tm selected_time;
+   time_t current_time;
+   test_eo = elm_calendar_add(main_win);
+   current_time = time(NULL) + 34 * 84600;
+   localtime_r(&current_time, &selected_time);
+   elm_calendar_selected_time_set(NULL, &selected_time);
+   tet_infoline("elm_calendar_selected_time_set() passed in negative test case");
+   evas_object_del(test_eo);
+   test_eo = NULL;
+   tet_result(TET_PASS);
+}
index 5ff1627..b132806 100644 (file)
@@ -26,6 +26,8 @@
                } \
 }
 
+Evas_Object *main_win;
+
 static void startup(void);
 static void cleanup(void);