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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
|
// Copyright (c) 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 "chrome/browser/browsing_data/autofill_counter.h"
#include "base/guid.h"
#include "base/macros.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/threading/platform_thread.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/web_data_service_factory.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/autofill/core/browser/autofill_profile.h"
#include "components/autofill/core/browser/autofill_type.h"
#include "components/autofill/core/browser/credit_card.h"
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_thread.h"
namespace {
class AutofillCounterTest : public InProcessBrowserTest {
public:
AutofillCounterTest() {}
~AutofillCounterTest() override {}
void SetUpOnMainThread() override {
web_data_service_ = WebDataServiceFactory::GetAutofillWebDataForProfile(
browser()->profile(), ServiceAccessType::IMPLICIT_ACCESS);
SetAutofillDeletionPref(true);
SetDeletionPeriodPref(BrowsingDataRemover::EVERYTHING);
}
// Autocomplete suggestions --------------------------------------------------
void AddAutocompleteSuggestion(const std::string& name,
const std::string& value) {
autofill::FormFieldData field;
field.name = base::ASCIIToUTF16(name);
field.value = base::ASCIIToUTF16(value);
std::vector<autofill::FormFieldData> form_fields;
form_fields.push_back(field);
web_data_service_->AddFormFields(form_fields);
}
void RemoveAutocompleteSuggestion(const std::string& name,
const std::string& value) {
web_data_service_->RemoveFormValueForElementName(
base::ASCIIToUTF16(name),
base::ASCIIToUTF16(value));
}
void ClearAutocompleteSuggestions() {
web_data_service_->RemoveFormElementsAddedBetween(
base::Time(), base::Time::Max());
}
// Credit cards --------------------------------------------------------------
void AddCreditCard(const std::string& card_number,
int exp_month,
int exp_year) {
autofill::CreditCard card(
base::ASCIIToUTF16(card_number), exp_month, exp_year);
std::string id = base::GenerateGUID();
credit_card_ids_.push_back(id);
card.set_guid(id);
web_data_service_->AddCreditCard(card);
}
void RemoveLastCreditCard() {
web_data_service_->RemoveCreditCard(credit_card_ids_.back());
credit_card_ids_.pop_back();
}
// Addresses -----------------------------------------------------------------
void AddAddress(const std::string& name,
const std::string& surname,
const std::string& address) {
autofill::AutofillProfile profile;
std::string id = base::GenerateGUID();
address_ids_.push_back(id);
profile.set_guid(id);
profile.SetInfo(autofill::AutofillType(autofill::NAME_FIRST),
base::ASCIIToUTF16(name), "en-US");
profile.SetInfo(autofill::AutofillType(autofill::NAME_LAST),
base::ASCIIToUTF16(surname), "en-US");
profile.SetInfo(autofill::AutofillType(autofill::ADDRESS_HOME_LINE1),
base::ASCIIToUTF16(address), "en-US");
web_data_service_->AddAutofillProfile(profile);
}
void RemoveLastAddress() {
web_data_service_->RemoveAutofillProfile(address_ids_.back());
address_ids_.pop_back();
}
// Other autofill utils ------------------------------------------------------
void ClearCreditCardsAndAddresses() {
web_data_service_->RemoveAutofillDataModifiedBetween(
base::Time(), base::Time::Max());
}
void CallbackFromDBThread() {
content::BrowserThread::PostTask(
content::BrowserThread::UI, FROM_HERE,
base::Bind(&base::RunLoop::Quit,
base::Unretained(run_loop_.get())));
}
void WaitForDBThread() {
run_loop_.reset(new base::RunLoop());
content::BrowserThread::PostTask(
content::BrowserThread::DB, FROM_HERE,
base::Bind(&AutofillCounterTest::CallbackFromDBThread,
base::Unretained(this)));
run_loop_->Run();
}
// Other utils ---------------------------------------------------------------
void SetAutofillDeletionPref(bool value) {
browser()->profile()->GetPrefs()->SetBoolean(prefs::kDeleteFormData, value);
}
void SetDeletionPeriodPref(BrowsingDataRemover::TimePeriod period) {
browser()->profile()->GetPrefs()->SetInteger(
prefs::kDeleteTimePeriod, static_cast<int>(period));
}
// Callback and result retrieval ---------------------------------------------
void WaitForCounting() {
run_loop_.reset(new base::RunLoop());
run_loop_->Run();
}
BrowsingDataCounter::ResultInt GetNumSuggestions() {
DCHECK(finished_);
return num_suggestions_;
}
BrowsingDataCounter::ResultInt GetNumCreditCards() {
DCHECK(finished_);
return num_credit_cards_;
}
BrowsingDataCounter::ResultInt GetNumAddresses() {
DCHECK(finished_);
return num_addresses_;
}
void Callback(scoped_ptr<BrowsingDataCounter::Result> result) {
finished_ = result->Finished();
if (finished_) {
AutofillCounter::AutofillResult* autofill_result =
static_cast<AutofillCounter::AutofillResult*>(result.get());
num_suggestions_ = autofill_result->Value();
num_credit_cards_ = autofill_result->num_credit_cards();
num_addresses_ = autofill_result->num_addresses();
}
if (run_loop_ && finished_)
run_loop_->Quit();
}
private:
scoped_ptr<base::RunLoop> run_loop_;
std::vector<std::string> credit_card_ids_;
std::vector<std::string> address_ids_;
scoped_refptr<autofill::AutofillWebDataService> web_data_service_;
bool finished_;
BrowsingDataCounter::ResultInt num_suggestions_;
BrowsingDataCounter::ResultInt num_credit_cards_;
BrowsingDataCounter::ResultInt num_addresses_;
DISALLOW_COPY_AND_ASSIGN(AutofillCounterTest);
};
// Tests that the counter does not count when the form data deletion preference
// is false.
IN_PROC_BROWSER_TEST_F(AutofillCounterTest, PrefIsFalse) {
SetAutofillDeletionPref(false);
AutofillCounter counter;
counter.Init(browser()->profile(),
base::Bind(&AutofillCounterTest::Callback,
base::Unretained(this)));
counter.Restart();
EXPECT_FALSE(counter.HasPendingQuery());
}
// Tests that we count the correct number of autocomplete suggestions.
IN_PROC_BROWSER_TEST_F(AutofillCounterTest, AutocompleteSuggestions) {
AutofillCounter counter;
counter.Init(browser()->profile(),
base::Bind(&AutofillCounterTest::Callback,
base::Unretained(this)));
counter.Restart();
WaitForCounting();
EXPECT_EQ(0, GetNumSuggestions());
AddAutocompleteSuggestion("email", "example@example.com");
counter.Restart();
WaitForCounting();
EXPECT_EQ(1, GetNumSuggestions());
AddAutocompleteSuggestion("tel", "+123456789");
counter.Restart();
WaitForCounting();
EXPECT_EQ(2, GetNumSuggestions());
AddAutocompleteSuggestion("tel", "+987654321");
counter.Restart();
WaitForCounting();
EXPECT_EQ(3, GetNumSuggestions());
RemoveAutocompleteSuggestion("email", "example@example.com");
counter.Restart();
WaitForCounting();
EXPECT_EQ(2, GetNumSuggestions());
ClearAutocompleteSuggestions();
counter.Restart();
WaitForCounting();
EXPECT_EQ(0, GetNumSuggestions());
}
// Tests that we count the correct number of credit cards.
IN_PROC_BROWSER_TEST_F(AutofillCounterTest, CreditCards) {
AutofillCounter counter;
counter.Init(browser()->profile(),
base::Bind(&AutofillCounterTest::Callback,
base::Unretained(this)));
counter.Restart();
WaitForCounting();
EXPECT_EQ(0, GetNumCreditCards());
AddCreditCard("0000-0000-0000-0000", 1, 2015);
counter.Restart();
WaitForCounting();
EXPECT_EQ(1, GetNumCreditCards());
AddCreditCard("0123-4567-8910-1112", 10, 2015);
counter.Restart();
WaitForCounting();
EXPECT_EQ(2, GetNumCreditCards());
AddCreditCard("1211-1098-7654-3210", 10, 2030);
counter.Restart();
WaitForCounting();
EXPECT_EQ(3, GetNumCreditCards());
RemoveLastCreditCard();
counter.Restart();
WaitForCounting();
EXPECT_EQ(2, GetNumCreditCards());
ClearCreditCardsAndAddresses();
counter.Restart();
WaitForCounting();
EXPECT_EQ(0, GetNumCreditCards());
}
// Tests that we count the correct number of addresses.
IN_PROC_BROWSER_TEST_F(AutofillCounterTest, Addresses) {
AutofillCounter counter;
counter.Init(browser()->profile(),
base::Bind(&AutofillCounterTest::Callback,
base::Unretained(this)));
counter.Restart();
WaitForCounting();
EXPECT_EQ(0, GetNumAddresses());
AddAddress("John", "Doe", "Main Street 12345");
counter.Restart();
WaitForCounting();
EXPECT_EQ(1, GetNumAddresses());
AddAddress("Jane", "Smith", "Main Street 12346");
counter.Restart();
WaitForCounting();
EXPECT_EQ(2, GetNumAddresses());
AddAddress("John", "Smith", "Side Street 47");
counter.Restart();
WaitForCounting();
EXPECT_EQ(3, GetNumAddresses());
RemoveLastAddress();
counter.Restart();
WaitForCounting();
EXPECT_EQ(2, GetNumAddresses());
ClearCreditCardsAndAddresses();
counter.Restart();
WaitForCounting();
EXPECT_EQ(0, GetNumAddresses());
}
// Tests that we return the correct complex result when counting more than
// one type of items.
IN_PROC_BROWSER_TEST_F(AutofillCounterTest, ComplexResult) {
AddAutocompleteSuggestion("email", "example@example.com");
AddAutocompleteSuggestion("zip", "12345");
AddAutocompleteSuggestion("tel", "+123456789");
AddAutocompleteSuggestion("tel", "+987654321");
AddAutocompleteSuggestion("city", "Munich");
AddCreditCard("0000-0000-0000-0000", 1, 2015);
AddCreditCard("1211-1098-7654-3210", 10, 2030);
AddAddress("John", "Doe", "Main Street 12345");
AddAddress("Jane", "Smith", "Main Street 12346");
AddAddress("John", "Smith", "Side Street 47");
AutofillCounter counter;
counter.Init(browser()->profile(),
base::Bind(&AutofillCounterTest::Callback,
base::Unretained(this)));
counter.Restart();
WaitForCounting();
EXPECT_EQ(5, GetNumSuggestions());
EXPECT_EQ(2, GetNumCreditCards());
EXPECT_EQ(3, GetNumAddresses());
}
// Tests that the counting respects time ranges.
IN_PROC_BROWSER_TEST_F(AutofillCounterTest, TimeRanges) {
// This test makes time comparisons that are precise to a microsecond, but the
// database uses the time_t format which is only precise to a second.
// Make sure we use timestamps rounded to a second.
base::Time time1 = base::Time::FromTimeT(base::Time::Now().ToTimeT());
AddAutocompleteSuggestion("email", "example@example.com");
AddCreditCard("0000-0000-0000-0000", 1, 2015);
AddAddress("John", "Doe", "Main Street 12345");
WaitForDBThread();
// Skip at least a second has passed and add another batch.
base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
base::Time time2 = base::Time::FromTimeT(base::Time::Now().ToTimeT());
AddCreditCard("0123-4567-8910-1112", 10, 2015);
AddAddress("Jane", "Smith", "Main Street 12346");
AddAddress("John", "Smith", "Side Street 47");
WaitForDBThread();
// Skip at least a second has passed and add another batch.
base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
base::Time time3 = base::Time::FromTimeT(base::Time::Now().ToTimeT());
AddAutocompleteSuggestion("tel", "+987654321");
AddCreditCard("1211-1098-7654-3210", 10, 2030);
WaitForDBThread();
// Test the results for different starting points.
struct TestCase {
const base::Time period_start;
const BrowsingDataCounter::ResultInt expected_num_suggestions;
const BrowsingDataCounter::ResultInt expected_num_credit_cards;
const BrowsingDataCounter::ResultInt expected_num_addresses;
} test_cases[] = {
{ base::Time(), 2, 3, 3},
{ time1, 2, 3, 3},
{ time2, 1, 2, 2},
{ time3, 1, 1, 0}
};
AutofillCounter counter;
counter.Init(browser()->profile(),
base::Bind(&AutofillCounterTest::Callback,
base::Unretained(this)));
for (const TestCase& test_case : test_cases) {
counter.SetPeriodStartForTesting(test_case.period_start);
counter.Restart();
WaitForCounting();
EXPECT_EQ(test_case.expected_num_suggestions, GetNumSuggestions());
EXPECT_EQ(test_case.expected_num_credit_cards, GetNumCreditCards());
EXPECT_EQ(test_case.expected_num_addresses, GetNumAddresses());
}
}
} // namespace
|