summaryrefslogtreecommitdiff
path: root/Source/WebKit/efl/tests/test_ewk_setting.cpp
blob: 5398964ddfc1d8c764f39f68edf613b4a54d344e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
 * Copyright (C) 2013 Cisco Systems, Inc. 
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1.  Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 * 2.  Red istributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ITS CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
 * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "config.h"

#include "UnitTestUtils/EWKTestBase.h"
#include "UnitTestUtils/EWKTestConfig.h"
#include <EWebKit.h>

using namespace EWKUnitTests;

/**
 * @brief Unit test for checking set/get of default quota for Web Database databases by ewk settings API.
 */
TEST_F(EWKTestBase, ewk_settings_web_database_default_quota)
{
    ASSERT_EQ(1 * 1024 * 1024, ewk_settings_web_database_default_quota_get());

    ewk_settings_web_database_default_quota_set(2 * 1024 * 1024);
    ASSERT_EQ(2 * 1024 * 1024, ewk_settings_web_database_default_quota_get());

    ewk_settings_web_database_default_quota_set(3 * 1024 * 1024);
    ASSERT_EQ(3 * 1024 * 1024, ewk_settings_web_database_default_quota_get());
}

/**
 * @brief Unit test for checking set/get of directory path where Web Database databases is stored by ewk settings API.
 */
TEST_F(EWKTestBase, ewk_settings_web_database_path)
{
    char* homePath = getenv("HOME");
    char* defaultPath = reinterpret_cast<char*>(malloc(strlen(homePath) + strlen("/.cache/WebKitEfl/Databases") + 1));

#if ENABLE(SQL_DATABASE)
    strncpy(defaultPath, homePath, strlen(homePath) + 1);
    ASSERT_STREQ(strcat(defaultPath, "/.cache/WebKitEfl/Databases"), ewk_settings_web_database_path_get());
#else
    ASSERT_STREQ(0, ewk_settings_web_database_path_get());
#endif
    free(defaultPath);

    ewk_settings_web_database_path_set("~/data/webkitDB");
#if ENABLE(SQL_DATABASE)
    ASSERT_STREQ("~/data/webkitDB", ewk_settings_web_database_path_get());
#else
    ASSERT_STREQ(0, ewk_settings_web_database_path_get());
#endif

    ewk_settings_web_database_path_set("~/tmp/webkit");
#if ENABLE(SQL_DATABASE)    
    ASSERT_STREQ("~/tmp/webkit", ewk_settings_web_database_path_get());
#else
    ASSERT_STREQ(0, ewk_settings_web_database_path_get());
#endif
}

/**
 * @brief Unit test for checking set/get of directory path where the HTML5 local storage indexing database is stored by ewk settings API.
 */
TEST_F(EWKTestBase, ewk_settings_local_storage_path)
{
    char* homePath = getenv("HOME");
    char* defaultPath = reinterpret_cast<char*>(malloc(strlen(homePath) + strlen("/.local/share/WebKitEfl/LocalStorage") + 1));

    strncpy(defaultPath, homePath, strlen(homePath) + 1);
    ASSERT_STREQ(strcat(defaultPath, "/.local/share/WebKitEfl/LocalStorage"), ewk_settings_local_storage_path_get());
    free(defaultPath);

    ewk_settings_local_storage_path_set("~/data/webkitDB");
    ASSERT_STREQ("~/data/webkitDB", ewk_settings_local_storage_path_get());

    ewk_settings_local_storage_path_set("~/tmp/webkit");
    ASSERT_STREQ("~/tmp/webkit", ewk_settings_local_storage_path_get());
}

/**
 * @brief Unit test for checking set/get of directory path where icon database is stored by ewk settings API.
 */
TEST_F(EWKTestBase, ewk_settings_icon_database_path)
{
    ASSERT_STREQ(0, ewk_settings_icon_database_path_get());

    ASSERT_TRUE(ewk_settings_icon_database_path_set("/tmp"));
    ASSERT_STREQ("/tmp", ewk_settings_icon_database_path_get());

    ASSERT_TRUE(ewk_settings_icon_database_path_set(0));
    ASSERT_STREQ(0, ewk_settings_icon_database_path_get());
}

/**
 * @brief Unit test for checking set/get of path where the HTML5 application cache is stored by ewk settings API.
 */
TEST_F(EWKTestBase, ewk_settings_application_cache_path)
{
    char* homePath = getenv("HOME");
    char* defaultPath = reinterpret_cast<char*>(malloc(strlen(homePath) + strlen("/.cache/WebKitEfl/Applications") + 1));

    strncpy(defaultPath, homePath, strlen(homePath) + 1);
    ASSERT_STREQ(strcat(defaultPath, "/.cache/WebKitEfl/Applications"), ewk_settings_application_cache_path_get());
    free(defaultPath);

    ewk_settings_application_cache_path_set("~/data/webkitApp");
    ASSERT_STREQ("~/data/webkitApp", ewk_settings_application_cache_path_get());

    ewk_settings_application_cache_path_set("~/tmp/webkitApp");
    ASSERT_STREQ("~/tmp/webkitApp", ewk_settings_application_cache_path_get());
}

/**
 * @brief Unit test for checking set/get of maximum size of the application cache for HTML5 Offline Web Applications by ewk settings API.
 */
TEST_F(EWKTestBase, ewk_settings_application_cache_max_quota)
{
    ASSERT_EQ(std::numeric_limits<int64_t>::max(), ewk_settings_application_cache_max_quota_get());

    ewk_settings_application_cache_max_quota_set(3 * 1024 * 1024);
    ASSERT_EQ(3 * 1024 * 1024, ewk_settings_application_cache_max_quota_get());

    ewk_settings_application_cache_max_quota_set(5 * 1024 * 1024);
    ASSERT_EQ(5 * 1024 * 1024, ewk_settings_application_cache_max_quota_get());
}

/**
 * @brief Unit test for checking set/get of in-memory object cache Enables/Disables status by ewk settings API.
 */
TEST_F(EWKTestBase, ewk_settings_object_cache_enable)
{
    ASSERT_TRUE(ewk_settings_object_cache_enable_get());

    ewk_settings_object_cache_enable_set(false);
    ASSERT_FALSE(ewk_settings_object_cache_enable_get());

    ewk_settings_object_cache_enable_set(true);
    ASSERT_TRUE(ewk_settings_object_cache_enable_get());
}

/**
 * @brief Unit test for checking set/get of maximum number of pages in the memory page cache by ewk settings API.
 */
TEST_F(EWKTestBase, ewk_settings_page_cache_capacity)
{
    ASSERT_EQ(3, ewk_settings_page_cache_capacity_get());

    ewk_settings_page_cache_capacity_set(5);
    ASSERT_EQ(5, ewk_settings_page_cache_capacity_get());
}

/**
 * @brief Unit test for checking set/get of css media type by ewk settings API.
 */
TEST_F(EWKTestBase, ewk_settings_css_media_type)
{
    ASSERT_STREQ(0, ewk_settings_css_media_type_get());

    ewk_settings_css_media_type_set("handheld");
    ASSERT_STREQ("handheld", ewk_settings_css_media_type_get());

    ewk_settings_css_media_type_set("tv");
    ASSERT_STREQ("tv", ewk_settings_css_media_type_get());

    ewk_settings_css_media_type_set("screen");
    ASSERT_STREQ("screen", ewk_settings_css_media_type_get());

    ewk_settings_css_media_type_set(0);
    ASSERT_STREQ(0, ewk_settings_css_media_type_get());
}