OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/sync/one_click_signin_sync_starter.h" | 5 #include "chrome/browser/ui/sync/one_click_signin_sync_starter.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "chrome/browser/signin/fake_signin_manager.h" | 11 #include "chrome/browser/signin/fake_signin_manager.h" |
12 #include "chrome/browser/signin/signin_manager_factory.h" | 12 #include "chrome/browser/signin/signin_manager_factory.h" |
13 #include "chrome/browser/signin/signin_promo.h" | 13 #include "chrome/browser/signin/signin_promo.h" |
14 #include "chrome/common/chrome_switches.h" | 14 #include "chrome/common/chrome_switches.h" |
15 #include "chrome/test/base/testing_profile.h" | 15 #include "chrome/test/base/testing_profile.h" |
| 16 #include "content/public/test/test_browser_thread_bundle.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
17 | 18 |
18 namespace { | 19 namespace { |
19 const char* kTestingUsername = "fake_username"; | 20 const char* kTestingUsername = "fake_username"; |
20 } // namespace | 21 } // namespace |
21 | 22 |
22 class OneClickSigninSyncStarterTest : public testing::Test { | 23 class OneClickSigninSyncStarterTest : public testing::Test { |
23 public: | 24 public: |
24 OneClickSigninSyncStarterTest() | 25 OneClickSigninSyncStarterTest() |
25 : sync_starter_(NULL), | 26 : sync_starter_(NULL), |
26 failed_count_(0), | 27 failed_count_(0), |
27 succeeded_count_(0) {} | 28 succeeded_count_(0) {} |
28 | 29 |
29 // testing::Test: | 30 // testing::Test: |
30 virtual void SetUp() OVERRIDE { | 31 virtual void SetUp() OVERRIDE { |
31 testing::Test::SetUp(); | |
32 profile_.reset(new TestingProfile()); | |
33 | |
34 // Disable sync to simplify the creation of a OneClickSigninSyncStarter. | 32 // Disable sync to simplify the creation of a OneClickSigninSyncStarter. |
35 CommandLine::ForCurrentProcess()->AppendSwitch(switches::kDisableSync); | 33 CommandLine::ForCurrentProcess()->AppendSwitch(switches::kDisableSync); |
36 | 34 |
37 // Create the sign in manager required by OneClickSigninSyncStarter. | 35 // Create the sign in manager required by OneClickSigninSyncStarter. |
38 SigninManagerBase* signin_manager = | 36 SigninManagerBase* signin_manager = |
39 static_cast<FakeSigninManager*>( | 37 static_cast<FakeSigninManager*>( |
40 SigninManagerFactory::GetInstance()->SetTestingFactoryAndUse( | 38 SigninManagerFactory::GetInstance()->SetTestingFactoryAndUse( |
41 profile_.get(), | 39 &profile_, |
42 &OneClickSigninSyncStarterTest::BuildSigninManager)); | 40 &OneClickSigninSyncStarterTest::BuildSigninManager)); |
43 signin_manager->Initialize(profile_.get(), NULL); | 41 signin_manager->Initialize(&profile_, NULL); |
44 signin_manager->SetAuthenticatedUsername(kTestingUsername); | 42 signin_manager->SetAuthenticatedUsername(kTestingUsername); |
45 } | 43 } |
46 | 44 |
47 void Callback(OneClickSigninSyncStarter::SyncSetupResult result) { | 45 void Callback(OneClickSigninSyncStarter::SyncSetupResult result) { |
48 if (result == OneClickSigninSyncStarter::SYNC_SETUP_SUCCESS) | 46 if (result == OneClickSigninSyncStarter::SYNC_SETUP_SUCCESS) |
49 ++succeeded_count_; | 47 ++succeeded_count_; |
50 else | 48 else |
51 ++failed_count_; | 49 ++failed_count_; |
52 } | 50 } |
53 | 51 |
54 protected: | 52 protected: |
55 void CreateSyncStarter(OneClickSigninSyncStarter::Callback callback) { | 53 void CreateSyncStarter(OneClickSigninSyncStarter::Callback callback) { |
56 sync_starter_ = new OneClickSigninSyncStarter( | 54 sync_starter_ = new OneClickSigninSyncStarter( |
57 profile_.get(), | 55 &profile_, |
58 NULL, | 56 NULL, |
59 std::string(), | 57 std::string(), |
60 kTestingUsername, | 58 kTestingUsername, |
61 std::string(), | 59 std::string(), |
62 OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS, | 60 OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS, |
63 NULL, | 61 NULL, |
64 OneClickSigninSyncStarter::NO_CONFIRMATION, | 62 OneClickSigninSyncStarter::NO_CONFIRMATION, |
65 signin::SOURCE_UNKNOWN, | 63 signin::SOURCE_UNKNOWN, |
66 callback | 64 callback |
67 ); | 65 ); |
68 } | 66 } |
69 | 67 |
70 scoped_ptr<TestingProfile> profile_; | 68 content::TestBrowserThreadBundle thread_bundle_; |
| 69 TestingProfile profile_; |
71 | 70 |
72 // Deletes itself when SigninFailed() or SigninSuccess() is called. | 71 // Deletes itself when SigninFailed() or SigninSuccess() is called. |
73 OneClickSigninSyncStarter* sync_starter_; | 72 OneClickSigninSyncStarter* sync_starter_; |
74 | 73 |
75 // Number of times that the callback is called with SYNC_SETUP_FAILURE. | 74 // Number of times that the callback is called with SYNC_SETUP_FAILURE. |
76 int failed_count_; | 75 int failed_count_; |
77 | 76 |
78 // Number of times that the callback is called with SYNC_SETUP_SUCCESS. | 77 // Number of times that the callback is called with SYNC_SETUP_SUCCESS. |
79 int succeeded_count_; | 78 int succeeded_count_; |
80 | 79 |
(...skipping 17 matching lines...) Expand all Loading... |
98 } | 97 } |
99 | 98 |
100 // Verifies that there is no crash when the callback is NULL. | 99 // Verifies that there is no crash when the callback is NULL. |
101 TEST_F(OneClickSigninSyncStarterTest, CallbackNull) { | 100 TEST_F(OneClickSigninSyncStarterTest, CallbackNull) { |
102 CreateSyncStarter(OneClickSigninSyncStarter::Callback()); | 101 CreateSyncStarter(OneClickSigninSyncStarter::Callback()); |
103 sync_starter_->SigninFailed(GoogleServiceAuthError( | 102 sync_starter_->SigninFailed(GoogleServiceAuthError( |
104 GoogleServiceAuthError::REQUEST_CANCELED)); | 103 GoogleServiceAuthError::REQUEST_CANCELED)); |
105 EXPECT_EQ(0, failed_count_); | 104 EXPECT_EQ(0, failed_count_); |
106 EXPECT_EQ(0, succeeded_count_); | 105 EXPECT_EQ(0, succeeded_count_); |
107 } | 106 } |
OLD | NEW |