From: Rajeev Ranjan Date: Fri, 8 Oct 2010 08:04:22 +0000 (+0900) Subject: Adding test cases for calendar X-Git-Tag: origin~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9437162ab93f1316f31e1a45ffc546c38781cded;p=framework%2Fuifw%2Felementary.git Adding test cases for calendar --- diff --git a/TC/elm_ts/calendar/Makefile b/TC/elm_ts/calendar/Makefile index 735ac93..96ba4fd 100755 --- a/TC/elm_ts/calendar/Makefile +++ b/TC/elm_ts/calendar/Makefile @@ -7,7 +7,8 @@ TARGETS = utc_UIFW_elm_calendar_add_func \ utc_UIFW_elm_calendar_mark_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_selected_time_get_func \ + utc_UIFW_elm_calendar_weekdays_names_set_func PKGS = elementary diff --git a/TC/elm_ts/calendar/tet_captured b/TC/elm_ts/calendar/tet_captured deleted file mode 100644 index 685b325..0000000 --- a/TC/elm_ts/calendar/tet_captured +++ /dev/null @@ -1 +0,0 @@ -cc -I. `pkg-config --cflags elementary` -I/scratchbox/TETware/tetware-target/inc/tet3 -Wall `pkg-config --libs elementary` /scratchbox/TETware/tetware-target/lib/tet3/tcm_s.o -L/scratchbox/TETware/tetware-target/lib/tet3 -ltcm_s -L/scratchbox/TETware/tetware-target/lib/tet3 -lapi_s utc_UIFW_elm_calendar_day_selection_enabled_get_func.c -o utc_UIFW_elm_calendar_day_selection_enabled_get_func diff --git a/TC/elm_ts/calendar/tslist b/TC/elm_ts/calendar/tslist index 6e65007..fcfc374 100644 --- a/TC/elm_ts/calendar/tslist +++ b/TC/elm_ts/calendar/tslist @@ -6,3 +6,4 @@ /elm_ts/calendar/utc_UIFW_elm_calendar_selected_time_get_func /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 diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_add_func.c b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_add_func.c index bd9e93b..5651b8d 100644 --- a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_add_func.c +++ b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_add_func.c @@ -28,7 +28,6 @@ } Evas_Object *main_win; -Evas_Object *test_eo = NULL; static void startup(void); static void cleanup(void); @@ -64,11 +63,6 @@ static void cleanup(void) evas_object_del(main_win); main_win = NULL; } - - if ( NULL != test_eo ) { - evas_object_del(test_eo); - test_eo = NULL; - } elm_shutdown(); tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); @@ -79,11 +73,13 @@ static void cleanup(void) */ static void utc_UIFW_elm_calendar_add_func_01(void) { - test_eo = elm_calendar_add(main_win); + Evas_Object *test_eo = elm_calendar_add(main_win); TET_CHECK_PASS(NULL, test_eo); tet_result(TET_PASS); - tet_infoline("elm_calendar_add() failed in positive test case"); + tet_infoline("elm_calendar_add() passed in positive test case"); + evas_object_del(test_eo); + test_eo = NULL; } /** @@ -91,9 +87,9 @@ static void utc_UIFW_elm_calendar_add_func_01(void) */ static void utc_UIFW_elm_calendar_add_func_02(void) { - test_eo = elm_calendar_add(NULL); + Evas_Object *test_eo = elm_calendar_add(NULL); TET_CHECK_FAIL(NULL, test_eo); tet_result(TET_PASS); - tet_infoline("elm_calendar_add() failed in negative test case"); + tet_infoline("elm_calendar_add() passed in negative test case"); } diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func deleted file mode 100755 index 00b00a9..0000000 Binary files a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func and /dev/null differ diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func.c b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func.c index 31d9086..c5b2dd3 100644 --- a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func.c +++ b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func.c @@ -102,7 +102,7 @@ static void utc_UIFW_elm_calendar_min_max_year_get_func_02(void) { int min = 0, max = 0; - elm_calendar_min_max_year_get(test_eo, &min, &max); + elm_calendar_min_max_year_get(NULL, &min, &max); if (min == min_year && max == max_year) { tet_infoline("elm_calendar_min_max_year_get() failed in negative test case"); tet_result(TET_FAIL); diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_get_func b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_get_func deleted file mode 100755 index f797ba8..0000000 Binary files a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_get_func and /dev/null differ 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 new file mode 100644 index 0000000..5ff1627 --- /dev/null +++ b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_set_func.c @@ -0,0 +1,103 @@ +#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_weekdays_names_set_func_01(void); +static void utc_UIFW_elm_calendar_weekdays_names_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_calendar_weekdays_names_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_calendar_weekdays_names_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_weekdays_names_set() + */ +static void utc_UIFW_elm_calendar_weekdays_names_set_func_01(void) +{ + Evas_Object *test_eo = elm_calendar_add(main_win); + const char *weekdays[] = + { + "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" + }; + elm_calendar_weekdays_names_set(test_eo, weekdays); + + TET_CHECK_PASS(NULL, test_eo); + + tet_result(TET_PASS); + tet_infoline("elm_calendar_weekdays_names_set() passed in positive test case"); + evas_object_del(test_eo); + test_eo = NULL; +} + +/** + * @brief Negative test case of ug_init elm_calendar_weekdays_names_set() + */ +static void utc_UIFW_elm_calendar_weekdays_names_set_func_02(void) +{ + Evas_Object *test_eo = elm_calendar_add(main_win); + const char *weekdays[] = + { + "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" + }; + elm_calendar_weekdays_names_set(NULL, weekdays); + tet_infoline("elm_calendar_weekdays_names_set() passed in negative test case"); + evas_object_del(test_eo); + test_eo = NULL; + tet_result(TET_PASS); +}