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

Unified Diff: components/autofill/core/browser/credit_card_unittest.cc

Issue 2711543002: Experiment to add bank name in autofill ui. (Closed)
Patch Set: Add comments about the flag Created 3 years, 10 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
Index: components/autofill/core/browser/credit_card_unittest.cc
diff --git a/components/autofill/core/browser/credit_card_unittest.cc b/components/autofill/core/browser/credit_card_unittest.cc
index 56ba73605edafd3e63dac4b3bccf750f96da4835..32cd17c1fbd865224bbf99dd70c1e276413c9d09 100644
--- a/components/autofill/core/browser/credit_card_unittest.cc
+++ b/components/autofill/core/browser/credit_card_unittest.cc
@@ -8,6 +8,7 @@
#include "base/macros.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
+#include "base/test/scoped_feature_list.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/autofill/core/browser/autofill_experiments.h"
@@ -144,6 +145,26 @@ TEST(CreditCardTest, PreviewSummaryAndTypeAndLastFourDigitsStrings) {
obfuscated5);
}
+// Tests credit card bank name and last four digits string generation.
+TEST(CreditCardTest, BankNameAndLastFourDigitsStrings) {
+ // Case 1: Have everything and show bank name
+ CreditCard credit_card1(base::GenerateGUID(), "https://www.example.com/");
+ test::SetCreditCardInfo(
+ &credit_card1, "John Dillinger", "5105 1051 0510 5100", "01", "2010");
+ credit_card1.SetBankName("Chase");
+ base::string16 obfuscated1 = credit_card1.BankNameAndLastFourDigits();
+ EXPECT_FALSE(credit_card1.bank_name().empty());
+ EXPECT_EQ(UTF8ToUTF16("Chase" + kUTF8MidlineEllipsis + "5100"), obfuscated1);
+
+ // Case 2: Have no bank name and not show bank name
+ CreditCard credit_card2(base::GenerateGUID(), "https://www.example.com/");
+ test::SetCreditCardInfo(
+ &credit_card2, "John Dillinger", "5105 1051 0510 5100", "01", "2010");
+ base::string16 obfuscated2 = credit_card2.BankNameAndLastFourDigits();
+ EXPECT_TRUE(credit_card2.bank_name().empty());
+ EXPECT_EQ(UTF8ToUTF16(kUTF8MidlineEllipsis + "5100"), obfuscated2);
+}
+
TEST(CreditCardTest, AssignmentOperator) {
CreditCard a(base::GenerateGUID(), "some origin");
test::SetCreditCardInfo(&a, "John Dillinger", "123456789012", "01", "2010");

Powered by Google App Engine
This is Rietveld 408576698