[M120 Migration][MM] Support W3C EME
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / unittest / utc_blink_ewk_settings_text_style_state_enabled_set_func.cpp
1 // Copyright 2014 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "utc_blink_ewk_base.h"
6
7 class utc_blink_ewk_settings_text_style_state_enabled_set : public utc_blink_ewk_base {
8 };
9
10 /**
11  * @brief Tests if returns TRUE when initiated with a correct webview and
12  * enabled text selection set to TRUE.
13  */
14 TEST_F(utc_blink_ewk_settings_text_style_state_enabled_set, POS_TEST1)
15 {
16   Ewk_Settings* settings = ewk_view_settings_get(GetEwkWebView());
17   if (!settings) {
18     FAIL();
19   }
20
21   ewk_settings_text_style_state_enabled_set(settings, EINA_TRUE);
22   Eina_Bool result = ewk_settings_text_style_state_enabled_get(settings);
23   if (!result) {
24     FAIL();
25   }
26   EXPECT_EQ(result, EINA_TRUE);
27 }
28
29 /**
30  * @brief Tests if returns TRUE when initiated with a correct webview and
31  * enabled text selection set to FALSE.
32  */
33 TEST_F(utc_blink_ewk_settings_text_style_state_enabled_set, POS_TEST2)
34 {
35   Ewk_Settings* settings = ewk_view_settings_get(GetEwkWebView());
36   if (!settings) {
37     FAIL();
38   }
39
40   ewk_settings_text_style_state_enabled_set(settings, EINA_FALSE);
41   Eina_Bool result = ewk_settings_text_style_state_enabled_get(settings);
42   if (result) {
43     FAIL();
44   }
45   EXPECT_EQ(result, EINA_FALSE);
46 }
47
48 /**
49  * @brief Tests if returns FALSE when initiated with NULL webview.
50  */
51 TEST_F(utc_blink_ewk_settings_text_style_state_enabled_set, NEG_TEST)
52 {
53   ewk_settings_text_style_state_enabled_set(NULL, EINA_FALSE);
54   SUCCEED();
55 }