Merge "[Cherry-pick] Refactor WrapShape classes to BasicShape" into tizen_2.1
[framework/web/webkit-efl.git] / TC / unit_test / webkit2 / utc_webkit2_ewk_view_history_get_func.c
1 /*\r
2  * WebKit EFL\r
3  *\r
4  * Copyright (c) 2012 Samsung Electronics Co., Ltd.\r
5  *\r
6  * This library is free software; you can redistribute it and/or modify it under\r
7  * the terms of the GNU Lesser General Public License as published by the\r
8  * Free Software Foundation; either version 2.1 of the License, or (at your option)\r
9  * any later version.\r
10  *\r
11  * This library is distributed in the hope that it will be useful, but WITHOUT ANY\r
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
13  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\r
14  * License for more details.\r
15  *\r
16  * You should have received a copy of the GNU Lesser General Public License\r
17  * along with this library; if not, write to the Free Software Foundation, Inc., 51\r
18  * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r
19  *\r
20  */\r
21 \r
22 /* Define those macros _before_ you include the utc_webkit2_ewk.h header file. */\r
23 #define TESTED_FUN_NAME ewk_view_history_get\r
24 #define POSITIVE_TEST_FUN_NUM 1\r
25 #define NEGATIVE_TEST_FUN_NUM 1\r
26 \r
27 #include "utc_webkit2_ewk.h"\r
28 \r
29 /* Startup and cleanup functions */\r
30 static void startup(void)\r
31 {\r
32     utc_webkit2_ewk_test_init();\r
33 }\r
34 \r
35 static void cleanup(void)\r
36 {\r
37     utc_webkit2_ewk_test_end();\r
38 }\r
39 \r
40 /**\r
41  * @brief Tests if returns TRUE when initiated with a correct context.\r
42  */\r
43 POS_TEST_FUN(1)\r
44 {\r
45     Eina_Bool result = EINA_FALSE;\r
46     Ewk_History* history = ewk_view_history_get(test_view.webview);\r
47 \r
48     if (history)\r
49         result = EINA_TRUE;\r
50 \r
51     ewk_history_free(history);\r
52     utc_check_eq(result, EINA_TRUE);\r
53 }\r
54 \r
55 /**\r
56  * @brief Tests if returns FALSE when not initiated with NULL context.\r
57  */\r
58 NEG_TEST_FUN(1)\r
59 {\r
60     Ewk_History* history = ewk_view_history_get(NULL);\r
61     utc_check_eq(history, NULL);\r
62 }\r