Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / chrome / renderer / spellchecker / spellcheck_provider_test.h
blob7b94dcabc2acf9450724ac789bcaa7b00f5b25fd
1 // Copyright (c) 2012 The Chromium Authors. 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.
5 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_TEST_H_
6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_TEST_H_
8 #include <vector>
10 #include "base/memory/scoped_vector.h"
11 #include "base/strings/string16.h"
12 #include "chrome/renderer/spellchecker/spellcheck_provider.h"
13 #include "testing/gtest/include/gtest/gtest.h"
14 #include "third_party/WebKit/public/platform/WebVector.h"
15 #include "third_party/WebKit/public/web/WebTextCheckingCompletion.h"
16 #include "third_party/WebKit/public/web/WebTextCheckingResult.h"
18 namespace IPC {
19 class Message;
22 // A fake completion object for verification.
23 class FakeTextCheckingCompletion : public blink::WebTextCheckingCompletion {
24 public:
25 FakeTextCheckingCompletion();
26 ~FakeTextCheckingCompletion();
28 void didFinishCheckingText(
29 const blink::WebVector<blink::WebTextCheckingResult>& results) override;
30 void didCancelCheckingText() override;
32 size_t completion_count_;
33 size_t cancellation_count_;
36 // Faked test target, which stores sent message for verification.
37 class TestingSpellCheckProvider : public SpellCheckProvider {
38 public:
39 TestingSpellCheckProvider();
40 // Takes ownership of |spellcheck|.
41 explicit TestingSpellCheckProvider(SpellCheck* spellcheck);
43 ~TestingSpellCheckProvider() override;
44 bool Send(IPC::Message* message) override;
45 void OnCallSpellingService(int route_id,
46 int identifier,
47 const base::string16& text,
48 const std::vector<SpellCheckMarker>& markers);
49 void ResetResult();
51 base::string16 text_;
52 ScopedVector<IPC::Message> messages_;
53 size_t spelling_service_call_count_;
56 // SpellCheckProvider test fixture.
57 class SpellCheckProviderTest : public testing::Test {
58 public:
59 SpellCheckProviderTest();
60 ~SpellCheckProviderTest() override;
62 protected:
63 TestingSpellCheckProvider provider_;
66 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_PROVIDER_TEST_H_