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

Unified Diff: components/autofill/core/common/autofill_l10n_util_unittest.cc

Issue 1457393003: [Autofill] Guard against the initialization failure of ICU Collator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: UBool Created 5 years, 1 month 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/common/autofill_l10n_util_unittest.cc
diff --git a/components/autofill/core/common/autofill_l10n_util_unittest.cc b/components/autofill/core/common/autofill_l10n_util_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b724c6b41d848319bb73e468b4e7a851def43a00
--- /dev/null
+++ b/components/autofill/core/common/autofill_l10n_util_unittest.cc
@@ -0,0 +1,35 @@
+// Copyright 2015 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 "components/autofill/core/common/autofill_l10n_util.h"
+
+#include "base/test/histogram_tester.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "third_party/icu/source/common/unicode/locid.h"
+
+namespace autofill {
+namespace l10n {
+
+// Test the success in the creation of the ICU Collator.
+TEST(CaseInsensitiveCompareTest, IcuCollatorCreation_Success) {
+ base::HistogramTester histogram_tester;
+ CaseInsensitiveCompare compare;
+ histogram_tester.ExpectUniqueSample("Autofill.IcuCollatorCreationSuccess",
+ true, 1);
+}
+
+// Test the failure in creating the ICU Collator.
+TEST(CaseInsensitiveCompareTest, IcuCollatorCreation_FailureBadLocale) {
+ // Setting the locale to a bogus value.
+ icu::Locale bogusLocale = icu::Locale::createFromName("bogus");
+ bogusLocale.setToBogus();
+
+ base::HistogramTester histogram_tester;
+ CaseInsensitiveCompare compare(bogusLocale);
+ histogram_tester.ExpectUniqueSample("Autofill.IcuCollatorCreationSuccess",
+ false, 1);
+}
+
+} // namespace l10n
+} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698