Update CrOS OOBE throbber to MD throbber; delete old asset
[chromium-blink-merge.git] / chrome / renderer / spellchecker / spellcheck_provider_mac_unittest.cc
bloba9940b6f11d6d396d209d8ae72b94125dcf9bb5b
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 #include <vector>
7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/common/spellcheck_marker.h"
9 #include "chrome/common/spellcheck_messages.h"
10 #include "chrome/common/spellcheck_result.h"
11 #include "chrome/renderer/spellchecker/spellcheck_provider_test.h"
12 #include "testing/gtest/include/gtest/gtest.h"
13 #include "third_party/WebKit/public/platform/WebString.h"
15 namespace {
17 class SpellCheckProviderMacTest : public SpellCheckProviderTest {};
19 void FakeMessageArrival(
20 SpellCheckProvider* provider,
21 const SpellCheckHostMsg_RequestTextCheck::Param& parameters) {
22 std::vector<SpellCheckResult> fake_result;
23 bool handled = provider->OnMessageReceived(
24 SpellCheckMsg_RespondTextCheck(
26 base::get<1>(parameters),
27 base::ASCIIToUTF16("test"),
28 fake_result));
29 EXPECT_TRUE(handled);
32 TEST_F(SpellCheckProviderMacTest, SingleRoundtripSuccess) {
33 FakeTextCheckingCompletion completion;
35 provider_.RequestTextChecking(blink::WebString("hello "),
36 &completion,
37 std::vector<SpellCheckMarker>());
38 EXPECT_EQ(completion.completion_count_, 0U);
39 EXPECT_EQ(provider_.messages_.size(), 1U);
40 EXPECT_EQ(provider_.pending_text_request_size(), 1U);
42 SpellCheckHostMsg_RequestTextCheck::Param read_parameters1;
43 bool ok = SpellCheckHostMsg_RequestTextCheck::Read(
44 provider_.messages_[0], &read_parameters1);
45 EXPECT_TRUE(ok);
46 EXPECT_EQ(base::get<2>(read_parameters1), base::UTF8ToUTF16("hello "));
48 FakeMessageArrival(&provider_, read_parameters1);
49 EXPECT_EQ(completion.completion_count_, 1U);
50 EXPECT_EQ(provider_.pending_text_request_size(), 0U);
53 TEST_F(SpellCheckProviderMacTest, TwoRoundtripSuccess) {
54 FakeTextCheckingCompletion completion1;
55 provider_.RequestTextChecking(blink::WebString("hello "),
56 &completion1,
57 std::vector<SpellCheckMarker>());
58 FakeTextCheckingCompletion completion2;
59 provider_.RequestTextChecking(blink::WebString("bye "),
60 &completion2,
61 std::vector<SpellCheckMarker>());
63 EXPECT_EQ(completion1.completion_count_, 0U);
64 EXPECT_EQ(completion2.completion_count_, 0U);
65 EXPECT_EQ(provider_.messages_.size(), 2U);
66 EXPECT_EQ(provider_.pending_text_request_size(), 2U);
68 SpellCheckHostMsg_RequestTextCheck::Param read_parameters1;
69 bool ok = SpellCheckHostMsg_RequestTextCheck::Read(
70 provider_.messages_[0], &read_parameters1);
71 EXPECT_TRUE(ok);
72 EXPECT_EQ(base::get<2>(read_parameters1), base::UTF8ToUTF16("hello "));
74 SpellCheckHostMsg_RequestTextCheck::Param read_parameters2;
75 ok = SpellCheckHostMsg_RequestTextCheck::Read(
76 provider_.messages_[1], &read_parameters2);
77 EXPECT_TRUE(ok);
78 EXPECT_EQ(base::get<2>(read_parameters2), base::UTF8ToUTF16("bye "));
80 FakeMessageArrival(&provider_, read_parameters1);
81 EXPECT_EQ(completion1.completion_count_, 1U);
82 EXPECT_EQ(completion2.completion_count_, 0U);
83 EXPECT_EQ(provider_.pending_text_request_size(), 1U);
85 FakeMessageArrival(&provider_, read_parameters2);
86 EXPECT_EQ(completion1.completion_count_, 1U);
87 EXPECT_EQ(completion2.completion_count_, 1U);
88 EXPECT_EQ(provider_.pending_text_request_size(), 0U);
91 } // namespace