From b5f5a2a2160b62276e77a5338ad65ba3225a1922 Mon Sep 17 00:00:00 2001 From: Rajeev Ranjan Date: Fri, 8 Oct 2010 18:38:50 +0900 Subject: [PATCH] test case updation for elm_calendar --- TC/elm_ts/calendar/Makefile | 6 +- TC/elm_ts/calendar/tslist | 4 + ...W_elm_calendar_day_selection_enabled_set_func.c | 97 +++++++++++++++++++ .../utc_UIFW_elm_calendar_interval_set_func.c | 97 +++++++++++++++++++ .../utc_UIFW_elm_calendar_min_max_year_set_func.c | 97 +++++++++++++++++++ .../utc_UIFW_elm_calendar_selected_time_set_func.c | 105 +++++++++++++++++++++ ...utc_UIFW_elm_calendar_weekdays_names_set_func.c | 2 + 7 files changed, 407 insertions(+), 1 deletion(-) create mode 100644 TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_set_func.c create mode 100644 TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_set_func.c create mode 100644 TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_set_func.c create mode 100644 TC/elm_ts/calendar/utc_UIFW_elm_calendar_selected_time_set_func.c diff --git a/TC/elm_ts/calendar/Makefile b/TC/elm_ts/calendar/Makefile index 96ba4fd..204fedd 100755 --- a/TC/elm_ts/calendar/Makefile +++ b/TC/elm_ts/calendar/Makefile @@ -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 diff --git a/TC/elm_ts/calendar/tslist b/TC/elm_ts/calendar/tslist index fcfc374..d78380e 100644 --- a/TC/elm_ts/calendar/tslist +++ b/TC/elm_ts/calendar/tslist @@ -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 index 0000000..c9f63ad --- /dev/null +++ b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_set_func.c @@ -0,0 +1,97 @@ +#include + + +// Definitions +// For checking the result of the positive test case. +#define TET_CHECK_PASS(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err == (x1)) \ + { \ + tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + +// For checking the result of the negative test case. +#define TET_CHECK_FAIL(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err != (x1)) \ + { \ + tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + +Evas_Object *main_win; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_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 index 0000000..e514c5d --- /dev/null +++ b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_set_func.c @@ -0,0 +1,97 @@ +#include + + +// Definitions +// For checking the result of the positive test case. +#define TET_CHECK_PASS(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err == (x1)) \ + { \ + tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + +// For checking the result of the negative test case. +#define TET_CHECK_FAIL(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err != (x1)) \ + { \ + tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + +Evas_Object *main_win; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_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 index 0000000..83193ba --- /dev/null +++ b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_set_func.c @@ -0,0 +1,97 @@ +#include + + +// Definitions +// For checking the result of the positive test case. +#define TET_CHECK_PASS(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err == (x1)) \ + { \ + tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + +// For checking the result of the negative test case. +#define TET_CHECK_FAIL(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err != (x1)) \ + { \ + tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + +Evas_Object *main_win; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_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 index 0000000..c1928d7 --- /dev/null +++ b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_selected_time_set_func.c @@ -0,0 +1,105 @@ +#include + + +// Definitions +// For checking the result of the positive test case. +#define TET_CHECK_PASS(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err == (x1)) \ + { \ + tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + +// For checking the result of the negative test case. +#define TET_CHECK_FAIL(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err != (x1)) \ + { \ + tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + +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(¤t_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(¤t_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); +} diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_set_func.c b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_set_func.c index 5ff1627..b132806 100644 --- a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_set_func.c +++ b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_set_func.c @@ -26,6 +26,8 @@ } \ } +Evas_Object *main_win; + static void startup(void); static void cleanup(void); -- 2.7.4