[M120 Migration][MM] Support W3C EME
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / unittest / utc_blink_ewk_settings_text_zoom_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_zoom_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 zoom set to TRUE.
13 */
14 TEST_F(utc_blink_ewk_settings_text_zoom_enabled_set, POS_TEST)
15 {
16   Ewk_Settings* settings = ewk_view_settings_get(GetEwkWebView());
17   if (!settings) {
18     FAIL();
19   }
20
21   Eina_Bool result = ewk_settings_text_zoom_enabled_set(settings, EINA_TRUE);
22   if (!result) {
23     FAIL();
24   }
25   EXPECT_EQ(result, EINA_TRUE);
26 }
27
28 /**
29 * @brief Tests if returns FALSE when initiated with a correct webview and
30 * enabled text zoom set to FALSE.
31 */
32 TEST_F(utc_blink_ewk_settings_text_zoom_enabled_set, NEG_TEST1)
33 {
34   Ewk_Settings* settings = ewk_view_settings_get(GetEwkWebView());
35   if (!settings) {
36     FAIL();
37   }
38
39   Eina_Bool result = ewk_settings_text_zoom_enabled_set(settings, EINA_FALSE);
40   if (!result) {
41     FAIL();
42   }
43   EXPECT_EQ(result, EINA_TRUE);
44 }
45
46 /**
47 * @brief Tests if returns FALSE when initiated with NULL webview.
48 */
49 TEST_F(utc_blink_ewk_settings_text_zoom_enabled_set, NEG_TEST2)
50 {
51   Eina_Bool result = ewk_settings_text_zoom_enabled_set(NULL, EINA_FALSE);
52   EXPECT_NE(result, EINA_TRUE);
53 }