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

Unified Diff: ui/base/ime/remote_input_method_win_unittest.cc

Issue 1257603006: Refactoring for the InputMethod & InputMethodDelegate interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed Sadrul's comment. Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/base/ime/remote_input_method_win.cc ('k') | ui/keyboard/keyboard_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/remote_input_method_win_unittest.cc
diff --git a/ui/base/ime/remote_input_method_win_unittest.cc b/ui/base/ime/remote_input_method_win_unittest.cc
index a49662bfd84493e32515c06fbdd30317a36bfa37..686937b2ecac28690019b1c2a4f34609347964f5 100644
--- a/ui/base/ime/remote_input_method_win_unittest.cc
+++ b/ui/base/ime/remote_input_method_win_unittest.cc
@@ -138,10 +138,12 @@ class MockInputMethodDelegate : public internal::InputMethodDelegate {
}
private:
- bool DispatchKeyEventPostIME(const ui::KeyEvent& event) override {
- EXPECT_FALSE(event.HasNativeEvent());
- fabricated_key_events_.push_back(event.key_code());
- return true;
+ ui::EventDispatchDetails DispatchKeyEventPostIME(
+ ui::KeyEvent* event) override {
+ EXPECT_FALSE(event->HasNativeEvent());
+ fabricated_key_events_.push_back(event->key_code());
+ event->SetHandled();
+ return ui::EventDispatchDetails();
}
std::vector<ui::KeyboardCode> fabricated_key_events_;
@@ -513,10 +515,12 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_NativeKeyEvent) {
scoped_ptr<InputMethod> input_method(CreateRemoteInputMethodWin(&delegate_));
const MSG wm_keydown = { NULL, WM_KEYDOWN, ui::VKEY_A };
- ui::KeyEvent native_keydown(wm_keydown);
+ ui::KeyEvent new_keydown(wm_keydown);
+ ui::KeyEvent native_keydown(new_keydown);
// This must not cause a crash.
- EXPECT_FALSE(input_method->DispatchKeyEvent(native_keydown));
+ input_method->DispatchKeyEvent(&native_keydown);
+ EXPECT_FALSE(native_keydown.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
EXPECT_TRUE(delegate_.fabricated_key_events().empty());
delegate_.Reset();
@@ -529,8 +533,9 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_NativeKeyEvent) {
private_ptr->SetRemoteDelegate(&mock_remote_delegate);
// TextInputClient is not focused yet here.
-
- EXPECT_FALSE(input_method->DispatchKeyEvent(native_keydown));
+ native_keydown = new_keydown;
+ input_method->DispatchKeyEvent(&native_keydown);
+ EXPECT_FALSE(native_keydown.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
EXPECT_TRUE(delegate_.fabricated_key_events().empty());
delegate_.Reset();
@@ -539,8 +544,9 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_NativeKeyEvent) {
input_method->SetFocusedTextInputClient(&mock_text_input_client);
// TextInputClient is now focused here.
-
- EXPECT_FALSE(input_method->DispatchKeyEvent(native_keydown));
+ native_keydown = new_keydown;
+ input_method->DispatchKeyEvent(&native_keydown);
+ EXPECT_FALSE(native_keydown.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
EXPECT_TRUE(delegate_.fabricated_key_events().empty());
delegate_.Reset();
@@ -555,10 +561,12 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_NativeCharEvent) {
scoped_ptr<InputMethod> input_method(CreateRemoteInputMethodWin(&delegate_));
const MSG wm_char = { NULL, WM_CHAR, 'A', 0 };
- ui::KeyEvent native_char(wm_char);
+ ui::KeyEvent new_char(wm_char);
+ ui::KeyEvent native_char(new_char);
// This must not cause a crash.
- EXPECT_FALSE(input_method->DispatchKeyEvent(native_char));
+ input_method->DispatchKeyEvent(&native_char);
+ EXPECT_FALSE(native_char.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
EXPECT_TRUE(delegate_.fabricated_key_events().empty());
delegate_.Reset();
@@ -571,8 +579,9 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_NativeCharEvent) {
private_ptr->SetRemoteDelegate(&mock_remote_delegate);
// TextInputClient is not focused yet here.
-
- EXPECT_FALSE(input_method->DispatchKeyEvent(native_char));
+ native_char = new_char;
+ input_method->DispatchKeyEvent(&native_char);
+ EXPECT_FALSE(native_char.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
EXPECT_TRUE(delegate_.fabricated_key_events().empty());
delegate_.Reset();
@@ -581,8 +590,9 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_NativeCharEvent) {
input_method->SetFocusedTextInputClient(&mock_text_input_client);
// TextInputClient is now focused here.
-
- EXPECT_TRUE(input_method->DispatchKeyEvent(native_char));
+ native_char = new_char;
+ input_method->DispatchKeyEvent(&native_char);
+ EXPECT_TRUE(native_char.handled());
EXPECT_EQ(L"A", mock_text_input_client.inserted_text());
EXPECT_TRUE(delegate_.fabricated_key_events().empty());
delegate_.Reset();
@@ -598,11 +608,13 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_FabricatedKeyDown) {
MockTextInputClient mock_text_input_client;
scoped_ptr<InputMethod> input_method(CreateRemoteInputMethodWin(&delegate_));
- ui::KeyEvent fabricated_keydown(ui::ET_KEY_PRESSED, ui::VKEY_A, ui::EF_NONE);
- fabricated_keydown.set_character(L'A');
+ ui::KeyEvent new_keydown(ui::ET_KEY_PRESSED, ui::VKEY_A, ui::EF_NONE);
+ new_keydown.set_character(L'A');
+ ui::KeyEvent fabricated_keydown(new_keydown);
// This must not cause a crash.
- EXPECT_TRUE(input_method->DispatchKeyEvent(fabricated_keydown));
+ input_method->DispatchKeyEvent(&fabricated_keydown);
+ EXPECT_TRUE(fabricated_keydown.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
ASSERT_EQ(1, delegate_.fabricated_key_events().size());
EXPECT_EQ(L'A', delegate_.fabricated_key_events()[0]);
@@ -616,8 +628,9 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_FabricatedKeyDown) {
private_ptr->SetRemoteDelegate(&mock_remote_delegate);
// TextInputClient is not focused yet here.
-
- EXPECT_TRUE(input_method->DispatchKeyEvent(fabricated_keydown));
+ fabricated_keydown = new_keydown;
+ input_method->DispatchKeyEvent(&fabricated_keydown);
+ EXPECT_TRUE(fabricated_keydown.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
ASSERT_EQ(1, delegate_.fabricated_key_events().size());
EXPECT_EQ(L'A', delegate_.fabricated_key_events()[0]);
@@ -626,8 +639,9 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_FabricatedKeyDown) {
input_method->SetFocusedTextInputClient(&mock_text_input_client);
// TextInputClient is now focused here.
-
- EXPECT_TRUE(input_method->DispatchKeyEvent(fabricated_keydown));
+ fabricated_keydown = new_keydown;
+ input_method->DispatchKeyEvent(&fabricated_keydown);
+ EXPECT_TRUE(fabricated_keydown.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
ASSERT_EQ(1, delegate_.fabricated_key_events().size());
EXPECT_EQ(L'A', delegate_.fabricated_key_events()[0]);
@@ -636,8 +650,9 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_FabricatedKeyDown) {
input_method->SetDelegate(NULL);
// RemoteInputMethodDelegateWin is no longer set here.
-
- EXPECT_FALSE(input_method->DispatchKeyEvent(fabricated_keydown));
+ fabricated_keydown = new_keydown;
+ input_method->DispatchKeyEvent(&fabricated_keydown);
+ EXPECT_FALSE(fabricated_keydown.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
}
@@ -649,10 +664,12 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_FabricatedChar) {
MockTextInputClient mock_text_input_client;
scoped_ptr<InputMethod> input_method(CreateRemoteInputMethodWin(&delegate_));
- ui::KeyEvent fabricated_char(L'A', ui::VKEY_A, ui::EF_NONE);
+ ui::KeyEvent new_char(L'A', ui::VKEY_A, ui::EF_NONE);
+ ui::KeyEvent fabricated_char(new_char);
// This must not cause a crash.
- EXPECT_TRUE(input_method->DispatchKeyEvent(fabricated_char));
+ input_method->DispatchKeyEvent(&fabricated_char);
+ EXPECT_TRUE(fabricated_char.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
EXPECT_TRUE(delegate_.fabricated_key_events().empty());
delegate_.Reset();
@@ -665,8 +682,9 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_FabricatedChar) {
private_ptr->SetRemoteDelegate(&mock_remote_delegate);
// TextInputClient is not focused yet here.
-
- EXPECT_TRUE(input_method->DispatchKeyEvent(fabricated_char));
+ fabricated_char = new_char;
+ input_method->DispatchKeyEvent(&fabricated_char);
+ EXPECT_TRUE(fabricated_char.handled());
EXPECT_TRUE(mock_text_input_client.inserted_text().empty());
EXPECT_TRUE(delegate_.fabricated_key_events().empty());
delegate_.Reset();
@@ -675,8 +693,9 @@ TEST(RemoteInputMethodWinTest, DispatchKeyEvent_FabricatedChar) {
input_method->SetFocusedTextInputClient(&mock_text_input_client);
// TextInputClient is now focused here.
-
- EXPECT_TRUE(input_method->DispatchKeyEvent(fabricated_char));
+ fabricated_char = new_char;
+ input_method->DispatchKeyEvent(&fabricated_char);
+ EXPECT_TRUE(fabricated_char.handled());
EXPECT_EQ(L"A", mock_text_input_client.inserted_text());
EXPECT_TRUE(delegate_.fabricated_key_events().empty());
delegate_.Reset();
« no previous file with comments | « ui/base/ime/remote_input_method_win.cc ('k') | ui/keyboard/keyboard_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698