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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
// Copyright (c) 2010 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 <string>
#include <vector>
#include "chrome/installer/util/language_selector.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
const wchar_t* const kExactMatchCandidates[] = {
#if defined(GOOGLE_CHROME_BUILD)
L"am", L"ar", L"bg", L"bn", L"ca", L"cs", L"da", L"de", L"el", L"en-gb",
L"en-us", L"es", L"es-419", L"et", L"fa", L"fi", L"fil", L"fr", L"gu", L"hi",
L"hr", L"hu", L"id", L"it", L"iw", L"ja", L"kn", L"ko", L"lt", L"lv", L"ml",
L"mr", L"nl", L"no", L"pl", L"pt-br", L"pt-pt", L"ro", L"ru", L"sk", L"sl",
L"sr", L"sv", L"sw", L"ta", L"te", L"th", L"tr", L"uk", L"vi", L"zh-cn",
L"zh-tw"
#else
L"en-us"
#endif
};
const wchar_t* const kAliasMatchCandidates[] = {
#if defined(GOOGLE_CHROME_BUILD)
L"he", L"nb", L"tl", L"zh-chs", L"zh-cht", L"zh-hans", L"zh-hant", L"zh-hk",
L"zh-mk", L"zh-mo"
#else
// There is only en-us.
L"en-us"
#endif
};
const wchar_t* const kWildcardMatchCandidates[] = {
L"en-AU",
#if defined(GOOGLE_CHROME_BUILD)
L"es-CO", L"pt-AB", L"zh-SG"
#endif
};
} // namespace
// Test that a language is selected from the system.
TEST(LanguageSelectorTest, DefaultSelection) {
installer::LanguageSelector instance;
EXPECT_FALSE(instance.matched_candidate().empty());
}
// Test some hypothetical candidate sets.
TEST(LanguageSelectorTest, AssortedSelections) {
{
std::wstring candidates[] = {
L"fr-BE", L"fr", L"en"
};
installer::LanguageSelector instance(
std::vector<std::wstring>(&candidates[0],
&candidates[arraysize(candidates)]));
#if defined(GOOGLE_CHROME_BUILD)
// Expect the exact match to win.
EXPECT_EQ(L"fr", instance.matched_candidate());
#else
// Expect the exact match to win.
EXPECT_EQ(L"en", instance.matched_candidate());
#endif
}
{
std::wstring candidates[] = {
L"xx-YY", L"cc-Ssss-RR"
};
installer::LanguageSelector instance(
std::vector<std::wstring>(&candidates[0],
&candidates[arraysize(candidates)]));
// Expect the fallback to win.
EXPECT_EQ(L"en-us", instance.matched_candidate());
}
{
std::wstring candidates[] = {
L"zh-SG", L"en-GB"
};
installer::LanguageSelector instance(
std::vector<std::wstring>(&candidates[0],
&candidates[arraysize(candidates)]));
#if defined(GOOGLE_CHROME_BUILD)
// Expect the alias match to win.
EXPECT_EQ(L"zh-SG", instance.matched_candidate());
#else
// Expect the exact match to win.
EXPECT_EQ(L"en-GB", instance.matched_candidate());
#endif
}
}
// A fixture for testing sets of single-candidate selections.
class LanguageSelectorMatchCandidateTest
: public ::testing::TestWithParam<const wchar_t*> {
};
TEST_P(LanguageSelectorMatchCandidateTest, TestMatchCandidate) {
installer::LanguageSelector instance(
std::vector<std::wstring>(1, std::wstring(GetParam())));
EXPECT_EQ(GetParam(), instance.matched_candidate());
}
// Test that all existing translations can be found by exact match.
INSTANTIATE_TEST_CASE_P(
TestExactMatches,
LanguageSelectorMatchCandidateTest,
::testing::ValuesIn(
&kExactMatchCandidates[0],
&kExactMatchCandidates[arraysize(kExactMatchCandidates)]));
// Test the alias matches.
INSTANTIATE_TEST_CASE_P(
TestAliasMatches,
LanguageSelectorMatchCandidateTest,
::testing::ValuesIn(
&kAliasMatchCandidates[0],
&kAliasMatchCandidates[arraysize(kAliasMatchCandidates)]));
// Test a few wildcard matches.
INSTANTIATE_TEST_CASE_P(
TestWildcardMatches,
LanguageSelectorMatchCandidateTest,
::testing::ValuesIn(
&kWildcardMatchCandidates[0],
&kWildcardMatchCandidates[arraysize(kWildcardMatchCandidates)]));
|