blob: 85e560d877af885cb972c91b493399042e17518b (
plain)
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
|
// Copyright 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/autofill/autofill_uitest_util.h"
#include "chrome/browser/autofill/personal_data_manager_factory.h"
#include "chrome/browser/infobars/infobar_service.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "components/autofill/core/browser/personal_data_manager.h"
#include "components/autofill/core/browser/personal_data_manager_observer.h"
#include "components/infobars/core/confirm_infobar_delegate.h"
#include "components/infobars/core/infobar.h"
#include "components/infobars/core/infobar_manager.h"
#include "content/public/test/test_utils.h"
namespace autofill {
// This class is used to wait for asynchronous updates to PersonalDataManager
// to complete.
class PdmChangeWaiter
: public PersonalDataManagerObserver,
public infobars::InfoBarManager::Observer {
public:
explicit PdmChangeWaiter(Browser* browser)
: alerted_(false),
has_run_message_loop_(false),
browser_(browser),
infobar_service_(InfoBarService::FromWebContents(
browser_->tab_strip_model()->GetActiveWebContents())) {
PersonalDataManagerFactory::GetForProfile(browser_->profile())->
AddObserver(this);
infobar_service_->AddObserver(this);
}
~PdmChangeWaiter() override {
while (infobar_service_->infobar_count() > 0) {
infobar_service_->RemoveInfoBar(infobar_service_->infobar_at(0));
}
infobar_service_->RemoveObserver(this);
}
// PersonalDataManagerObserver:
void OnPersonalDataChanged() override {
if (has_run_message_loop_) {
base::MessageLoopForUI::current()->Quit();
has_run_message_loop_ = false;
}
alerted_ = true;
}
void OnInsufficientFormData() override { OnPersonalDataChanged(); }
void Wait() {
if (!alerted_) {
has_run_message_loop_ = true;
content::RunMessageLoop();
}
PersonalDataManagerFactory::GetForProfile(browser_->profile())->
RemoveObserver(this);
}
private:
// infobars::InfoBarManager::Observer:
void OnInfoBarAdded(infobars::InfoBar* infobar) override {
infobar_service_->infobar_at(0)->delegate()->AsConfirmInfoBarDelegate()->
Accept();
}
bool alerted_;
bool has_run_message_loop_;
Browser* browser_;
InfoBarService* infobar_service_;
DISALLOW_COPY_AND_ASSIGN(PdmChangeWaiter);
};
static PersonalDataManager* GetPersonalDataManager(Profile* profile) {
return PersonalDataManagerFactory::GetForProfile(profile);
}
void AddTestProfile(Browser* browser, const AutofillProfile& profile) {
PdmChangeWaiter observer(browser);
GetPersonalDataManager(browser->profile())->AddProfile(profile);
// AddProfile is asynchronous. Wait for it to finish before continuing the
// tests.
observer.Wait();
}
void SetTestProfile(Browser* browser, const AutofillProfile& profile) {
std::vector<AutofillProfile> profiles;
profiles.push_back(profile);
SetTestProfiles(browser, &profiles);
}
void SetTestProfiles(Browser* browser, std::vector<AutofillProfile>* profiles) {
PdmChangeWaiter observer(browser);
GetPersonalDataManager(browser->profile())->SetProfiles(profiles);
observer.Wait();
}
} // namespace autofill
|