1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_AUTOFILL_MOCK_AUTOFILL_DIALOG_VIEW_DELEGATE_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_MOCK_AUTOFILL_DIALOG_VIEW_DELEGATE_H_
8 #include "base/basictypes.h"
9 #include "chrome/browser/ui/autofill/autofill_dialog_view_delegate.h"
10 #include "testing/gmock/include/gmock/gmock.h"
11 #include "ui/gfx/range/range.h"
15 class MockAutofillDialogViewDelegate
: public AutofillDialogViewDelegate
{
17 MockAutofillDialogViewDelegate();
18 virtual ~MockAutofillDialogViewDelegate();
20 MOCK_CONST_METHOD0(DialogTitle
, base::string16());
21 MOCK_CONST_METHOD0(AccountChooserText
, base::string16());
22 MOCK_CONST_METHOD0(SignInLinkText
, base::string16());
23 MOCK_CONST_METHOD0(SpinnerText
, base::string16());
24 MOCK_CONST_METHOD0(EditSuggestionText
, base::string16());
25 MOCK_CONST_METHOD0(CancelButtonText
, base::string16());
26 MOCK_CONST_METHOD0(ConfirmButtonText
, base::string16());
27 MOCK_CONST_METHOD0(SaveLocallyText
, base::string16());
28 MOCK_CONST_METHOD0(SaveLocallyTooltip
, base::string16());
29 MOCK_METHOD0(LegalDocumentsText
, base::string16());
30 MOCK_CONST_METHOD0(ShouldShowSpinner
, bool());
31 MOCK_CONST_METHOD0(ShouldShowAccountChooser
, bool());
32 MOCK_CONST_METHOD0(ShouldShowSignInWebView
, bool());
33 MOCK_CONST_METHOD0(SignInUrl
, GURL());
34 MOCK_CONST_METHOD0(ShouldOfferToSaveInChrome
, bool());
35 MOCK_CONST_METHOD0(ShouldSaveInChrome
, bool());
36 MOCK_METHOD0(MenuModelForAccountChooser
, ui::MenuModel
*());
37 MOCK_METHOD0(AccountChooserImage
, gfx::Image());
38 MOCK_CONST_METHOD0(ShouldShowProgressBar
, bool());
39 MOCK_CONST_METHOD0(ButtonStripImage
, gfx::Image());
40 MOCK_CONST_METHOD0(GetDialogButtons
, int());
41 MOCK_CONST_METHOD1(IsDialogButtonEnabled
, bool(ui::DialogButton button
));
42 MOCK_METHOD0(GetDialogOverlay
, DialogOverlayState());
43 MOCK_METHOD0(LegalDocumentLinks
, const std::vector
<gfx::Range
>&());
44 MOCK_CONST_METHOD1(SectionIsActive
, bool(DialogSection
));
45 MOCK_CONST_METHOD1(RequestedFieldsForSection
,
46 const DetailInputs
&(DialogSection
));
47 MOCK_METHOD1(ComboboxModelForAutofillType
,
48 ui::ComboboxModel
*(ServerFieldType
));
49 MOCK_METHOD1(MenuModelForSection
, ui::MenuModel
*(DialogSection
));
50 MOCK_CONST_METHOD1(LabelForSection
, base::string16(DialogSection section
));
51 MOCK_METHOD1(SuggestionStateForSection
, SuggestionState(DialogSection
));
52 MOCK_METHOD1(EditClickedForSection
, void(DialogSection section
));
53 MOCK_METHOD1(EditCancelledForSection
, void(DialogSection section
));
54 MOCK_CONST_METHOD1(IconsForFields
, FieldIconMap(const FieldValueMap
&));
55 MOCK_CONST_METHOD1(FieldControlsIcons
, bool(ServerFieldType
));
56 MOCK_CONST_METHOD1(TooltipForField
, base::string16(ServerFieldType
));
57 MOCK_METHOD3(InputValidityMessage
,
58 base::string16(DialogSection
, ServerFieldType
, const base::string16
&));
59 MOCK_METHOD2(InputsAreValid
, ValidityMessages(DialogSection
,
60 const FieldValueMap
&));
61 MOCK_METHOD6(UserEditedOrActivatedInput
, void(DialogSection
,
65 const base::string16
&,
67 MOCK_METHOD1(HandleKeyPressEventInInput
,
68 bool(const content::NativeWebKeyboardEvent
& event
));
69 MOCK_METHOD0(FocusMoved
, void());
70 MOCK_CONST_METHOD0(ShouldShowErrorBubble
, bool());
71 MOCK_METHOD0(ViewClosed
, void());
72 MOCK_METHOD0(CurrentNotifications
,std::vector
<DialogNotification
>());
73 MOCK_METHOD1(LinkClicked
, void(const GURL
&));
74 MOCK_METHOD0(SignInLinkClicked
, void());
75 MOCK_METHOD2(NotificationCheckboxStateChanged
,
76 void(DialogNotification::Type
, bool));
77 MOCK_METHOD1(LegalDocumentLinkClicked
, void(const gfx::Range
&));
78 MOCK_METHOD0(OverlayButtonPressed
, void());
79 MOCK_METHOD0(OnCancel
, void());
80 MOCK_METHOD0(OnAccept
, void());
81 MOCK_METHOD0(profile
, Profile
*());
82 MOCK_METHOD0(GetWebContents
, content::WebContents
*());
84 // Set which web contents initiated showing the dialog.
85 void SetWebContents(content::WebContents
* contents
);
87 // Set which profile to use for mock |profile()| calls.
88 void SetProfile(Profile
* profile
);
91 DetailInputs default_inputs_
;
92 DetailInputs cc_default_inputs_
; // Default inputs for SECTION_CC.
93 std::vector
<gfx::Range
> range_
;
95 DISALLOW_COPY_AND_ASSIGN(MockAutofillDialogViewDelegate
);
98 } // namespace autofill
100 #endif // CHROME_BROWSER_UI_AUTOFILL_MOCK_AUTOFILL_DIALOG_VIEW_DELEGATE_H_