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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
|
// 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 "base/basictypes.h"
#include "base/message_loop.h"
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/autofill/autofill_common_test.h"
#include "chrome/browser/autofill/autofill_profile.h"
#include "chrome/browser/autofill/form_structure.h"
#include "chrome/browser/autofill/personal_data_manager.h"
#include "chrome/browser/browser_thread.h"
#include "chrome/browser/guid.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/password_manager/encryptor.h"
#include "chrome/common/notification_details.h"
#include "chrome/common/notification_observer_mock.h"
#include "chrome/common/notification_registrar.h"
#include "chrome/common/notification_service.h"
#include "chrome/common/notification_type.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/testing_profile.h"
#include "webkit/glue/form_data.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using webkit_glue::FormData;
ACTION(QuitUIMessageLoop) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
MessageLoop::current()->Quit();
}
class PersonalDataLoadedObserverMock : public PersonalDataManager::Observer {
public:
PersonalDataLoadedObserverMock() {}
virtual ~PersonalDataLoadedObserverMock() {}
MOCK_METHOD0(OnPersonalDataLoaded, void());
};
class PersonalDataManagerTest : public testing::Test {
protected:
PersonalDataManagerTest()
: ui_thread_(BrowserThread::UI, &message_loop_),
db_thread_(BrowserThread::DB) {
}
virtual void SetUp() {
db_thread_.Start();
profile_.reset(new TestingProfile);
profile_->CreateWebDataService(false);
autofill_test::DisableSystemServices(profile_.get());
ResetPersonalDataManager();
}
virtual void TearDown() {
if (profile_.get())
profile_.reset(NULL);
db_thread_.Stop();
MessageLoop::current()->PostTask(FROM_HERE, new MessageLoop::QuitTask);
MessageLoop::current()->Run();
}
void ResetPersonalDataManager() {
personal_data_ = new PersonalDataManager();
personal_data_->Init(profile_.get());
personal_data_->SetObserver(&personal_data_observer_);
}
MessageLoopForUI message_loop_;
BrowserThread ui_thread_;
BrowserThread db_thread_;
scoped_ptr<TestingProfile> profile_;
scoped_refptr<PersonalDataManager> personal_data_;
NotificationRegistrar registrar_;
NotificationObserverMock observer_;
PersonalDataLoadedObserverMock personal_data_observer_;
};
// TODO(jhawkins): Test SetProfiles w/out a WebDataService in the profile.
TEST_F(PersonalDataManagerTest, SetProfiles) {
AutoFillProfile profile0;
autofill_test::SetProfileInfo(&profile0,
"Billing", "Marion", "Mitchell", "Morrison",
"johnwayne@me.xyz", "Fox", "123 Zoo St.", "unit 5", "Hollywood", "CA",
"91601", "US", "12345678910", "01987654321");
AutoFillProfile profile1;
autofill_test::SetProfileInfo(&profile1,
"Home", "Josephine", "Alicia", "Saenz",
"joewayne@me.xyz", "Fox", "903 Apple Ct.", NULL, "Orlando", "FL", "32801",
"US", "19482937549", "13502849239");
AutoFillProfile profile2;
autofill_test::SetProfileInfo(&profile2,
"Work", "Josephine", "Alicia", "Saenz",
"joewayne@me.xyz", "Fox", "1212 Center.", "Bld. 5", "Orlando", "FL",
"32801", "US", "19482937549", "13502849239");
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the mock observer is notified.
MessageLoop::current()->Run();
// Add two test profiles to the database.
std::vector<AutoFillProfile> update;
update.push_back(profile0);
update.push_back(profile1);
personal_data_->SetProfiles(&update);
const std::vector<AutoFillProfile*>& results1 = personal_data_->profiles();
ASSERT_EQ(2U, results1.size());
EXPECT_EQ(0, profile0.Compare(*results1.at(0)));
EXPECT_EQ(0, profile1.Compare(*results1.at(1)));
// Three operations in one:
// - Update profile0
// - Remove profile1
// - Add profile2
profile0.SetInfo(AutoFillType(NAME_FIRST), ASCIIToUTF16("John"));
update.clear();
update.push_back(profile0);
update.push_back(profile2);
personal_data_->SetProfiles(&update);
const std::vector<AutoFillProfile*>& results2 = personal_data_->profiles();
ASSERT_EQ(2U, results2.size());
EXPECT_EQ(0, profile0.Compare(*results2.at(0)));
EXPECT_EQ(0, profile2.Compare(*results2.at(1)));
// Reset the PersonalDataManager. This tests that the personal data was saved
// to the web database, and that we can load the profiles from the web
// database.
ResetPersonalDataManager();
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the PersonalDataLoadedObserver is notified.
MessageLoop::current()->Run();
// Verify that we've loaded the profiles from the web database.
const std::vector<AutoFillProfile*>& results3 = personal_data_->profiles();
ASSERT_EQ(2U, results3.size());
EXPECT_EQ(0, profile0.Compare(*results3.at(0)));
EXPECT_EQ(0, profile2.Compare(*results3.at(1)));
}
// TODO(jhawkins): Test SetCreditCards w/out a WebDataService in the profile.
TEST_F(PersonalDataManagerTest, SetCreditCards) {
CreditCard creditcard0;
autofill_test::SetCreditCardInfo(&creditcard0, "Corporate",
"John Dillinger", "423456789012" /* Visa */, "01", "2010");
CreditCard creditcard1;
autofill_test::SetCreditCardInfo(&creditcard1, "Personal",
"Bonnie Parker", "518765432109" /* Mastercard */, "12", "2012");
CreditCard creditcard2;
autofill_test::SetCreditCardInfo(&creditcard2, "Savings",
"Clyde Barrow", "347666888555" /* American Express */, "04", "2015");
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the mock observer is notified.
MessageLoop::current()->Run();
// Add two test credit cards to the database.
std::vector<CreditCard> update;
update.push_back(creditcard0);
update.push_back(creditcard1);
personal_data_->SetCreditCards(&update);
const std::vector<CreditCard*>& results1 = personal_data_->credit_cards();
ASSERT_EQ(2U, results1.size());
EXPECT_EQ(0, creditcard0.Compare(*results1.at(0)));
EXPECT_EQ(0, creditcard1.Compare(*results1.at(1)));
// Three operations in one:
// - Update creditcard0
// - Remove creditcard1
// - Add creditcard2
creditcard0.SetInfo(AutoFillType(CREDIT_CARD_NAME), ASCIIToUTF16("Joe"));
update.clear();
update.push_back(creditcard0);
update.push_back(creditcard2);
personal_data_->SetCreditCards(&update);
const std::vector<CreditCard*>& results2 = personal_data_->credit_cards();
ASSERT_EQ(2U, results2.size());
EXPECT_EQ(creditcard0, *results2.at(0));
EXPECT_EQ(creditcard2, *results2.at(1));
// Reset the PersonalDataManager. This tests that the personal data was saved
// to the web database, and that we can load the credit cards from the web
// database.
ResetPersonalDataManager();
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the PersonalDataLoadedObserver is notified.
MessageLoop::current()->Run();
// Verify that we've loaded the credit cards from the web database.
const std::vector<CreditCard*>& results3 = personal_data_->credit_cards();
ASSERT_EQ(2U, results3.size());
EXPECT_EQ(creditcard0, *results3.at(0));
EXPECT_EQ(creditcard2, *results3.at(1));
}
TEST_F(PersonalDataManagerTest, SetProfilesAndCreditCards) {
AutoFillProfile profile0;
autofill_test::SetProfileInfo(&profile0,
"Billing", "Marion", "Mitchell", "Morrison",
"johnwayne@me.xyz", "Fox", "123 Zoo St.", "unit 5", "Hollywood", "CA",
"91601", "US", "12345678910", "01987654321");
AutoFillProfile profile1;
autofill_test::SetProfileInfo(&profile1,
"Home", "Josephine", "Alicia", "Saenz",
"joewayne@me.xyz", "Fox", "903 Apple Ct.", NULL, "Orlando", "FL", "32801",
"US", "19482937549", "13502849239");
CreditCard creditcard0;
autofill_test::SetCreditCardInfo(&creditcard0, "Corporate",
"John Dillinger", "423456789012" /* Visa */, "01", "2010");
CreditCard creditcard1;
autofill_test::SetCreditCardInfo(&creditcard1, "Personal",
"Bonnie Parker", "518765432109" /* Mastercard */, "12", "2012");
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(
personal_data_observer_,
OnPersonalDataLoaded()).Times(2).WillRepeatedly(QuitUIMessageLoop());
// The message loop will exit when the mock observer is notified.
MessageLoop::current()->Run();
// Add two test profiles to the database.
std::vector<AutoFillProfile> update;
update.push_back(profile0);
update.push_back(profile1);
personal_data_->SetProfiles(&update);
const std::vector<AutoFillProfile*>& results1 = personal_data_->profiles();
ASSERT_EQ(2U, results1.size());
EXPECT_EQ(0, profile0.Compare(*results1.at(0)));
EXPECT_EQ(0, profile1.Compare(*results1.at(1)));
// Add two test credit cards to the database.
std::vector<CreditCard> update_cc;
update_cc.push_back(creditcard0);
update_cc.push_back(creditcard1);
personal_data_->SetCreditCards(&update_cc);
const std::vector<CreditCard*>& results2 = personal_data_->credit_cards();
ASSERT_EQ(2U, results2.size());
EXPECT_EQ(creditcard0, *results2.at(0));
EXPECT_EQ(creditcard1, *results2.at(1));
// Determine uniqueness by inserting all of the GUIDs into a set and verifying
// the size of the set matches the number of GUIDs.
std::set<std::string> guids;
guids.insert(profile0.guid());
guids.insert(profile1.guid());
guids.insert(creditcard0.guid());
guids.insert(creditcard1.guid());
EXPECT_EQ(4U, guids.size());
}
// Test care for 50047. Makes sure that unique_ids_ is populated correctly on
// load.
TEST_F(PersonalDataManagerTest, PopulateUniqueIDsOnLoad) {
AutoFillProfile profile0;
autofill_test::SetProfileInfo(&profile0,
"", "y", "", "", "", "", "", "", "", "", "", "", "", "");
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillRepeatedly(QuitUIMessageLoop());
// The message loop will exit when the mock observer is notified.
MessageLoop::current()->Run();
// Add the profile0 to the db.
std::vector<AutoFillProfile> update;
update.push_back(profile0);
personal_data_->SetProfiles(&update);
// Reset the PersonalDataManager. This recreates PersonalDataManager, which
// should populate unique_ids_.
ResetPersonalDataManager();
// The message loop will exit when the PersonalDataLoadedObserver is notified.
MessageLoop::current()->Run();
// Verify that we've loaded the profiles from the web database.
const std::vector<AutoFillProfile*>& results2 = personal_data_->profiles();
ASSERT_EQ(1U, results2.size());
// Add a new profile.
AutoFillProfile profile1;
autofill_test::SetProfileInfo(&profile1,
"", "y", "", "", "", "", "", "", "", "", "", "", "", "");
update.clear();
update.push_back(*results2[0]);
update.push_back(profile1);
personal_data_->SetProfiles(&update);
// Make sure the two profiles have different ids (and neither equal to 0,
// which is an invalid id).
const std::vector<AutoFillProfile*>& results3 = personal_data_->profiles();
ASSERT_EQ(2U, results3.size());
EXPECT_NE(results3[0]->guid(), results3[1]->guid());
EXPECT_TRUE(guid::IsValidGUID(results3[0]->guid()));
EXPECT_TRUE(guid::IsValidGUID(results3[1]->guid()));
}
TEST_F(PersonalDataManagerTest, SetEmptyProfile) {
AutoFillProfile profile0;
autofill_test::SetProfileInfo(&profile0,
"", "", "", "", "", "", "", "", "", "", "", "", "", "");
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the mock observer is notified.
MessageLoop::current()->Run();
// Add the empty profile to the database.
std::vector<AutoFillProfile> update;
update.push_back(profile0);
personal_data_->SetProfiles(&update);
// Check the local store of profiles, not yet saved to the web database.
const std::vector<AutoFillProfile*>& results1 = personal_data_->profiles();
ASSERT_EQ(0U, results1.size());
// Reset the PersonalDataManager. This tests that the personal data was saved
// to the web database, and that we can load the profiles from the web
// database.
ResetPersonalDataManager();
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the PersonalDataLoadedObserver is notified.
MessageLoop::current()->Run();
// Verify that we've loaded the profiles from the web database.
const std::vector<AutoFillProfile*>& results2 = personal_data_->profiles();
ASSERT_EQ(0U, results2.size());
}
TEST_F(PersonalDataManagerTest, SetEmptyCreditCard) {
CreditCard creditcard0;
autofill_test::SetCreditCardInfo(&creditcard0, "", "", "", "", "");
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the mock observer is notified.
MessageLoop::current()->Run();
// Add the empty credit card to the database.
std::vector<CreditCard> update;
update.push_back(creditcard0);
personal_data_->SetCreditCards(&update);
// Check the local store of credit cards, not yet saved to the web database.
const std::vector<CreditCard*>& results1 = personal_data_->credit_cards();
ASSERT_EQ(0U, results1.size());
// Reset the PersonalDataManager. This tests that the personal data was saved
// to the web database, and that we can load the credit cards from the web
// database.
ResetPersonalDataManager();
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the PersonalDataLoadedObserver is notified.
MessageLoop::current()->Run();
// Verify that we've loaded the credit cards from the web database.
const std::vector<CreditCard*>& results2 = personal_data_->credit_cards();
ASSERT_EQ(0U, results2.size());
}
TEST_F(PersonalDataManagerTest, Refresh) {
AutoFillProfile profile0;
autofill_test::SetProfileInfo(&profile0,
"Billing", "Marion", "Mitchell", "Morrison",
"johnwayne@me.xyz", "Fox", "123 Zoo St.", "unit 5", "Hollywood", "CA",
"91601", "US", "12345678910", "01987654321");
AutoFillProfile profile1;
autofill_test::SetProfileInfo(&profile1,
"Home", "Josephine", "Alicia", "Saenz",
"joewayne@me.xyz", "Fox", "903 Apple Ct.", NULL, "Orlando", "FL", "32801",
"US", "19482937549", "13502849239");
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
MessageLoop::current()->Run();
// Add the test profiles to the database.
std::vector<AutoFillProfile> update;
update.push_back(profile0);
update.push_back(profile1);
personal_data_->SetProfiles(&update);
// Labels depend on other profiles in the list - update labels manually.
std::vector<AutoFillProfile *> profile_pointers;
profile_pointers.push_back(&profile0);
profile_pointers.push_back(&profile1);
AutoFillProfile::AdjustInferredLabels(&profile_pointers);
// Wait for the refresh.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
MessageLoop::current()->Run();
const std::vector<AutoFillProfile*>& results1 = personal_data_->profiles();
ASSERT_EQ(2U, results1.size());
EXPECT_EQ(profile0, *results1.at(0));
EXPECT_EQ(profile1, *results1.at(1));
AutoFillProfile profile2;
autofill_test::SetProfileInfo(&profile2,
"Work", "Josephine", "Alicia", "Saenz",
"joewayne@me.xyz", "Fox", "1212 Center.", "Bld. 5", "Orlando", "FL",
"32801", "US", "19482937549", "13502849239");
// Adjust all labels.
profile_pointers.push_back(&profile2);
AutoFillProfile::AdjustInferredLabels(&profile_pointers);
WebDataService* wds = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS);
ASSERT_TRUE(wds);
wds->AddAutoFillProfileGUID(profile2);
personal_data_->Refresh();
// Wait for the refresh.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
MessageLoop::current()->Run();
const std::vector<AutoFillProfile*>& results2 = personal_data_->profiles();
ASSERT_EQ(3U, results2.size());
EXPECT_EQ(profile0, *results2.at(0));
EXPECT_EQ(profile1, *results2.at(1));
EXPECT_EQ(profile2, *results2.at(2));
wds->RemoveAutoFillProfileGUID(profile1.guid());
wds->RemoveAutoFillProfileGUID(profile2.guid());
// Before telling the PDM to refresh, simulate an edit to one of the profiles
// via a SetProfile update (this would happen if the AutoFill window was
// open with a previous snapshot of the profiles, and something [e.g. sync]
// removed a profile from the browser. In this edge case, we will end up
// in a consistent state by dropping the write).
profile2.SetInfo(AutoFillType(NAME_FIRST), ASCIIToUTF16("Jo"));
update.clear();
update.push_back(profile0);
update.push_back(profile1);
update.push_back(profile2);
personal_data_->SetProfiles(&update);
// And wait for the refresh.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
MessageLoop::current()->Run();
const std::vector<AutoFillProfile*>& results3 = personal_data_->profiles();
ASSERT_EQ(1U, results3.size());
EXPECT_EQ(profile0, *results2.at(0));
}
TEST_F(PersonalDataManagerTest, ImportFormData) {
FormData form;
webkit_glue::FormField field;
autofill_test::CreateTestFormField(
"First name:", "first_name", "George", "text", &field);
form.fields.push_back(field);
autofill_test::CreateTestFormField(
"Last name:", "last_name", "Washington", "text", &field);
form.fields.push_back(field);
autofill_test::CreateTestFormField(
"Email:", "email", "theprez@gmail.com", "text", &field);
form.fields.push_back(field);
FormStructure form_structure(form);
std::vector<FormStructure*> forms;
forms.push_back(&form_structure);
personal_data_->ImportFormData(forms, NULL);
// And wait for the refresh.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
MessageLoop::current()->Run();
AutoFillProfile expected;
autofill_test::SetProfileInfo(&expected, NULL, "George", NULL,
"Washington", "theprez@gmail.com", NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL);
const std::vector<AutoFillProfile*>& results = personal_data_->profiles();
ASSERT_EQ(1U, results.size());
EXPECT_EQ(0, expected.Compare(*results[0]));
}
TEST_F(PersonalDataManagerTest, SetUniqueCreditCardLabels) {
CreditCard credit_card0;
credit_card0.set_label(ASCIIToUTF16("Home"));
credit_card0.SetInfo(AutoFillType(CREDIT_CARD_NAME), ASCIIToUTF16("John"));
CreditCard credit_card1;
credit_card1.set_label(ASCIIToUTF16("Home"));
credit_card1.SetInfo(AutoFillType(CREDIT_CARD_NAME), ASCIIToUTF16("Paul"));
CreditCard credit_card2;
credit_card2.set_label(ASCIIToUTF16("Home"));
credit_card2.SetInfo(AutoFillType(CREDIT_CARD_NAME), ASCIIToUTF16("Ringo"));
CreditCard credit_card3;
credit_card3.set_label(ASCIIToUTF16("NotHome"));
credit_card3.SetInfo(AutoFillType(CREDIT_CARD_NAME), ASCIIToUTF16("Other"));
CreditCard credit_card4;
credit_card4.set_label(ASCIIToUTF16("Work"));
credit_card4.SetInfo(AutoFillType(CREDIT_CARD_NAME), ASCIIToUTF16("Ozzy"));
CreditCard credit_card5;
credit_card5.set_label(ASCIIToUTF16("Work"));
credit_card5.SetInfo(AutoFillType(CREDIT_CARD_NAME), ASCIIToUTF16("Dio"));
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the mock observer is notified.
MessageLoop::current()->Run();
// Add the test credit cards to the database.
std::vector<CreditCard> update;
update.push_back(credit_card0);
update.push_back(credit_card1);
update.push_back(credit_card2);
update.push_back(credit_card3);
update.push_back(credit_card4);
update.push_back(credit_card5);
personal_data_->SetCreditCards(&update);
// Reset the PersonalDataManager. This tests that the personal data was saved
// to the web database, and that we can load the credit cards from the web
// database.
ResetPersonalDataManager();
// This will verify that the web database has been loaded and the notification
// sent out.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
// The message loop will exit when the mock observer is notified.
MessageLoop::current()->Run();
const std::vector<CreditCard*>& results = personal_data_->credit_cards();
ASSERT_EQ(6U, results.size());
EXPECT_EQ(ASCIIToUTF16("Home"), results[0]->Label());
EXPECT_EQ(ASCIIToUTF16("Home2"), results[1]->Label());
EXPECT_EQ(ASCIIToUTF16("Home3"), results[2]->Label());
EXPECT_EQ(ASCIIToUTF16("NotHome"), results[3]->Label());
EXPECT_EQ(ASCIIToUTF16("Work"), results[4]->Label());
EXPECT_EQ(ASCIIToUTF16("Work2"), results[5]->Label());
}
TEST_F(PersonalDataManagerTest, AggregateProfileData) {
scoped_ptr<FormData> form(new FormData);
webkit_glue::FormField field;
autofill_test::CreateTestFormField(
"First name:", "first_name", "George", "text", &field);
form->fields.push_back(field);
autofill_test::CreateTestFormField(
"Last name:", "last_name", "Washington", "text", &field);
form->fields.push_back(field);
autofill_test::CreateTestFormField(
"Email:", "email", "theprez@gmail.com", "text", &field);
form->fields.push_back(field);
scoped_ptr<FormStructure> form_structure(new FormStructure(*form));
scoped_ptr<std::vector<FormStructure*> > forms(
new std::vector<FormStructure*>);
forms->push_back(form_structure.get());
personal_data_->ImportFormData(*forms, NULL);
// And wait for the refresh.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
MessageLoop::current()->Run();
scoped_ptr<AutoFillProfile> expected(
new AutoFillProfile);
autofill_test::SetProfileInfo(expected.get(), NULL, "George", NULL,
"Washington", "theprez@gmail.com", NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL);
const std::vector<AutoFillProfile*>& results = personal_data_->profiles();
ASSERT_EQ(1U, results.size());
EXPECT_EQ(0, expected->Compare(*results[0]));
// Now create a completely different profile.
form.reset(new FormData);
autofill_test::CreateTestFormField(
"First name:", "first_name", "John", "text", &field);
form->fields.push_back(field);
autofill_test::CreateTestFormField(
"Last name:", "last_name", "Adams", "text", &field);
form->fields.push_back(field);
autofill_test::CreateTestFormField(
"Email:", "email", "second@gmail.com", "text", &field);
form->fields.push_back(field);
form_structure.reset(new FormStructure(*form));
forms.reset(new std::vector<FormStructure*>);
forms->push_back(form_structure.get());
personal_data_->ImportFormData(*forms, NULL);
// And wait for the refresh.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
MessageLoop::current()->Run();
const std::vector<AutoFillProfile*>& results2 = personal_data_->profiles();
ASSERT_EQ(2U, results2.size());
expected.reset(new AutoFillProfile);
autofill_test::SetProfileInfo(expected.get(), NULL, "George", NULL,
"Washington", "theprez@gmail.com", NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL);
EXPECT_EQ(0, expected->Compare(*results2[0]));
expected.reset(new AutoFillProfile);
autofill_test::SetProfileInfo(expected.get(), NULL, "John", NULL,
"Adams", "second@gmail.com", NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL);
EXPECT_EQ(0, expected->Compare(*results2[1]));
// Submit a form with new data for the first profile.
form.reset(new FormData);
autofill_test::CreateTestFormField(
"First name:", "first_name", "George", "text", &field);
form->fields.push_back(field);
autofill_test::CreateTestFormField(
"Last name:", "last_name", "Washington", "text", &field);
form->fields.push_back(field);
autofill_test::CreateTestFormField(
"Address Line 1:", "address", "190 High Street", "text", &field);
form->fields.push_back(field);
autofill_test::CreateTestFormField(
"City:", "city", "Philadelphia", "text", &field);
form->fields.push_back(field);
autofill_test::CreateTestFormField(
"State:", "state", "Pennsylvania", "text", &field);
form->fields.push_back(field);
autofill_test::CreateTestFormField(
"Zip:", "zipcode", "19106", "text", &field);
form->fields.push_back(field);
form_structure.reset(new FormStructure(*form));
forms.reset(new std::vector<FormStructure*>);
forms->push_back(form_structure.get());
personal_data_->ImportFormData(*forms, NULL);
// And wait for the refresh.
EXPECT_CALL(personal_data_observer_,
OnPersonalDataLoaded()).WillOnce(QuitUIMessageLoop());
MessageLoop::current()->Run();
const std::vector<AutoFillProfile*>& results3 = personal_data_->profiles();
ASSERT_EQ(2U, results3.size());
expected.reset(new AutoFillProfile);
autofill_test::SetProfileInfo(expected.get(), NULL, "George", NULL,
"Washington", "theprez@gmail.com", NULL, "190 High Street", NULL,
"Philadelphia", "Pennsylvania", "19106", NULL, NULL, NULL);
EXPECT_EQ(0, expected->Compare(*results3[0]));
expected.reset(new AutoFillProfile);
autofill_test::SetProfileInfo(expected.get(), NULL, "John", NULL,
"Adams", "second@gmail.com", NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL);
EXPECT_EQ(0, expected->Compare(*results3[1]));
}
|