1 // Copyright 2014 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_AUTOFILL_DIALOG_VIEW_TESTER_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_TESTER_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "base/strings/string16.h"
10 #include "chrome/browser/ui/autofill/autofill_dialog_types.h"
11 #include "components/autofill/core/browser/field_types.h"
12 #include "ui/gfx/geometry/size.h"
20 class AutofillDialogView
;
22 // Functionality that helps to test an AutofillDialogView.
23 class AutofillDialogViewTester
{
25 // Gets a AutofillDialogViewTester for |view|.
26 static scoped_ptr
<AutofillDialogViewTester
> For(AutofillDialogView
* view
);
28 virtual ~AutofillDialogViewTester() {}
30 // Simulates the user pressing 'Submit' to accept the dialog.
31 virtual void SubmitForTesting() = 0;
33 // Simulates the user pressing 'Cancel' to abort the dialog.
34 virtual void CancelForTesting() = 0;
36 // Returns the actual contents of the input of |type|.
37 virtual base::string16
GetTextContentsOfInput(ServerFieldType type
) = 0;
39 // Sets the actual contents of the input of |type|.
40 virtual void SetTextContentsOfInput(ServerFieldType type
,
41 const base::string16
& contents
) = 0;
43 // Sets the content of the extra field for a section.
44 virtual void SetTextContentsOfSuggestionInput(DialogSection section
,
45 const base::string16
& text
) = 0;
47 // Simulates a user activation of the input of |type|.
48 virtual void ActivateInput(ServerFieldType type
) = 0;
50 // Get the size of the entire view.
51 virtual gfx::Size
GetSize() const = 0;
53 // Get the web contents used to sign in to Google.
54 virtual content::WebContents
* GetSignInWebContents() = 0;
56 // Whether the overlay is visible.
57 virtual bool IsShowingOverlay() const = 0;
59 // Whether |section| is currently showing.
60 virtual bool IsShowingSection(DialogSection section
) const = 0;
63 } // namespace autofill
65 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_TESTER_H_