OLD | NEW |
| (Empty) |
1 // Copyright 2015 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. | |
4 | |
5 #include "base/macros.h" | |
6 #include "chrome/browser/password_manager/auto_signin_first_run_infobar_delegate
.h" | |
7 #include "chrome/browser/profiles/profile.h" | |
8 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | |
9 #include "components/password_manager/core/common/password_manager_pref_names.h" | |
10 #include "components/prefs/pref_service.h" | |
11 #include "content/public/browser/web_contents.h" | |
12 #include "testing/gmock/include/gmock/gmock.h" | |
13 #include "testing/gtest/include/gtest/gtest.h" | |
14 | |
15 namespace { | |
16 | |
17 class TestAutoSigninFirstRunInfoBarDelegate | |
18 : public AutoSigninFirstRunInfoBarDelegate { | |
19 public: | |
20 explicit TestAutoSigninFirstRunInfoBarDelegate( | |
21 content::WebContents* web_contents) | |
22 : AutoSigninFirstRunInfoBarDelegate( | |
23 web_contents, | |
24 true /* is_smartlock_branding_enabled */, | |
25 base::string16()) {} | |
26 | |
27 ~TestAutoSigninFirstRunInfoBarDelegate() override {} | |
28 }; | |
29 | |
30 } // namespace | |
31 | |
32 class AutoSigninFirstRunInfoBarDelegateTest | |
33 : public ChromeRenderViewHostTestHarness { | |
34 public: | |
35 AutoSigninFirstRunInfoBarDelegateTest() {} | |
36 ~AutoSigninFirstRunInfoBarDelegateTest() override {} | |
37 | |
38 PrefService* prefs(); | |
39 | |
40 protected: | |
41 scoped_ptr<ConfirmInfoBarDelegate> CreateDelegate(); | |
42 | |
43 private: | |
44 DISALLOW_COPY_AND_ASSIGN(AutoSigninFirstRunInfoBarDelegateTest); | |
45 }; | |
46 | |
47 scoped_ptr<ConfirmInfoBarDelegate> | |
48 AutoSigninFirstRunInfoBarDelegateTest::CreateDelegate() { | |
49 scoped_ptr<ConfirmInfoBarDelegate> delegate( | |
50 new TestAutoSigninFirstRunInfoBarDelegate(web_contents())); | |
51 return delegate; | |
52 } | |
53 | |
54 PrefService* AutoSigninFirstRunInfoBarDelegateTest::prefs() { | |
55 Profile* profile = | |
56 Profile::FromBrowserContext(web_contents()->GetBrowserContext()); | |
57 return profile->GetPrefs(); | |
58 } | |
59 | |
60 TEST_F(AutoSigninFirstRunInfoBarDelegateTest, | |
61 CheckResetOfPrefAfterFirstRunMessageWasShownOnCancel) { | |
62 prefs()->SetBoolean( | |
63 password_manager::prefs::kWasAutoSignInFirstRunExperienceShown, false); | |
64 scoped_ptr<ConfirmInfoBarDelegate> infobar(CreateDelegate()); | |
65 EXPECT_TRUE(infobar->Cancel()); | |
66 infobar.reset(); | |
67 EXPECT_TRUE(prefs()->GetBoolean( | |
68 password_manager::prefs::kWasAutoSignInFirstRunExperienceShown)); | |
69 } | |
70 | |
71 TEST_F(AutoSigninFirstRunInfoBarDelegateTest, | |
72 CheckResetOfPrefAfterFirstRunMessageWasShownOnAccept) { | |
73 prefs()->SetBoolean( | |
74 password_manager::prefs::kWasAutoSignInFirstRunExperienceShown, false); | |
75 scoped_ptr<ConfirmInfoBarDelegate> infobar(CreateDelegate()); | |
76 EXPECT_TRUE(infobar->Accept()); | |
77 infobar.reset(); | |
78 EXPECT_TRUE(prefs()->GetBoolean( | |
79 password_manager::prefs::kWasAutoSignInFirstRunExperienceShown)); | |
80 } | |
OLD | NEW |