| OLD | NEW |
| 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/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "base/utf_string_conversions.h" | 6 #include "base/utf_string_conversions.h" |
| 7 #include "components/autofill/browser/password_autofill_manager.h" | 7 #include "components/autofill/browser/password_autofill_manager.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 | 9 |
| 10 namespace { | 10 namespace { |
| 11 | 11 |
| 12 // The name of the username/password element in the form. | 12 // The name of the username/password element in the form. |
| 13 const char* const kUsernameName = "username"; | 13 const char* const kUsernameName = "username"; |
| 14 const char* const kInvalidUsername = "no-username"; | 14 const char* const kInvalidUsername = "no-username"; |
| 15 const char* const kPasswordName = "password"; | 15 const char* const kPasswordName = "password"; |
| 16 | 16 |
| 17 const char* const kAliceUsername = "alice"; | 17 const char* const kAliceUsername = "alice"; |
| 18 const char* const kAlicePassword = "password"; | 18 const char* const kAlicePassword = "password"; |
| 19 | 19 |
| 20 const char* const kValue = "password"; | 20 const char* const kValue = "password"; |
| 21 | 21 |
| 22 } // namespace | 22 } // namespace |
| 23 | 23 |
| 24 class PasswordAutofillManagerTest : public testing::Test { | 24 class PasswordAutofillManagerTest : public testing::Test { |
| 25 protected: | 25 protected: |
| 26 PasswordAutofillManagerTest() : password_autofill_manager_(NULL) {} | 26 PasswordAutofillManagerTest() : password_autofill_manager_(NULL) {} |
| 27 | 27 |
| 28 virtual void SetUp() OVERRIDE { | 28 virtual void SetUp() OVERRIDE { |
| 29 // Add a preferred login and an additional login to the FillData. | 29 // Add a preferred login and an additional login to the FillData. |
| 30 string16 username1 = ASCIIToUTF16(kAliceUsername); | 30 base::string16 username1 = ASCIIToUTF16(kAliceUsername); |
| 31 string16 password1 = ASCIIToUTF16(kAlicePassword); | 31 base::string16 password1 = ASCIIToUTF16(kAlicePassword); |
| 32 | 32 |
| 33 username_field_.name = ASCIIToUTF16(kUsernameName); | 33 username_field_.name = ASCIIToUTF16(kUsernameName); |
| 34 username_field_.value = username1; | 34 username_field_.value = username1; |
| 35 fill_data_.basic_data.fields.push_back(username_field_); | 35 fill_data_.basic_data.fields.push_back(username_field_); |
| 36 | 36 |
| 37 FormFieldData password_field; | 37 FormFieldData password_field; |
| 38 password_field.name = ASCIIToUTF16(kPasswordName); | 38 password_field.name = ASCIIToUTF16(kPasswordName); |
| 39 password_field.value = password1; | 39 password_field.value = password1; |
| 40 fill_data_.basic_data.fields.push_back(password_field); | 40 fill_data_.basic_data.fields.push_back(password_field); |
| 41 | 41 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 65 FormFieldData invalid_username_field; | 65 FormFieldData invalid_username_field; |
| 66 invalid_username_field.name = ASCIIToUTF16(kInvalidUsername); | 66 invalid_username_field.name = ASCIIToUTF16(kInvalidUsername); |
| 67 | 67 |
| 68 EXPECT_FALSE(password_autofill_manager()->DidAcceptAutofillSuggestion( | 68 EXPECT_FALSE(password_autofill_manager()->DidAcceptAutofillSuggestion( |
| 69 invalid_username_field, ASCIIToUTF16(kAliceUsername))); | 69 invalid_username_field, ASCIIToUTF16(kAliceUsername))); |
| 70 | 70 |
| 71 password_autofill_manager()->Reset(); | 71 password_autofill_manager()->Reset(); |
| 72 EXPECT_FALSE(password_autofill_manager()->DidAcceptAutofillSuggestion( | 72 EXPECT_FALSE(password_autofill_manager()->DidAcceptAutofillSuggestion( |
| 73 username_field(), ASCIIToUTF16(kAliceUsername))); | 73 username_field(), ASCIIToUTF16(kAliceUsername))); |
| 74 } | 74 } |
| OLD | NEW |