OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #include "base/guid.h" | 7 #include "base/guid.h" |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "base/test/scoped_feature_list.h" | |
12 #include "base/time/time.h" | 11 #include "base/time/time.h" |
13 #include "build/build_config.h" | 12 #include "build/build_config.h" |
14 #include "components/autofill/core/browser/autofill_experiments.h" | 13 #include "components/autofill/core/browser/autofill_experiments.h" |
15 #include "components/autofill/core/browser/autofill_test_utils.h" | 14 #include "components/autofill/core/browser/autofill_test_utils.h" |
16 #include "components/autofill/core/browser/autofill_type.h" | 15 #include "components/autofill/core/browser/autofill_type.h" |
17 #include "components/autofill/core/browser/credit_card.h" | 16 #include "components/autofill/core/browser/credit_card.h" |
18 #include "components/autofill/core/browser/validation.h" | 17 #include "components/autofill/core/browser/validation.h" |
19 #include "components/autofill/core/common/autofill_constants.h" | 18 #include "components/autofill/core/common/autofill_constants.h" |
20 #include "components/autofill/core/common/form_field_data.h" | 19 #include "components/autofill/core/common/form_field_data.h" |
21 #include "components/grit/components_scaled_resources.h" | 20 #include "components/grit/components_scaled_resources.h" |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 "1"); | 148 "1"); |
150 base::string16 summary5 = credit_card5.Label(); | 149 base::string16 summary5 = credit_card5.Label(); |
151 EXPECT_EQ( | 150 EXPECT_EQ( |
152 UTF8ToUTF16(std::string("Card") + kUTF8MidlineEllipsis + "5100, 01/2010"), | 151 UTF8ToUTF16(std::string("Card") + kUTF8MidlineEllipsis + "5100, 01/2010"), |
153 summary5); | 152 summary5); |
154 base::string16 obfuscated5 = credit_card5.NetworkAndLastFourDigits(); | 153 base::string16 obfuscated5 = credit_card5.NetworkAndLastFourDigits(); |
155 EXPECT_EQ(UTF8ToUTF16(std::string("Card") + kUTF8MidlineEllipsis + "5100"), | 154 EXPECT_EQ(UTF8ToUTF16(std::string("Card") + kUTF8MidlineEllipsis + "5100"), |
156 obfuscated5); | 155 obfuscated5); |
157 } | 156 } |
158 | 157 |
159 // Tests credit card bank name and last four digits string generation. | |
160 TEST(CreditCardTest, BankNameAndLastFourDigitsStrings) { | |
161 // Case 1: Have everything and show bank name. | |
162 CreditCard credit_card1(base::GenerateGUID(), "https://www.example.com/"); | |
163 test::SetCreditCardInfo(&credit_card1, "John Dillinger", | |
164 "5105 1051 0510 5100", "01", "2010", "1"); | |
165 credit_card1.set_bank_name("Chase"); | |
166 base::string16 obfuscated1 = credit_card1.BankNameAndLastFourDigits(); | |
167 EXPECT_FALSE(credit_card1.bank_name().empty()); | |
168 EXPECT_EQ(UTF8ToUTF16(std::string("Chase") + kUTF8MidlineEllipsis + "5100"), | |
169 obfuscated1); | |
170 | |
171 // Case 2: Have no bank name and not show bank name. | |
172 CreditCard credit_card2(base::GenerateGUID(), "https://www.example.com/"); | |
173 test::SetCreditCardInfo(&credit_card2, "John Dillinger", | |
174 "5105 1051 0510 5100", "01", "2010", "1"); | |
175 base::string16 obfuscated2 = credit_card2.BankNameAndLastFourDigits(); | |
176 EXPECT_TRUE(credit_card2.bank_name().empty()); | |
177 EXPECT_EQ(UTF8ToUTF16(std::string(kUTF8MidlineEllipsis) + "5100"), | |
178 obfuscated2); | |
179 | |
180 // Case 3: Have bank name but no last four digits, only show bank name. | |
181 CreditCard credit_card3(base::GenerateGUID(), "https://www.example.com/"); | |
182 test::SetCreditCardInfo(&credit_card3, "John Dillinger", | |
183 "", "01", "2010", "1"); | |
184 credit_card3.set_bank_name("Chase"); | |
185 base::string16 obfuscated3 = credit_card3.BankNameAndLastFourDigits(); | |
186 EXPECT_FALSE(credit_card3.bank_name().empty()); | |
187 EXPECT_EQ(UTF8ToUTF16(std::string("Chase")), obfuscated3); | |
188 } | |
189 | |
190 TEST(CreditCardTest, AssignmentOperator) { | 158 TEST(CreditCardTest, AssignmentOperator) { |
191 CreditCard a(base::GenerateGUID(), "some origin"); | 159 CreditCard a(base::GenerateGUID(), "some origin"); |
192 test::SetCreditCardInfo(&a, "John Dillinger", "123456789012", "01", "2010", | 160 test::SetCreditCardInfo(&a, "John Dillinger", "123456789012", "01", "2010", |
193 "1"); | 161 "1"); |
194 | 162 |
195 // Result of assignment should be logically equal to the original profile. | 163 // Result of assignment should be logically equal to the original profile. |
196 CreditCard b(base::GenerateGUID(), "some other origin"); | 164 CreditCard b(base::GenerateGUID(), "some other origin"); |
197 b = a; | 165 b = a; |
198 EXPECT_TRUE(a == b); | 166 EXPECT_TRUE(a == b); |
199 | 167 |
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1122 credit_card0.GetLastUsedDateForDisplay(test_case.app_locale)); | 1090 credit_card0.GetLastUsedDateForDisplay(test_case.app_locale)); |
1123 EXPECT_EQ(test_case.last_used_date, | 1091 EXPECT_EQ(test_case.last_used_date, |
1124 credit_card1.GetLastUsedDateForDisplay(test_case.app_locale)); | 1092 credit_card1.GetLastUsedDateForDisplay(test_case.app_locale)); |
1125 EXPECT_EQ(test_case.last_used_year_ago, | 1093 EXPECT_EQ(test_case.last_used_year_ago, |
1126 credit_card2.GetLastUsedDateForDisplay(test_case.app_locale)); | 1094 credit_card2.GetLastUsedDateForDisplay(test_case.app_locale)); |
1127 variation_params_.ClearAllVariationParams(); | 1095 variation_params_.ClearAllVariationParams(); |
1128 } | 1096 } |
1129 } | 1097 } |
1130 | 1098 |
1131 } // namespace autofill | 1099 } // namespace autofill |
OLD | NEW |