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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
|
// Copyright (c) 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 <stddef.h>
#include <stdint.h>
#include <algorithm>
#include <set>
#include <string>
#include <vector>
#include "base/bind.h"
#include "base/callback_forward.h"
#include "base/macros.h"
#include "base/run_loop.h"
#include "base/strings/stringprintf.h"
#include "build/build_config.h"
#include "chrome/browser/password_manager/password_store_factory.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/profiles/profile_statistics.h"
#include "chrome/browser/profiles/profile_statistics_aggregator.h"
#include "chrome/browser/profiles/profile_statistics_common.h"
#include "chrome/browser/profiles/profile_statistics_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/password_manager/core/browser/password_manager_test_utils.h"
#include "components/password_manager/core/browser/test_password_store.h"
#include "content/public/test/test_utils.h"
namespace {
std::set<std::string> stats_categories() {
std::set<std::string> categories;
categories.insert(profiles::kProfileStatisticsBrowsingHistory);
categories.insert(profiles::kProfileStatisticsPasswords);
categories.insert(profiles::kProfileStatisticsBookmarks);
categories.insert(profiles::kProfileStatisticsSettings);
EXPECT_EQ(4u, categories.size());
return categories;
}
bool IsProfileCategoryStatEqual(const profiles::ProfileCategoryStat& a,
const profiles::ProfileCategoryStat& b) {
return a.category == b.category && a.count == b.count &&
a.success == b.success;
}
std::string ProfileCategoryStatToString(
const profiles::ProfileCategoryStat& a) {
return base::StringPrintf("category = %s, count = %d, success = %s",
a.category.c_str(), a.count, a.success ? "true" : "false");
}
::testing::AssertionResult AssertionProfileCategoryStatEqual(
const char* actual_expression,
const char* expected_expression,
const profiles::ProfileCategoryStat& actual_value,
const profiles::ProfileCategoryStat& expected_value) {
if (IsProfileCategoryStatEqual(actual_value, expected_value)) {
return ::testing::AssertionSuccess();
} else {
return ::testing::AssertionFailure()
<< "Value of: " << actual_expression
<< "\n Actual: " << ProfileCategoryStatToString(actual_value)
<< "\nExpected: " << expected_expression
<< "\nWhich is: " << ProfileCategoryStatToString(expected_value);
}
}
::testing::AssertionResult AssertionProfileCategoryStatsEqual(
const char* actual_expression,
const char* expected_expression,
const profiles::ProfileCategoryStats& actual_value,
const profiles::ProfileCategoryStats& expected_value) {
if (actual_value.size() == expected_value.size() &&
std::is_permutation(actual_value.cbegin(),
actual_value.cend(),
expected_value.cbegin(),
IsProfileCategoryStatEqual)) {
return ::testing::AssertionSuccess();
} else {
::testing::AssertionResult result = testing::AssertionFailure();
result << "ProfileCategoryStats are not equal.";
result << "\n Actual: " << actual_expression << "\nWhich is:";
for (const auto& value : actual_value)
result << "\n " << ProfileCategoryStatToString(value);
result << "\nExpected: " << expected_expression << "\nWhich is:";
for (const auto& value : expected_value)
result << "\n " << ProfileCategoryStatToString(value);
return result;
}
}
class ProfileStatisticsAggregatorState {
public:
ProfileStatisticsAggregatorState()
: ProfileStatisticsAggregatorState(stats_categories().size()) {}
explicit ProfileStatisticsAggregatorState(size_t required_stat_count) {
stats_categories_ = stats_categories();
num_of_stats_categories_ = stats_categories_.size();
SetRequiredStatCountAndCreateRunLoop(required_stat_count);
}
void SetRequiredStatCountAndCreateRunLoop(size_t required_stat_count) {
EXPECT_GE(num_of_stats_categories_, required_stat_count);
required_stat_count_ = required_stat_count;
run_loop_.reset(new base::RunLoop());
}
void WaitForStats() {
run_loop_->Run();
run_loop_.reset();
}
profiles::ProfileCategoryStats GetStats() const { return stats_; }
int GetNumOfFails() const { return num_of_fails_; }
void StatsCallback(profiles::ProfileCategoryStats stats_return) {
size_t newCount = stats_return.size();
// If newCount is 1, then a new GatherStatistics task has started. Discard
// the old statistics by setting oldCount to 0 in this case.
size_t oldCount = newCount == 1u ? 0u : stats_.size();
// Only one new statistic arrives at a time.
EXPECT_EQ(oldCount + 1u, newCount);
for (size_t i = 0u; i < oldCount; i++) {
// Exisiting statistics must be the same.
EXPECT_PRED_FORMAT2(AssertionProfileCategoryStatEqual,
stats_[i], stats_return[i]);
}
num_of_fails_ = 0;
for (size_t i = 0u; i < newCount; i++) {
// The category must be a valid category.
EXPECT_EQ(1u, stats_categories_.count(stats_return[i].category));
// The categories in |stats_return| must all different.
for (size_t j = 0u; j < i; j++)
EXPECT_NE(stats_return[i].category, stats_return[j].category);
// Count the number of statistics failures.
if (!stats_return[i].success)
num_of_fails_++;
}
stats_ = stats_return;
EXPECT_GE(num_of_stats_categories_, newCount);
if (required_stat_count_ <= newCount)
run_loop_->Quit();
}
private:
std::set<std::string> stats_categories_;
size_t num_of_stats_categories_;
size_t required_stat_count_;
scoped_ptr<base::RunLoop> run_loop_;
profiles::ProfileCategoryStats stats_;
int num_of_fails_ = 0;
};
} // namespace
class ProfileStatisticsBrowserTest : public InProcessBrowserTest {
public:
void SetUpOnMainThread() override {
// Use TestPasswordStore to remove a possible race. Normally the
// PasswordStore does its database manipulation on the DB thread, which
// creates a possible race during navigation. Specifically the
// PasswordManager will ignore any forms in a page if the load from the
// PasswordStore has not completed.
PasswordStoreFactory::GetInstance()->SetTestingFactory(
browser()->profile(),
password_manager::BuildPasswordStore<
content::BrowserContext, password_manager::TestPasswordStore>);
}
};
using ProfileStatisticsBrowserDeathTest = ProfileStatisticsBrowserTest;
IN_PROC_BROWSER_TEST_F(ProfileStatisticsBrowserTest, GatherStatistics) {
Profile* profile = ProfileManager::GetActiveUserProfile();
ASSERT_TRUE(profile);
ProfileStatistics* profile_stat =
ProfileStatisticsFactory::GetForProfile(profile);
ProfileStatisticsAggregatorState state;
EXPECT_FALSE(profile_stat->HasAggregator());
profile_stat->GatherStatistics(
base::Bind(&ProfileStatisticsAggregatorState::StatsCallback,
base::Unretained(&state)));
ASSERT_TRUE(profile_stat->HasAggregator());
EXPECT_EQ(1u, profile_stat->GetAggregator()->GetCallbackCount());
state.WaitForStats();
EXPECT_EQ(0, state.GetNumOfFails());
profiles::ProfileCategoryStats stats = state.GetStats();
for (const auto& stat : stats) {
if (stat.category != profiles::kProfileStatisticsSettings)
EXPECT_EQ(0, stat.count);
}
EXPECT_PRED_FORMAT2(AssertionProfileCategoryStatsEqual, stats,
ProfileStatistics::GetProfileStatisticsFromAttributesStorage(
profile->GetPath()));
}
IN_PROC_BROWSER_TEST_F(ProfileStatisticsBrowserTest,
GatherStatisticsTwoCallbacks) {
Profile* profile = ProfileManager::GetActiveUserProfile();
ASSERT_TRUE(profile);
ProfileStatistics* profile_stat =
ProfileStatisticsFactory::GetForProfile(profile);
ProfileStatisticsAggregatorState state1(1u);
ProfileStatisticsAggregatorState state2;
EXPECT_FALSE(profile_stat->HasAggregator());
profile_stat->GatherStatistics(
base::Bind(&ProfileStatisticsAggregatorState::StatsCallback,
base::Unretained(&state1)));
ASSERT_TRUE(profile_stat->HasAggregator());
EXPECT_EQ(1u, profile_stat->GetAggregator()->GetCallbackCount());
state1.WaitForStats();
ASSERT_TRUE(profile_stat->HasAggregator());
EXPECT_EQ(1u, profile_stat->GetAggregator()->GetCallbackCount());
state1.SetRequiredStatCountAndCreateRunLoop(stats_categories().size());
profile_stat->GatherStatistics(
base::Bind(&ProfileStatisticsAggregatorState::StatsCallback,
base::Unretained(&state2)));
ASSERT_TRUE(profile_stat->HasAggregator());
EXPECT_EQ(2u, profile_stat->GetAggregator()->GetCallbackCount());
state1.WaitForStats();
state2.WaitForStats();
EXPECT_EQ(0, state1.GetNumOfFails());
EXPECT_PRED_FORMAT2(AssertionProfileCategoryStatsEqual,
state1.GetStats(), state2.GetStats());
}
IN_PROC_BROWSER_TEST_F(ProfileStatisticsBrowserTest, CloseBrowser) {
Profile* profile = ProfileManager::GetActiveUserProfile();
ASSERT_TRUE(profile);
ProfileStatistics* profile_stat =
ProfileStatisticsFactory::GetForProfile(profile);
EXPECT_FALSE(profile_stat->HasAggregator());
CloseBrowserSynchronously(browser());
// The statistics task should be either running or finished.
if (profile_stat->HasAggregator()) {
EXPECT_EQ(0u, profile_stat->GetAggregator()->GetCallbackCount());
} else {
// Some of the statistics (e.g. settings) do always succeed. If all the
// statistics "failed", it means nothing is stored in profile attributes
// storage, and the statistics task was not run.
profiles::ProfileCategoryStats stats =
ProfileStatistics::GetProfileStatisticsFromAttributesStorage(
profile->GetPath());
bool has_stats = false;
for (const profiles::ProfileCategoryStat& stat : stats) {
if (stat.success) {
has_stats = true;
break;
}
}
EXPECT_TRUE(has_stats);
}
}
|