Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: chrome/browser/spellchecker/spellcheck_message_filter_mac_browsertest.cc

Issue 292443004: Remove IPC_BEGIN_MESSAGE_MAP_EX macro since r270839 made all bad IPCs kill their child processes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/memory/scoped_vector.h" 6 #include "base/memory/scoped_vector.h"
7 #include "base/message_loop/message_loop.h" 7 #include "base/message_loop/message_loop.h"
8 #include "base/stl_util.h" 8 #include "base/stl_util.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "chrome/browser/spellchecker/spellcheck_message_filter_mac.h" 10 #include "chrome/browser/spellchecker/spellcheck_message_filter_mac.h"
(...skipping 27 matching lines...) Expand all
38 typedef InProcessBrowserTest SpellCheckMessageFilterMacBrowserTest; 38 typedef InProcessBrowserTest SpellCheckMessageFilterMacBrowserTest;
39 39
40 // Uses browsertest to setup chrome threads. 40 // Uses browsertest to setup chrome threads.
41 IN_PROC_BROWSER_TEST_F(SpellCheckMessageFilterMacBrowserTest, 41 IN_PROC_BROWSER_TEST_F(SpellCheckMessageFilterMacBrowserTest,
42 SpellCheckReturnMessage) { 42 SpellCheckReturnMessage) {
43 scoped_refptr<TestingSpellCheckMessageFilter> target( 43 scoped_refptr<TestingSpellCheckMessageFilter> target(
44 new TestingSpellCheckMessageFilter(base::MessageLoopForUI::current())); 44 new TestingSpellCheckMessageFilter(base::MessageLoopForUI::current()));
45 45
46 SpellCheckHostMsg_RequestTextCheck to_be_received( 46 SpellCheckHostMsg_RequestTextCheck to_be_received(
47 123, 456, base::UTF8ToUTF16("zz."), std::vector<SpellCheckMarker>()); 47 123, 456, base::UTF8ToUTF16("zz."), std::vector<SpellCheckMarker>());
48 bool handled = false; 48 target->OnMessageReceived(to_be_received);
49 target->OnMessageReceived(to_be_received, &handled);
50 EXPECT_TRUE(handled);
51 49
52 base::MessageLoopForUI::current()->Run(); 50 base::MessageLoopForUI::current()->Run();
53 EXPECT_EQ(1U, target->sent_messages_.size()); 51 EXPECT_EQ(1U, target->sent_messages_.size());
54 52
55 SpellCheckMsg_RespondTextCheck::Param params; 53 SpellCheckMsg_RespondTextCheck::Param params;
56 bool ok = SpellCheckMsg_RespondTextCheck::Read( 54 bool ok = SpellCheckMsg_RespondTextCheck::Read(
57 target->sent_messages_[0], &params); 55 target->sent_messages_[0], &params);
58 std::vector<SpellCheckResult> sent_results = params.b; 56 std::vector<SpellCheckResult> sent_results = params.b;
59 57
60 EXPECT_TRUE(ok); 58 EXPECT_TRUE(ok);
61 EXPECT_EQ(1U, sent_results.size()); 59 EXPECT_EQ(1U, sent_results.size());
62 EXPECT_EQ(sent_results[0].location, 0); 60 EXPECT_EQ(sent_results[0].location, 0);
63 EXPECT_EQ(sent_results[0].length, 2); 61 EXPECT_EQ(sent_results[0].length, 2);
64 EXPECT_EQ(sent_results[0].decoration, 62 EXPECT_EQ(sent_results[0].decoration,
65 SpellCheckResult::SPELLING); 63 SpellCheckResult::SPELLING);
66 } 64 }
OLDNEW
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_message_filter_mac.cc ('k') | chrome/renderer/chrome_mock_render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698