Implementation for ewk_settings_private_browsing
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / unittest / utc_blink_ewk_settings_clear_text_selection_automatically_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 extern struct Ewk_Test_View test_view;
8 class utc_blink_ewk_settings_clear_text_selection_automatically_set : public utc_blink_ewk_base {
9 };
10
11 /**
12  * @brief Tests if returns TRUE when initiated with a correct webview and
13  * enabled clear text selection automatically set to TRUE.
14  */
15 TEST_F(utc_blink_ewk_settings_clear_text_selection_automatically_set, POS_TEST1)
16 {
17   Ewk_Settings* settings = ewk_view_settings_get(GetEwkWebView());
18   if (!settings) {
19     FAIL();
20   }
21
22   Eina_Bool result = ewk_settings_clear_text_selection_automatically_set(settings, EINA_TRUE);
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 clear text selection automatically set to FALSE.
32  */
33 TEST_F(utc_blink_ewk_settings_clear_text_selection_automatically_set, POS_TEST2)
34 {
35   Ewk_Settings* settings = ewk_view_settings_get(GetEwkWebView());
36   if (!settings) {
37     FAIL();
38   }
39
40   Eina_Bool result = ewk_settings_clear_text_selection_automatically_set(settings, EINA_FALSE);
41   if (!result) {
42     FAIL();
43   }
44   EXPECT_EQ(result, EINA_TRUE);
45 }
46
47 /**
48  * @brief Tests if returns FALSE when initiated with NULL webview.
49  */
50 TEST_F(utc_blink_ewk_settings_clear_text_selection_automatically_set, NEG_TEST)
51 {
52   Eina_Bool result = ewk_settings_clear_text_selection_automatically_set(NULL, EINA_FALSE);
53   EXPECT_NE(result, EINA_TRUE);
54 }