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
|
// Copyright (c) 2013 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.
#import "chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h"
#include "base/bind.h"
#include "base/macros.h"
#include "base/message_loop/message_loop.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/autofill/autofill_dialog_controller_impl.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/autofill/core/browser/autofill_test_utils.h"
#include "components/autofill/core/common/form_data.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace autofill {
namespace {
void MockCallback(AutofillClient::RequestAutocompleteResult result,
const base::string16&,
const FormStructure*) {
}
class TestAutofillDialogController : public AutofillDialogControllerImpl {
public:
TestAutofillDialogController(
content::WebContents* contents,
const FormData& form_structure,
scoped_refptr<content::MessageLoopRunner> runner)
: AutofillDialogControllerImpl(contents,
form_structure,
GURL(),
base::Bind(MockCallback)),
runner_(runner) {}
~TestAutofillDialogController() override {}
void ViewClosed() override {
DCHECK(runner_.get());
runner_->Quit();
AutofillDialogControllerImpl::ViewClosed();
}
AutofillDialogCocoa* GetView() {
return static_cast<AutofillDialogCocoa*>(
AutofillDialogControllerImpl::view());
}
private:
scoped_refptr<content::MessageLoopRunner> runner_;
DISALLOW_COPY_AND_ASSIGN(TestAutofillDialogController);
};
class AutofillDialogCocoaBrowserTest : public InProcessBrowserTest {
public:
AutofillDialogCocoaBrowserTest() {}
void SetUpOnMainThread() override {
// Ensure Mac OS X does not pop up a modal dialog for the Address Book.
autofill::test::DisableSystemServices(browser()->profile()->GetPrefs());
// Stick to local autofill mode.
browser()->profile()->GetPrefs()->SetBoolean(
::prefs::kAutofillDialogPayWithoutWallet, true);
FormFieldData field;
field.autocomplete_attribute = "cc-number";
FormData form_data;
form_data.fields.push_back(field);
runner_ = new content::MessageLoopRunner;
controller_ = new TestAutofillDialogController(
browser()->tab_strip_model()->GetActiveWebContents(),
form_data,
runner_);
}
TestAutofillDialogController* controller() { return controller_; }
void RunMessageLoop() {
DCHECK(runner_.get());
runner_->Run();
}
private:
// The controller owns itself.
TestAutofillDialogController* controller_;
scoped_refptr<content::MessageLoopRunner> runner_;
DISALLOW_COPY_AND_ASSIGN(AutofillDialogCocoaBrowserTest);
};
IN_PROC_BROWSER_TEST_F(AutofillDialogCocoaBrowserTest, DisplayUI) {
controller()->Show();
controller()->OnCancel();
controller()->Hide();
RunMessageLoop();
}
} // namespace
} // namespace autofill
|