1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <string>
#include <utility>
#include "base/strings/utf_string_conversions.h"
#include "components/autofill/core/browser/geo/country_names.h"
#include "testing/gtest/include/gtest/gtest.h"
using base::ASCIIToUTF16;
namespace autofill {
namespace {
class TestCountryNames : public CountryNames {
public:
explicit TestCountryNames(const std::string& locale_name)
: CountryNames(locale_name) {}
~TestCountryNames() = default;
};
// Test mapping of localized country names to country codes.
TEST(CountryNamesTest, GetCountryCode_BasicMapping) {
TestCountryNames en_us_names("en_US");
EXPECT_EQ("US", en_us_names.GetCountryCode(u"United States"));
EXPECT_EQ("CA", en_us_names.GetCountryCode(u"Canada"));
EXPECT_EQ("CZ", en_us_names.GetCountryCode(u"Czech Republic"));
}
TEST(CountryNamesTest, GetCountryCode_CaseInsensitiveMapping) {
EXPECT_EQ("US", TestCountryNames("en_US").GetCountryCode(u"united states"));
}
TEST(CountryNamesTest, GetCountryCode_CodesMapToThemselves) {
TestCountryNames en_us_names("en_US");
TestCountryNames fr_ca_names("fr_CA");
EXPECT_EQ("US", en_us_names.GetCountryCode(u"US"));
EXPECT_EQ("HU", en_us_names.GetCountryCode(u"hu"));
EXPECT_EQ("CA", fr_ca_names.GetCountryCode(u"CA"));
EXPECT_EQ("MX", fr_ca_names.GetCountryCode(u"mx"));
}
TEST(CountryNamesTest, GetCountryCode_BasicSynonyms) {
TestCountryNames en_us_names("en_US");
EXPECT_EQ("US", en_us_names.GetCountryCode(u"United States of America"));
EXPECT_EQ("US", en_us_names.GetCountryCode(u"USA"));
}
TEST(CountryNamesTest, GetCountryCode_OtherLocales) {
EXPECT_EQ("US", TestCountryNames("es").GetCountryCode(u"Estados Unidos"));
EXPECT_EQ("IT", TestCountryNames("it").GetCountryCode(u"Italia"));
EXPECT_EQ("DE", TestCountryNames("nl").GetCountryCode(u"duitsland"));
}
TEST(CountryNamesTest, GetCountryCode_EnUsFallback) {
TestCountryNames es_names("es");
EXPECT_EQ("US", es_names.GetCountryCode(u"United States"));
EXPECT_EQ("US", es_names.GetCountryCode(u"united states"));
EXPECT_EQ("US", es_names.GetCountryCode(u"USA"));
}
TEST(CountryNamesTest, GetCountryCodeForLocalizedCountryName) {
// Initialize with the default locale.
TestCountryNames names("en_US");
EXPECT_EQ("AM",
names.GetCountryCodeForLocalizedCountryName(u"Armenien", "de"));
// Check that there is no cache by requesting the same result twice.
EXPECT_EQ("AM",
names.GetCountryCodeForLocalizedCountryName(u"Armenien", "de"));
EXPECT_EQ("AZ",
names.GetCountryCodeForLocalizedCountryName(u"Azerbeidzjan", "nl"));
}
TEST(CountryNamesTest, GetCachedCountryCodeForLocalizedCountryName) {
// Initialize with the default locale.
TestCountryNames names("en_US");
// Verify that the entry is not cached.
EXPECT_FALSE(names.IsCountryNamesForLocaleCachedForTesting("de"));
// Make a lookup of the entry that should result in a cache write.
EXPECT_EQ("AM",
names.GetCountryCodeForLocalizedCountryName(u"Armenien", "de"));
// Verify that the entry is cached.
EXPECT_TRUE(names.IsCountryNamesForLocaleCachedForTesting("de"));
}
// Test mapping of an empty country name to an country code.
TEST(CountryNamesTest, EmptyCountryNameHasEmptyCountryCode) {
std::string country_code =
TestCountryNames("en").GetCountryCode(std::u16string());
EXPECT_TRUE(country_code.empty()) << country_code;
}
} // namespace
} // namespace autofill
|