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

Side by Side Diff: chrome/renderer/password_autocomplete_manager_unittest.cc

Issue 6151011: Introduce RenderView::Observer interface so that RenderView doesn't have to k... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "app/keyboard_codes.h" 5 #include "app/keyboard_codes.h"
6 #include "base/string_util.h" 6 #include "base/string_util.h"
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "chrome/renderer/password_autocomplete_manager.h" 8 #include "chrome/renderer/autofill_helper.h"
9 #include "chrome/test/render_view_test.h" 9 #include "chrome/test/render_view_test.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "third_party/WebKit/WebKit/chromium/public/WebDocument.h" 11 #include "third_party/WebKit/WebKit/chromium/public/WebDocument.h"
12 #include "third_party/WebKit/WebKit/chromium/public/WebElement.h" 12 #include "third_party/WebKit/WebKit/chromium/public/WebElement.h"
13 #include "third_party/WebKit/WebKit/chromium/public/WebFormElement.h" 13 #include "third_party/WebKit/WebKit/chromium/public/WebFormElement.h"
14 #include "third_party/WebKit/WebKit/chromium/public/WebInputElement.h" 14 #include "third_party/WebKit/WebKit/chromium/public/WebInputElement.h"
15 #include "third_party/WebKit/WebKit/chromium/public/WebNode.h" 15 #include "third_party/WebKit/WebKit/chromium/public/WebNode.h"
16 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" 16 #include "third_party/WebKit/WebKit/chromium/public/WebString.h"
17 #include "third_party/WebKit/WebKit/chromium/public/WebVector.h" 17 #include "third_party/WebKit/WebKit/chromium/public/WebVector.h"
18 #include "webkit/glue/form_data.h" 18 #include "webkit/glue/form_data.h"
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 username_element_.setAutofilled(false); 110 username_element_.setAutofilled(false);
111 password_element_.setValue(""); 111 password_element_.setValue("");
112 password_element_.setAutofilled(false); 112 password_element_.setAutofilled(false);
113 } 113 }
114 114
115 void SimulateUsernameChange(const std::string& username, 115 void SimulateUsernameChange(const std::string& username,
116 bool move_caret_to_end) { 116 bool move_caret_to_end) {
117 username_element_.setValue(WebString::fromUTF8(username)); 117 username_element_.setValue(WebString::fromUTF8(username));
118 if (move_caret_to_end) 118 if (move_caret_to_end)
119 username_element_.setSelectionRange(username.length(), username.length()); 119 username_element_.setSelectionRange(username.length(), username.length());
120 view_->textFieldDidChange(username_element_); 120 autofill_helper_->textFieldDidChange(username_element_);
121 // Processing is delayed because of a WebKit bug, see 121 // Processing is delayed because of a WebKit bug, see
122 // PasswordAutocompleteManager::TextDidChangeInTextField() for details. 122 // PasswordAutocompleteManager::TextDidChangeInTextField() for details.
123 MessageLoop::current()->RunAllPending(); 123 MessageLoop::current()->RunAllPending();
124 } 124 }
125 125
126 void SimulateKeyDownEvent(const WebInputElement& element, 126 void SimulateKeyDownEvent(const WebInputElement& element,
127 app::KeyboardCode key_code) { 127 app::KeyboardCode key_code) {
128 WebKit::WebKeyboardEvent key_event; 128 WebKit::WebKeyboardEvent key_event;
129 key_event.windowsKeyCode = key_code; 129 key_event.windowsKeyCode = key_code;
130 view_->textFieldDidReceiveKeyDown(element, key_event); 130 autofill_helper_->textFieldDidReceiveKeyDown(element, key_event);
131 } 131 }
132 132
133 void CheckTextFieldsState(const std::string& username, 133 void CheckTextFieldsState(const std::string& username,
134 bool username_autofilled, 134 bool username_autofilled,
135 const std::string& password, 135 const std::string& password,
136 bool password_autofilled) { 136 bool password_autofilled) {
137 EXPECT_EQ(username, 137 EXPECT_EQ(username,
138 static_cast<std::string>(username_element_.value().utf8())); 138 static_cast<std::string>(username_element_.value().utf8()));
139 EXPECT_EQ(username_autofilled, username_element_.isAutofilled()); 139 EXPECT_EQ(username_autofilled, username_element_.isAutofilled());
140 EXPECT_EQ(password, 140 EXPECT_EQ(password,
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 SimulateUsernameChange("a", true); 236 SimulateUsernameChange("a", true);
237 CheckTextFieldsState("a", false, "", false); 237 CheckTextFieldsState("a", false, "", false);
238 SimulateUsernameChange("al", true); 238 SimulateUsernameChange("al", true);
239 CheckTextFieldsState("al", false, "", false); 239 CheckTextFieldsState("al", false, "", false);
240 SimulateUsernameChange(kAliceUsername, true); 240 SimulateUsernameChange(kAliceUsername, true);
241 CheckTextFieldsState(kAliceUsername, false, "", false); 241 CheckTextFieldsState(kAliceUsername, false, "", false);
242 242
243 // Autocomplete should happen only when the username textfield is blurred with 243 // Autocomplete should happen only when the username textfield is blurred with
244 // a full match. 244 // a full match.
245 username_element_.setValue("a"); 245 username_element_.setValue("a");
246 view_->textFieldDidEndEditing(username_element_); 246 autofill_helper_->textFieldDidEndEditing(username_element_);
247 CheckTextFieldsState("a", false, "", false); 247 CheckTextFieldsState("a", false, "", false);
248 username_element_.setValue("al"); 248 username_element_.setValue("al");
249 view_->textFieldDidEndEditing(username_element_); 249 autofill_helper_->textFieldDidEndEditing(username_element_);
250 CheckTextFieldsState("al", false, "", false); 250 CheckTextFieldsState("al", false, "", false);
251 username_element_.setValue("alices"); 251 username_element_.setValue("alices");
252 view_->textFieldDidEndEditing(username_element_); 252 autofill_helper_->textFieldDidEndEditing(username_element_);
253 CheckTextFieldsState("alices", false, "", false); 253 CheckTextFieldsState("alices", false, "", false);
254 username_element_.setValue(ASCIIToUTF16(kAliceUsername)); 254 username_element_.setValue(ASCIIToUTF16(kAliceUsername));
255 view_->textFieldDidEndEditing(username_element_); 255 autofill_helper_->textFieldDidEndEditing(username_element_);
256 CheckTextFieldsState(kAliceUsername, true, kAlicePassword, true); 256 CheckTextFieldsState(kAliceUsername, true, kAlicePassword, true);
257 } 257 }
258 258
259 // Tests that inline autocompletion works properly. 259 // Tests that inline autocompletion works properly.
260 TEST_F(PasswordAutocompleteManagerTest, InlineAutocomplete) { 260 TEST_F(PasswordAutocompleteManagerTest, InlineAutocomplete) {
261 // Simulate the browser sending back the login info. 261 // Simulate the browser sending back the login info.
262 SimulateOnFillPasswordForm(fill_data_); 262 SimulateOnFillPasswordForm(fill_data_);
263 263
264 // Clear the textfields to start fresh. 264 // Clear the textfields to start fresh.
265 ClearUsernameAndPasswordFields(); 265 ClearUsernameAndPasswordFields();
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 // Simulate the browser sending back the login info. 319 // Simulate the browser sending back the login info.
320 SimulateOnFillPasswordForm(fill_data_); 320 SimulateOnFillPasswordForm(fill_data_);
321 321
322 // Clear the textfields to start fresh. 322 // Clear the textfields to start fresh.
323 ClearUsernameAndPasswordFields(); 323 ClearUsernameAndPasswordFields();
324 324
325 // To simulate a selection in the suggestion drop-down we just mimick what the 325 // To simulate a selection in the suggestion drop-down we just mimick what the
326 // WebView does: it sets the element value then calls 326 // WebView does: it sets the element value then calls
327 // didAcceptAutocompleteSuggestion on the renderer. 327 // didAcceptAutocompleteSuggestion on the renderer.
328 username_element_.setValue(ASCIIToUTF16(kAliceUsername)); 328 username_element_.setValue(ASCIIToUTF16(kAliceUsername));
329 view_->didAcceptAutocompleteSuggestion(username_element_); 329 autofill_helper_->didAcceptAutocompleteSuggestion(username_element_);
330 330
331 // Autocomplete should have kicked in. 331 // Autocomplete should have kicked in.
332 CheckTextFieldsState(kAliceUsername, true, kAlicePassword, true); 332 CheckTextFieldsState(kAliceUsername, true, kAlicePassword, true);
333 } 333 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698