Merge "[Cherry-pick] Refactor WrapShape classes to BasicShape" into tizen_2.1
[framework/web/webkit-efl.git] / TC / unit_test / webkit2 / utc_webkit2_ewk_settings_load_remote_images_set_func.c
1 /*\r
2  * WebKit2 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_settings_load_remote_images_set\r
24 #define POSITIVE_TEST_FUN_NUM 2\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 webview and set to TRUE.\r
42  */\r
43 POS_TEST_FUN(1)\r
44 {\r
45     Ewk_Settings* settings = ewk_view_settings_get(test_view.webview);\r
46     Eina_Bool result = ewk_settings_load_remote_images_set(settings, EINA_TRUE);\r
47     if (!result)\r
48         utc_fail();\r
49 \r
50     result = ewk_settings_load_remote_images_get(settings);\r
51 \r
52     utc_check_eq(result, EINA_TRUE);\r
53 }\r
54 \r
55 /**\r
56  * @brief Tests if returns FALSE when initiated with a correct webview and set to FALSE.\r
57  */\r
58 POS_TEST_FUN(2)\r
59 {\r
60     Ewk_Settings* settings = ewk_view_settings_get(test_view.webview);\r
61     Eina_Bool result = ewk_settings_load_remote_images_set(settings, EINA_FALSE);\r
62     if (!result)\r
63         utc_fail();\r
64 \r
65     result = ewk_settings_load_remote_images_get(settings);\r
66 \r
67     utc_check_eq(result, EINA_FALSE);\r
68 }\r
69 \r
70 /**\r
71  * @brief Tests if returns FALSE when initiated with NULL webview.\r
72  */\r
73 NEG_TEST_FUN(1)\r
74 {\r
75     Eina_Bool result = ewk_settings_load_remote_images_set(NULL, EINA_TRUE);\r
76     utc_check_eq(result, EINA_FALSE);\r
77 }\r