forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_modes_unittest.cc
105 lines (88 loc) · 3.44 KB
/
install_modes_unittest.cc
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
// Copyright 2016 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 "chrome/install_static/install_modes.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using ::testing::Eq;
using ::testing::Gt;
using ::testing::Ne;
using ::testing::StrEq;
using ::testing::StrNe;
namespace install_static {
TEST(InstallModes, VerifyModes) {
ASSERT_THAT(NUM_INSTALL_MODES, Gt(0));
for (int i = 0; i < NUM_INSTALL_MODES; ++i) {
const InstallConstants& mode = kInstallModes[i];
// The modes must be listed in order.
ASSERT_THAT(mode.index, Eq(i));
// The first mode must have no suffix; the rest must have one.
if (i == 0)
ASSERT_THAT(mode.install_suffix, StrEq(L""));
else
ASSERT_THAT(mode.install_suffix, StrNe(L""));
// The modes must have an appguid if Google Update integration is supported.
if (kUseGoogleUpdateIntegration)
ASSERT_THAT(mode.app_guid, StrNe(L""));
else
ASSERT_THAT(mode.app_guid, StrEq(L""));
// UNSUPPORTED and kUseGoogleUpdateIntegration are mutually exclusive.
if (kUseGoogleUpdateIntegration)
ASSERT_THAT(mode.channel_strategy, Ne(ChannelStrategy::UNSUPPORTED));
else
ASSERT_THAT(mode.channel_strategy, Eq(ChannelStrategy::UNSUPPORTED));
}
}
TEST(InstallModes, VerifyBrand) {
if (kUseGoogleUpdateIntegration) {
// Binaries are registered under an app guid with Google Update integration.
ASSERT_THAT(kBinariesAppGuid, StrNe(L""));
ASSERT_THAT(kBinariesPathName, StrEq(L""));
} else {
// Binaries are registered under a different path name without.
ASSERT_THAT(kBinariesAppGuid, StrEq(L""));
ASSERT_THAT(kBinariesPathName, StrNe(L""));
}
}
TEST(InstallModes, GetClientStateKeyPath) {
constexpr wchar_t kAppGuid[] = L"test";
if (kUseGoogleUpdateIntegration) {
ASSERT_THAT(GetClientStateKeyPath(kAppGuid),
StrEq(L"Software\\Google\\Update\\ClientState\\test"));
} else {
ASSERT_THAT(GetClientStateKeyPath(kAppGuid),
StrEq(std::wstring(L"Software\\").append(kProductPathName)));
}
}
TEST(InstallModes, GetBinariesClientStateKeyPath) {
if (kUseGoogleUpdateIntegration) {
ASSERT_THAT(GetBinariesClientStateKeyPath(),
StrEq(std::wstring(L"Software\\Google\\Update\\ClientState\\")
.append(kBinariesAppGuid)));
} else {
ASSERT_THAT(GetBinariesClientStateKeyPath(),
StrEq(std::wstring(L"Software\\").append(kBinariesPathName)));
}
}
TEST(InstallModes, GetClientStateMediumKeyPath) {
constexpr wchar_t kAppGuid[] = L"test";
if (kUseGoogleUpdateIntegration) {
ASSERT_THAT(GetClientStateMediumKeyPath(kAppGuid),
StrEq(L"Software\\Google\\Update\\ClientStateMedium\\test"));
} else {
ASSERT_THAT(GetClientStateMediumKeyPath(kAppGuid),
StrEq(std::wstring(L"Software\\").append(kProductPathName)));
}
}
TEST(InstallModes, GetBinariesClientStateMediumKeyPath) {
if (kUseGoogleUpdateIntegration) {
ASSERT_THAT(
GetBinariesClientStateMediumKeyPath(),
StrEq(std::wstring(L"Software\\Google\\Update\\ClientStateMedium\\")
.append(kBinariesAppGuid)));
} else {
ASSERT_THAT(GetBinariesClientStateMediumKeyPath(),
StrEq(std::wstring(L"Software\\").append(kBinariesPathName)));
}
}
} // namespace install_static