Index: chrome/browser/autofill/android/auxiliary_profile_unittest_android.cc |
diff --git a/chrome/browser/autofill/android/auxiliary_profile_unittest_android.cc b/chrome/browser/autofill/android/auxiliary_profile_unittest_android.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..34debf8510589d8eb388a58947d255d6f9118511 |
--- /dev/null |
+++ b/chrome/browser/autofill/android/auxiliary_profile_unittest_android.cc |
@@ -0,0 +1,158 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "base/memory/scoped_vector.h" |
+#include "base/string16.h" |
+#include "base/utf_string_conversions.h" |
+#include "chrome/browser/autofill/android/auxiliary_profile_loader_android.h" |
+#include "chrome/browser/autofill/android/auxiliary_profiles_android.h" |
+#include "chrome/browser/autofill/android/test_auxiliary_profile_loader_android.h" |
+#include "chrome/browser/autofill/autofill_profile.h" |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+class AuxiliaryProfileAndroidTest : public testing::Test { |
+ public: |
+ AuxiliaryProfileAndroidTest() : profile_loader_(){} |
Ilya Sherman
2013/03/09 01:42:58
nit: Just write this as "AuxiliaryProfileAndroidTe
apiccion
2013/03/09 03:43:17
Done.
|
+ |
+ AutofillProfile* GetAndLoadProfile() { |
+ autofill::AuxiliaryProfilesAndroid impl(profile_loader_); |
+ profile_ = impl.LoadContactsProfile(); |
+ return profile_.get(); |
+ } |
+ |
+ TestAuxiliaryProfileLoader& profile_loader() { |
+ return profile_loader_; |
+ } |
+ |
+ private: |
+ TestAuxiliaryProfileLoader profile_loader_; |
+ scoped_ptr<AutofillProfile> profile_; |
+}; |
+ |
+TEST_F(AuxiliaryProfileAndroidTest, SetNameInfo) { |
+ string16 firstName = ASCIIToUTF16("John"); |
+ string16 middleName = ASCIIToUTF16("H."); |
+ string16 lastName = ASCIIToUTF16("Waston"); |
+ |
+ profile_loader().SetFirstName(firstName); |
+ profile_loader().SetMiddleName(middleName); |
+ profile_loader().SetLastName(lastName); |
+ |
+ AutofillProfile* profile = GetAndLoadProfile(); |
+ |
+ EXPECT_EQ(profile->GetRawInfo(NAME_FIRST), firstName); |
+ EXPECT_EQ(profile->GetRawInfo(NAME_MIDDLE), middleName); |
+ EXPECT_EQ(profile->GetRawInfo(NAME_LAST), lastName); |
+} |
+ |
+TEST_F(AuxiliaryProfileAndroidTest, SetNameInfoEmpty) { |
+ AutofillProfile* profile = GetAndLoadProfile(); |
+ |
+ EXPECT_EQ(profile->GetRawInfo(NAME_FIRST), string16()); |
+ EXPECT_EQ(profile->GetRawInfo(NAME_MIDDLE), string16()); |
+ EXPECT_EQ(profile->GetRawInfo(NAME_LAST), string16()); |
+} |
+ |
+TEST_F(AuxiliaryProfileAndroidTest, SetEmailInfo) { |
+ std::vector<string16> emailAddresses; |
+ emailAddresses.push_back(ASCIIToUTF16("sherlock@holmes.com")); |
+ emailAddresses.push_back(ASCIIToUTF16("watson@holmes.com")); |
+ profile_loader().SetEmailAddresses(emailAddresses); |
+ |
+ AutofillProfile * profile = GetAndLoadProfile(); |
+ std::vector<string16> loadedEmailAddresses; |
+ profile->GetRawMultiInfo(EMAIL_ADDRESS, &loadedEmailAddresses); |
+ EXPECT_EQ(loadedEmailAddresses, emailAddresses); |
+} |
+ |
+TEST_F(AuxiliaryProfileAndroidTest, SetEmailInfoEmpty) { |
+ std::vector<string16> expectedEmailAddresses; |
+ expectedEmailAddresses.push_back(string16()); |
+ std::vector<string16> loadedEmailAddresses; |
+ AutofillProfile * profile = GetAndLoadProfile(); |
+ profile->GetRawMultiInfo(EMAIL_ADDRESS, &loadedEmailAddresses); |
+ EXPECT_EQ(loadedEmailAddresses, expectedEmailAddresses); |
+} |
+ |
+TEST_F(AuxiliaryProfileAndroidTest, SetPhoneInfo) { |
+ std::vector<string16> phoneNumbers; |
+ phoneNumbers.push_back(ASCIIToUTF16("6502530000")); |
+ profile_loader().SetPhoneNumbers(phoneNumbers); |
+ |
+ std::vector<string16> loadedPhoneNumbers; |
+ AutofillProfile * profile = GetAndLoadProfile(); |
+ profile->GetRawMultiInfo(PHONE_HOME_WHOLE_NUMBER, &loadedPhoneNumbers); |
+ EXPECT_EQ(loadedPhoneNumbers, phoneNumbers); |
+} |
+ |
+TEST_F(AuxiliaryProfileAndroidTest, SetPhoneInfoEmpty) { |
+ std::vector<string16> expectedPhoneNumbers; |
+ expectedPhoneNumbers.push_back(string16()); |
+ |
+ std::vector<string16> loadedPhoneNumbers; |
+ AutofillProfile * profile = GetAndLoadProfile(); |
Ilya Sherman
2013/03/09 01:42:58
nit: No space before the asterisk. (Please fix th
apiccion
2013/03/09 03:43:17
Done.
|
+ profile->GetRawMultiInfo(PHONE_HOME_WHOLE_NUMBER, &loadedPhoneNumbers); |
+ EXPECT_EQ(loadedPhoneNumbers, expectedPhoneNumbers); |
+} |
+ |
+// |
+// Android user's profile contact does not prase its address |
+// into constituent parts. Instead we just Get a long string blob. |
+// Disable address population tests until we implement a way to parse the |
+// data. |
+// |
+/* |
Ilya Sherman
2013/03/09 01:42:58
nit: If you must "comment out" a test, please use
apiccion
2013/03/09 03:43:17
Done.
|
+TEST_F(AuxiliaryProfileAndroidTest, SetAddressInfo) { |
+ string16 street = ASCIIToUTF16("221 B Baker Street"); |
+ string16 city = ASCIIToUTF16("London"); |
+ string16 postalCode = ASCIIToUTF16("123456"); |
+ string16 region = ASCIIToUTF16("Georgian Terrace"); |
+ string16 country = ASCIIToUTF16("England"); |
+ |
+ profile_loader().SetStreet(street); |
+ profile_loader().SetCity(city); |
+ profile_loader().SetPostalCode(postalCode); |
+ profile_loader().SetRegion(region); |
+ profile_loader().SetCountry(country); |
+ |
+ AutofillProfile* profile = GetAndLoadProfile(); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_LINE1), street); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_CITY), city); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_ZIP), postalCode); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_STATE), region); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_COUNTRY), country); |
+} |
+ |
+string16 pobox = ASCIIToUTF16("222"); |
+string16 neighborhood = ASCIIToUTF16("Doyle"); |
+TEST_F(AuxiliaryProfileAndroidTest, SetAddressInfoCompoundFields1) { |
+ profile_loader().SetPobox(pobox); |
+ profile_loader().SetNeighborhood(neighborhood); |
+ string16 expectedLine2= ASCIIToUTF16("222, Doyle"); |
+ AutofillProfile* profile = GetAndLoadProfile(); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_LINE2), expectedLine2); |
+} |
+ |
+TEST_F(AuxiliaryProfileAndroidTest, SetAddressInfoCompoundFields2) { |
+ profile_loader().SetPobox(pobox); |
+ AutofillProfile* profile = GetAndLoadProfile(); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_LINE2), pobox); |
+} |
+ |
+TEST_F(AuxiliaryProfileAndroidTest, SetAddressInfoCompoundFields3) { |
+ profile_loader().SetNeighborhood(neighborhood); |
+ AutofillProfile* profile = GetAndLoadProfile(); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_LINE2), neighborhood); |
+} |
+ |
+TEST_F(AuxiliaryProfileAndroidTest, SetAddressInfoEmpty) { |
+ AutofillProfile* profile = GetAndLoadProfile(); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_LINE1), string16()); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_LINE2), string16()); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_CITY), string16()); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_ZIP), string16()); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_STATE), string16()); |
+ EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_COUNTRY), string16()); |
+} |
+*/ |