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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
|
/*
* Copyright (C) 2012 Samsung Electronics
*
* 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. Redistributions 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 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 HOLDER OR
* 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.
*/
/**
* @brief covers API from ewk_text_checker.h
* @file test_ewk2_text_checker.cpp
*/
#include "config.h"
#include "UnitTestUtils/EWK2UnitTestBase.h"
#include <wtf/text/CString.h>
#include <wtf/text/StringBuilder.h>
using namespace EWK2UnitTest;
extern EWK2UnitTestEnvironment* environment;
static const uint64_t defaultDocumentTag = 123;
static const char expectedMisspelledWord[] = "aa";
static const Evas_Object* defaultView = 0;
static bool isSettingEnabled = false;
static Ecore_Timer* timeoutTimer = 0;
static double defaultTimeoutInSeconds = 0.5;
/**
* Structure keeps information which callbacks were called.
* Its values are reset before each test.
*/
static struct {
bool spellDocumentTag : 1;
bool spellDocumentTagClose : 1;
bool spellingCheck : 1;
bool wordGuesses : 1;
bool wordLearn : 1;
bool wordIgnore : 1;
} callbacksExecutionStats;
static void resetCallbacksExecutionStats()
{
callbacksExecutionStats.spellDocumentTag = false;
callbacksExecutionStats.spellDocumentTagClose = false;
callbacksExecutionStats.spellingCheck = false;
callbacksExecutionStats.wordGuesses = false;
callbacksExecutionStats.wordLearn = false;
callbacksExecutionStats.wordIgnore = false;
}
/**
* Handle the timeout, it may happen for the asynchronous tests.
*
* @internal
*
* @return the ECORE_CALLBACK_CANCEL flag to delete the timer automatically
*/
static Eina_Bool onTimeout(void*)
{
ecore_main_loop_quit();
return ECORE_CALLBACK_CANCEL;
}
/**
* This callback tests whether the client's callback is called when the spell checking setting was changed.
*
* @internal
*
* Verify the new setting value (passes in the @a flag parameter) if it equals to the previously set.
*
* @internal
*
* @param flag the new setting value
*/
static void onSettingChange(Eina_Bool flag)
{
EXPECT_EQ(isSettingEnabled, flag);
ecore_timer_del(timeoutTimer);
timeoutTimer = 0;
ecore_main_loop_quit();
}
/**
* Returns unique tag (an identifier).
*
* @internal
*
* It will be used for onSpellingCheck, onWordGuesses etc. to notify
* the client on which object (associated to the tag) the spelling is being invoked.
*
* @param ewkView the view object to get unique tag
*
* @return unique tag for the given @a ewkView object
*/
static uint64_t onSpellDocumentTag(const Evas_Object* ewkView)
{
EXPECT_EQ(defaultView, ewkView);
callbacksExecutionStats.spellDocumentTag = true;
return defaultDocumentTag;
}
/**
* The view which is associated to the @a tag has been destroyed.
*
* @internal
*
* @param tag the tag to be closed
*/
static void onSpellDocumentTagClose(uint64_t tag)
{
ASSERT_EQ(defaultDocumentTag, tag);
callbacksExecutionStats.spellDocumentTagClose = true;
}
/**
* Checks spelling for the given @a text.
*
* @internal
*
* @param tag unique tag to notify the client on which object the spelling is being performed
* @param text the text containing the words to spellcheck
* @param misspelling_location a pointer to store the beginning of the misspelled @a text, @c -1 if the @a text is correct
* @param misspelling_length a pointer to store the length of misspelled @a text, @c 0 if the @a text is correct
*/
static void onSpellingCheck(uint64_t tag, const char* text, int32_t* misspellingLocation, int32_t* misspellingLength)
{
ASSERT_EQ(defaultDocumentTag, tag);
ASSERT_STREQ(expectedMisspelledWord, text);
ASSERT_TRUE(misspellingLocation);
ASSERT_TRUE(misspellingLength);
// The client is able to show the misselled text through its location (the beginning of misspelling)
// and length (the end of misspelling).
*misspellingLocation = 0;
*misspellingLength = strlen(expectedMisspelledWord);
callbacksExecutionStats.spellingCheck = true;
}
/**
* Gets a list of suggested spellings for a misspelled @a word.
*
* @internal
*
* @param tag unique tag to notify the client on which object the spelling is being performed
* @param word the word to get guesses
* @return a list of dynamically allocated strings (as char*) and
* caller is responsible for destroying them.
*/
static Eina_List* onWordGuesses(uint64_t tag, const char* word)
{
EXPECT_EQ(defaultDocumentTag, tag);
EXPECT_STREQ(expectedMisspelledWord, word);
Eina_List* suggestionsForWord = 0;
// FIXME: Fill the Eina_List with suggestions for the misspelled word.
callbacksExecutionStats.wordGuesses = true;
return suggestionsForWord;
}
/**
* Adds the @a word to the spell checker dictionary.
*
* @internal
*
* @param tag unique tag to notify the client on which object the spelling is being performed
* @param word the word to add
*/
static void onWordLearn(uint64_t tag, const char* word)
{
ASSERT_EQ(defaultDocumentTag, tag);
ASSERT_STREQ(expectedMisspelledWord, word);
callbacksExecutionStats.wordLearn = true;
}
/**
* Tells the spell checker to ignore a given @a word.
*
* @internal
*
* @param tag unique tag to notify the client on which object the spelling is being performed
* @param word the word to ignore
*/
static void onWordIgnore(uint64_t tag, const char* word)
{
ASSERT_EQ(defaultDocumentTag, tag);
ASSERT_STREQ(expectedMisspelledWord, word);
callbacksExecutionStats.wordIgnore = true;
}
/**
* Test setter/getter for the continous spell checking:
* - ewk_settings_continuous_spell_checking_enabled_get
* - ewk_settings_continuous_spell_checking_enabled_set
*/
TEST_F(EWK2UnitTestBase, ewk_settings_continuous_spell_checking_enabled)
{
ewk_settings_continuous_spell_checking_enabled_set(true);
#if ENABLE(SPELLCHECK)
EXPECT_TRUE(ewk_settings_continuous_spell_checking_enabled_get());
// When the spell checking has been enabled, the default language is set (if the user
// didn't set any). The languages are being loaded on the idler, wait for them.
timeoutTimer = ecore_timer_add(defaultTimeoutInSeconds, onTimeout, 0);
ecore_main_loop_begin();
Eina_List* loadedLanguages = ewk_settings_spell_checking_languages_get();
// No dictionary is available/installed.
if (!loadedLanguages)
return;
EXPECT_EQ(1, eina_list_count(loadedLanguages));
void* data;
EINA_LIST_FREE(loadedLanguages, data)
eina_stringshare_del(static_cast<const char*>(data));
#else
EXPECT_FALSE(ewk_settings_continuous_spell_checking_enabled_get());
#endif
ewk_settings_continuous_spell_checking_enabled_set(false);
EXPECT_FALSE(ewk_settings_continuous_spell_checking_enabled_get());
}
/**
* Test whether the callback is called when the spell checking setting has been changed.
*/
TEST_F(EWK2UnitTestBase, ewk_settings_continuous_spell_checking_change_cb_set)
{
ewk_settings_continuous_spell_checking_change_cb_set(onSettingChange);
isSettingEnabled = ewk_settings_continuous_spell_checking_enabled_get();
isSettingEnabled = !isSettingEnabled;
ewk_settings_continuous_spell_checking_enabled_set(isSettingEnabled);
timeoutTimer = ecore_timer_add(defaultTimeoutInSeconds, onTimeout, 0);
// Start proccesing Ecore events, the notification about the change of the spell
// checking setting is called on idler.
// We can't call ecore_main_loop_iterate because it doesn't process the idlers.
ecore_main_loop_begin();
#if ENABLE(SPELLCHECK)
EXPECT_FALSE(timeoutTimer);
#else
EXPECT_TRUE(timeoutTimer);
#endif
// The callback shouldn't be called if the setting option is already set.
isSettingEnabled = ewk_settings_continuous_spell_checking_enabled_get();
ewk_settings_continuous_spell_checking_enabled_set(isSettingEnabled);
timeoutTimer = ecore_timer_add(defaultTimeoutInSeconds, onTimeout, 0);
ecore_main_loop_begin();
// When the SPELLCHECK macro is disabled the callback won't be called too.
EXPECT_TRUE(timeoutTimer);
// The callback shouldn't be called if the user has invalidated it.
ewk_settings_continuous_spell_checking_change_cb_set(0);
isSettingEnabled = ewk_settings_continuous_spell_checking_enabled_get();
isSettingEnabled = !isSettingEnabled;
ewk_settings_continuous_spell_checking_enabled_set(isSettingEnabled);
timeoutTimer = ecore_timer_add(defaultTimeoutInSeconds, onTimeout, 0);
ecore_main_loop_begin();
// If the SPELLCHECK macro is disabled, the callback is not set.
EXPECT_TRUE(timeoutTimer);
}
/**
* This unit test sets all available/installed dictionaries and verifies them
* if they are in use.
* All the dictionaries from the list can be set to perform spellchecking.
*/
TEST_F(EWK2UnitTestBase, ewk_settings_spell_checking_available_languages_get)
{
Eina_List* availableLanguages = ewk_settings_spell_checking_available_languages_get();
// No dictionary is available/installed or the SPELLCHECK macro is disabled.
if (!availableLanguages)
return;
// Helper to create one string with comma separated languages.
void* actual = 0;
WTF::StringBuilder languages;
Eina_List* listIterator = 0;
unsigned lastIndex = eina_list_count(availableLanguages) - 1;
unsigned i = 0;
EINA_LIST_FOREACH(availableLanguages, listIterator, actual) {
languages.append(static_cast<const char*>(actual));
// Add the comma after all but the last language IDs.
if (i++ != lastIndex)
languages.append(',');
}
// Set all available languages.
ewk_settings_spell_checking_languages_set(languages.toString().utf8().data());
// Languages are being loaded on the idler, wait for them.
timeoutTimer = ecore_timer_add(defaultTimeoutInSeconds, onTimeout, 0);
ecore_main_loop_begin();
// Get the languages in use.
Eina_List* loadedLanguages = ewk_settings_spell_checking_languages_get();
ASSERT_EQ(eina_list_count(loadedLanguages), eina_list_count(availableLanguages));
i = 0;
void* expected = 0;
// Verify whether the loaded languages list is equal to the available languages list.
EINA_LIST_FOREACH(loadedLanguages, listIterator, actual) {
expected = eina_list_nth(availableLanguages, i++);
EXPECT_STREQ(static_cast<const char*>(expected), static_cast<const char*>(actual));
}
// Delete the lists.
EINA_LIST_FREE(availableLanguages, actual)
eina_stringshare_del(static_cast<const char*>(actual));
EINA_LIST_FREE(loadedLanguages, actual)
eina_stringshare_del(static_cast<const char*>(actual));
}
/**
* Here we test the following scenarios:
* - setting the default language,
* - if two arbitrarily selected dictionaries are set correctly.
*/
TEST_F(EWK2UnitTestBase, ewk_settings_spell_checking_languages)
{
// Set the default language.
ewk_settings_spell_checking_languages_set(0);
// Languages are being loaded on the idler, wait for them.
timeoutTimer = ecore_timer_add(defaultTimeoutInSeconds, onTimeout, 0);
ecore_main_loop_begin();
Eina_List* loadedLanguages = ewk_settings_spell_checking_languages_get();
// No dictionary is available/installed or the SPELLCHECK macro is disabled.
if (!loadedLanguages)
return;
ASSERT_EQ(1, eina_list_count(loadedLanguages));
// Delete the list.
void* actual = 0;
EINA_LIST_FREE(loadedLanguages, actual)
eina_stringshare_del(static_cast<const char*>(actual));
// Get the first and last language from installed dictionaries.
Eina_List* availableLanguages = ewk_settings_spell_checking_available_languages_get();
unsigned numberOfAvailableLanguages = eina_list_count(availableLanguages);
// We assume that user has installed at lest two dictionaries.
if (numberOfAvailableLanguages < 2)
return;
const char* firstExpected = static_cast<const char*>(eina_list_nth(availableLanguages, 0));
const char* lastExpected = static_cast<const char*>(eina_list_data_get(eina_list_last(availableLanguages)));
// Case sensitivity of dictionaries doesn't affect on loading the dictionaries,
// the Enchant library will 'normalize' them.
WTF::StringBuilder languages;
languages.append(String(firstExpected).upper());
languages.append(',');
languages.append(String(lastExpected).lower());
// Set both languages (the first and the last) from the list.
ewk_settings_spell_checking_languages_set(languages.toString().utf8().data());
timeoutTimer = ecore_timer_add(defaultTimeoutInSeconds, onTimeout, 0);
ecore_main_loop_begin();
loadedLanguages = ewk_settings_spell_checking_languages_get();
ASSERT_EQ(2, eina_list_count(loadedLanguages));
EXPECT_STREQ(firstExpected, static_cast<const char*>(eina_list_nth(loadedLanguages, 0)));
EXPECT_STREQ(lastExpected, static_cast<const char*>(eina_list_nth(loadedLanguages, 1)));
// Delete the lists.
EINA_LIST_FREE(availableLanguages, actual)
eina_stringshare_del(static_cast<const char*>(actual));
EINA_LIST_FREE(loadedLanguages, actual)
eina_stringshare_del(static_cast<const char*>(actual));
}
/**
* Test whether the client's callbacks aren't called (if not specified).
*/
TEST_F(EWK2UnitTestBase, ewk_text_checker)
{
resetCallbacksExecutionStats();
ewk_settings_continuous_spell_checking_enabled_set(true);
ASSERT_TRUE(loadUrlSync(environment->urlForResource("spelling_test.html").data()));
// If user doesn't specify callback functions responsible for spelling
// the default WebKit implementation (based on the Enchant library) will be used.
ASSERT_FALSE(callbacksExecutionStats.spellDocumentTag);
ASSERT_FALSE(callbacksExecutionStats.spellDocumentTagClose);
ASSERT_FALSE(callbacksExecutionStats.spellingCheck);
// It doesn't make sense to verify others callbacks (onWordGuesses,
// onWordLearn, onWordIgnore) as they need the context menu feature
// which is not implemented for WK2-EFL.
}
/**
* Test whether the client's callbacks (onSpellDocumentTag, onSpellDocumentTagClose) are called.
*/
TEST_F(EWK2UnitTestBase, ewk_text_checker_unique_spell_document_tag)
{
resetCallbacksExecutionStats();
defaultView = webView();
ewk_settings_continuous_spell_checking_enabled_set(true);
ewk_text_checker_unique_spell_document_tag_get_cb_set(onSpellDocumentTag);
ewk_text_checker_unique_spell_document_tag_close_cb_set(onSpellDocumentTagClose);
ASSERT_TRUE(loadUrlSync(environment->urlForResource("spelling_test.html").data()));
// Check whether the callback was called.
ASSERT_TRUE(callbacksExecutionStats.spellDocumentTag);
// It's not possible to check whether onSpellDocumentTagClose was called here, because
// it's invoked when WebPage is being destroyed.
// It should be verified for example when view is freed.
}
/**
* Test whether the client's callback (onSpellingCheck) is called when
* the word to input field was put.
*/
TEST_F(EWK2UnitTestBase, ewk_text_checker_string_spelling_check_cb_set)
{
resetCallbacksExecutionStats();
defaultView = webView();
ewk_settings_continuous_spell_checking_enabled_set(true);
ewk_text_checker_string_spelling_check_cb_set(onSpellingCheck);
ASSERT_TRUE(loadUrlSync(environment->urlForResource("spelling_test.html").data()));
// Check whether the callback was called.
ASSERT_TRUE(callbacksExecutionStats.spellingCheck);
}
/**
* Test whether the client's callback (onWordGuesses) is called when
* the context menu was shown on the misspelled word.
*/
TEST_F(EWK2UnitTestBase, ewk_text_checker_word_guesses_get_cb_set)
{
resetCallbacksExecutionStats();
defaultView = webView();
ewk_settings_continuous_spell_checking_enabled_set(true);
ewk_text_checker_word_guesses_get_cb_set(onWordGuesses);
ASSERT_TRUE(loadUrlSync(environment->urlForResource("spelling_test.html").data()));
/* FIXME:
1) Invoke the context menu on the misspelled word (not implemented for WK2),
the word has to be selected first.
2) Fill the suggestion list in the onWordGuesses callback.
3) Compare context menu suggestions to the suggestion list.
4) Check whether the callback was called. */
}
/**
* Test whether the client's callback (onWordLearn) is called when
* the context menu option "Learn spelling" was choosen.
*/
TEST_F(EWK2UnitTestBase, ewk_text_checker_word_learn_cb_set)
{
resetCallbacksExecutionStats();
defaultView = webView();
ewk_settings_continuous_spell_checking_enabled_set(true);
ewk_text_checker_word_learn_cb_set(onWordLearn);
ASSERT_TRUE(loadUrlSync(environment->urlForResource("spelling_test.html").data()));
/* FIXME:
1) Invoke the context menu on the misspelled word (not implemented for WK2),
the word has to be selected first.
2) Check whether the callback was called. */
}
/**
* Test whether the client's callback (onWordIgnore) is called when
* the context menu option "Ignore spelling" was choosen.
*/
TEST_F(EWK2UnitTestBase, ewk_text_checker_word_ignore_cb_set)
{
resetCallbacksExecutionStats();
defaultView = webView();
ewk_settings_continuous_spell_checking_enabled_set(true);
ewk_text_checker_word_ignore_cb_set(onWordIgnore);
ASSERT_TRUE(loadUrlSync(environment->urlForResource("spelling_test.html").data()));
/* FIXME:
1) Invoke the context menu on the misspelled word (not implemented for WK2),
the word has to be selected first.
2) Check whether the callback was called. */
}
|