blob: 59fe3f61222ea28ce62e8d5fce2d89c3995b249c (
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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/renderer/spellchecker/spellcheck_provider_test.h"
#include "base/stl_util.h"
#include "chrome/common/spellcheck_marker.h"
#include "chrome/common/spellcheck_messages.h"
#include "chrome/renderer/spellchecker/spellcheck.h"
#include "ipc/ipc_message_macros.h"
class MockSpellcheck: public SpellCheck {
};
FakeTextCheckingCompletion::FakeTextCheckingCompletion()
: completion_count_(0),
cancellation_count_(0) {
}
FakeTextCheckingCompletion::~FakeTextCheckingCompletion() {}
void FakeTextCheckingCompletion::didFinishCheckingText(
const WebKit::WebVector<WebKit::WebTextCheckingResult>& results) {
++completion_count_;
}
void FakeTextCheckingCompletion::didCancelCheckingText() {
++completion_count_;
++cancellation_count_;
}
TestingSpellCheckProvider::TestingSpellCheckProvider()
: SpellCheckProvider(NULL, new MockSpellcheck),
spelling_service_call_count_(0) {
}
TestingSpellCheckProvider::~TestingSpellCheckProvider() {
delete spellcheck_;
}
bool TestingSpellCheckProvider::Send(IPC::Message* message) {
// Call our mock message handlers.
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(TestingSpellCheckProvider, *message)
#if !defined(OS_MACOSX)
IPC_MESSAGE_HANDLER(SpellCheckHostMsg_CallSpellingService,
OnCallSpellingService)
#endif
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
if (handled) {
delete message;
return true;
}
messages_.push_back(message);
return true;
}
void TestingSpellCheckProvider::OnCallSpellingService(int route_id,
int identifier,
const string16& text,
const std::vector<SpellCheckMarker>& markers) {
#if defined (OS_MACOSX)
NOTREACHED();
#else
++spelling_service_call_count_;
WebKit::WebTextCheckingCompletion* completion =
text_check_completions_.Lookup(identifier);
if (!completion) {
ResetResult();
return;
}
text_.assign(text);
text_check_completions_.Remove(identifier);
std::vector<WebKit::WebTextCheckingResult> results;
results.push_back(WebKit::WebTextCheckingResult(
WebKit::WebTextDecorationTypeSpelling,
0, 5, WebKit::WebString("hello")));
completion->didFinishCheckingText(results);
last_request_ = text;
last_results_ = results;
#endif
}
void TestingSpellCheckProvider::ResetResult() {
text_.clear();
}
SpellCheckProviderTest::SpellCheckProviderTest() {}
SpellCheckProviderTest::~SpellCheckProviderTest() {}
|