| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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/services/gcm/gcm_profile_service.h" | 5 #include "chrome/browser/services/gcm/gcm_profile_service.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/run_loop.h" | 13 #include "base/run_loop.h" |
| 14 #include "chrome/browser/services/gcm/fake_gcm_client.h" |
| 14 #include "chrome/browser/services/gcm/fake_gcm_client_factory.h" | 15 #include "chrome/browser/services/gcm/fake_gcm_client_factory.h" |
| 15 #include "chrome/browser/services/gcm/fake_signin_manager.h" | 16 #include "chrome/browser/services/gcm/fake_signin_manager.h" |
| 16 #include "chrome/browser/services/gcm/gcm_client_mock.h" | |
| 17 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h" | 17 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h" |
| 18 #include "chrome/browser/signin/signin_manager_factory.h" | 18 #include "chrome/browser/signin/signin_manager_factory.h" |
| 19 #include "chrome/test/base/testing_profile.h" | 19 #include "chrome/test/base/testing_profile.h" |
| 20 #include "components/gcm_driver/gcm_client_factory.h" | 20 #include "components/gcm_driver/gcm_client_factory.h" |
| 21 #include "components/user_prefs/pref_registry_syncable.h" | 21 #include "components/user_prefs/pref_registry_syncable.h" |
| 22 #include "content/public/browser/browser_context.h" | 22 #include "content/public/browser/browser_context.h" |
| 23 #include "content/public/test/test_browser_thread_bundle.h" | 23 #include "content/public/test/test_browser_thread_bundle.h" |
| 24 #include "google_apis/gcm/gcm_client.h" | 24 #include "google_apis/gcm/gcm_client.h" |
| 25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
| 26 | 26 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 39 } // namespace | 39 } // namespace |
| 40 | 40 |
| 41 class GCMProfileServiceTest : public testing::Test { | 41 class GCMProfileServiceTest : public testing::Test { |
| 42 protected: | 42 protected: |
| 43 GCMProfileServiceTest(); | 43 GCMProfileServiceTest(); |
| 44 virtual ~GCMProfileServiceTest(); | 44 virtual ~GCMProfileServiceTest(); |
| 45 | 45 |
| 46 // testing::Test: | 46 // testing::Test: |
| 47 virtual void SetUp() OVERRIDE; | 47 virtual void SetUp() OVERRIDE; |
| 48 | 48 |
| 49 GCMClientMock* GetGCMClient() const; | 49 FakeGCMClient* GetGCMClient() const; |
| 50 | 50 |
| 51 void RegisterAndWaitForCompletion(const std::vector<std::string>& sender_ids); | 51 void RegisterAndWaitForCompletion(const std::vector<std::string>& sender_ids); |
| 52 void SendAndWaitForCompletion(const GCMClient::OutgoingMessage& message); | 52 void SendAndWaitForCompletion(const GCMClient::OutgoingMessage& message); |
| 53 | 53 |
| 54 void RegisterCompleted(const base::Closure& callback, | 54 void RegisterCompleted(const base::Closure& callback, |
| 55 const std::string& registration_id, | 55 const std::string& registration_id, |
| 56 GCMClient::Result result); | 56 GCMClient::Result result); |
| 57 void SendCompleted(const base::Closure& callback, | 57 void SendCompleted(const base::Closure& callback, |
| 58 const std::string& message_id, | 58 const std::string& message_id, |
| 59 GCMClient::Result result); | 59 GCMClient::Result result); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 73 | 73 |
| 74 GCMProfileServiceTest::GCMProfileServiceTest() | 74 GCMProfileServiceTest::GCMProfileServiceTest() |
| 75 : gcm_profile_service_(NULL), | 75 : gcm_profile_service_(NULL), |
| 76 registration_result_(GCMClient::UNKNOWN_ERROR), | 76 registration_result_(GCMClient::UNKNOWN_ERROR), |
| 77 send_result_(GCMClient::UNKNOWN_ERROR) { | 77 send_result_(GCMClient::UNKNOWN_ERROR) { |
| 78 } | 78 } |
| 79 | 79 |
| 80 GCMProfileServiceTest::~GCMProfileServiceTest() { | 80 GCMProfileServiceTest::~GCMProfileServiceTest() { |
| 81 } | 81 } |
| 82 | 82 |
| 83 GCMClientMock* GCMProfileServiceTest::GetGCMClient() const { | 83 FakeGCMClient* GCMProfileServiceTest::GetGCMClient() const { |
| 84 return static_cast<GCMClientMock*>( | 84 return static_cast<FakeGCMClient*>( |
| 85 gcm_profile_service_->GetGCMClientForTesting()); | 85 gcm_profile_service_->GetGCMClientForTesting()); |
| 86 } | 86 } |
| 87 | 87 |
| 88 void GCMProfileServiceTest::SetUp() { | 88 void GCMProfileServiceTest::SetUp() { |
| 89 TestingProfile::Builder builder; | 89 TestingProfile::Builder builder; |
| 90 builder.AddTestingFactory(SigninManagerFactory::GetInstance(), | 90 builder.AddTestingFactory(SigninManagerFactory::GetInstance(), |
| 91 FakeSigninManager::Build); | 91 FakeSigninManager::Build); |
| 92 profile_ = builder.Build(); | 92 profile_ = builder.Build(); |
| 93 | 93 |
| 94 gcm_profile_service_ = static_cast<GCMProfileService*>( | 94 gcm_profile_service_ = static_cast<GCMProfileService*>( |
| 95 GCMProfileServiceFactory::GetInstance()->SetTestingFactoryAndUse( | 95 GCMProfileServiceFactory::GetInstance()->SetTestingFactoryAndUse( |
| 96 profile_.get(), | 96 profile_.get(), |
| 97 &BuildGCMProfileService)); | 97 &BuildGCMProfileService)); |
| 98 gcm_profile_service_->Initialize(scoped_ptr<GCMClientFactory>( | 98 gcm_profile_service_->Initialize(scoped_ptr<GCMClientFactory>( |
| 99 new FakeGCMClientFactory(GCMClientMock::NO_DELAY_START))); | 99 new FakeGCMClientFactory(FakeGCMClient::NO_DELAY_START))); |
| 100 | 100 |
| 101 FakeSigninManager* signin_manager = static_cast<FakeSigninManager*>( | 101 FakeSigninManager* signin_manager = static_cast<FakeSigninManager*>( |
| 102 SigninManagerFactory::GetInstance()->GetForProfile(profile_.get())); | 102 SigninManagerFactory::GetInstance()->GetForProfile(profile_.get())); |
| 103 signin_manager->SignIn(kTestAccountID); | 103 signin_manager->SignIn(kTestAccountID); |
| 104 base::RunLoop().RunUntilIdle(); | 104 base::RunLoop().RunUntilIdle(); |
| 105 } | 105 } |
| 106 | 106 |
| 107 void GCMProfileServiceTest::RegisterAndWaitForCompletion( | 107 void GCMProfileServiceTest::RegisterAndWaitForCompletion( |
| 108 const std::vector<std::string>& sender_ids) { | 108 const std::vector<std::string>& sender_ids) { |
| 109 base::RunLoop run_loop; | 109 base::RunLoop run_loop; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 const std::string& message_id, | 142 const std::string& message_id, |
| 143 GCMClient::Result result) { | 143 GCMClient::Result result) { |
| 144 send_message_id_ = message_id; | 144 send_message_id_ = message_id; |
| 145 send_result_ = result; | 145 send_result_ = result; |
| 146 callback.Run(); | 146 callback.Run(); |
| 147 } | 147 } |
| 148 | 148 |
| 149 TEST_F(GCMProfileServiceTest, RegisterUnderNeutralChannelSignal) { | 149 TEST_F(GCMProfileServiceTest, RegisterUnderNeutralChannelSignal) { |
| 150 // GCMClient should not be checked in. | 150 // GCMClient should not be checked in. |
| 151 EXPECT_FALSE(gcm_profile_service_->IsGCMClientReady()); | 151 EXPECT_FALSE(gcm_profile_service_->IsGCMClientReady()); |
| 152 EXPECT_EQ(GCMClientMock::UNINITIALIZED, GetGCMClient()->status()); | 152 EXPECT_EQ(FakeGCMClient::UNINITIALIZED, GetGCMClient()->status()); |
| 153 | 153 |
| 154 // Invoking register will make GCMClient checked in. | 154 // Invoking register will make GCMClient checked in. |
| 155 std::vector<std::string> sender_ids; | 155 std::vector<std::string> sender_ids; |
| 156 sender_ids.push_back("sender"); | 156 sender_ids.push_back("sender"); |
| 157 RegisterAndWaitForCompletion(sender_ids); | 157 RegisterAndWaitForCompletion(sender_ids); |
| 158 | 158 |
| 159 // GCMClient should be checked in. | 159 // GCMClient should be checked in. |
| 160 EXPECT_TRUE(gcm_profile_service_->IsGCMClientReady()); | 160 EXPECT_TRUE(gcm_profile_service_->IsGCMClientReady()); |
| 161 EXPECT_EQ(GCMClientMock::STARTED, GetGCMClient()->status()); | 161 EXPECT_EQ(FakeGCMClient::STARTED, GetGCMClient()->status()); |
| 162 | 162 |
| 163 // Registration should succeed. | 163 // Registration should succeed. |
| 164 std::string expected_registration_id = | 164 std::string expected_registration_id = |
| 165 GCMClientMock::GetRegistrationIdFromSenderIds(sender_ids); | 165 FakeGCMClient::GetRegistrationIdFromSenderIds(sender_ids); |
| 166 EXPECT_EQ(expected_registration_id, registration_id_); | 166 EXPECT_EQ(expected_registration_id, registration_id_); |
| 167 EXPECT_EQ(GCMClient::SUCCESS, registration_result_); | 167 EXPECT_EQ(GCMClient::SUCCESS, registration_result_); |
| 168 } | 168 } |
| 169 | 169 |
| 170 TEST_F(GCMProfileServiceTest, SendUnderNeutralChannelSignal) { | 170 TEST_F(GCMProfileServiceTest, SendUnderNeutralChannelSignal) { |
| 171 // GCMClient should not be checked in. | 171 // GCMClient should not be checked in. |
| 172 EXPECT_FALSE(gcm_profile_service_->IsGCMClientReady()); | 172 EXPECT_FALSE(gcm_profile_service_->IsGCMClientReady()); |
| 173 EXPECT_EQ(GCMClientMock::UNINITIALIZED, GetGCMClient()->status()); | 173 EXPECT_EQ(FakeGCMClient::UNINITIALIZED, GetGCMClient()->status()); |
| 174 | 174 |
| 175 // Invoking send will make GCMClient checked in. | 175 // Invoking send will make GCMClient checked in. |
| 176 GCMClient::OutgoingMessage message; | 176 GCMClient::OutgoingMessage message; |
| 177 message.id = "1"; | 177 message.id = "1"; |
| 178 message.data["key1"] = "value1"; | 178 message.data["key1"] = "value1"; |
| 179 SendAndWaitForCompletion( message); | 179 SendAndWaitForCompletion( message); |
| 180 | 180 |
| 181 // GCMClient should be checked in. | 181 // GCMClient should be checked in. |
| 182 EXPECT_TRUE(gcm_profile_service_->IsGCMClientReady()); | 182 EXPECT_TRUE(gcm_profile_service_->IsGCMClientReady()); |
| 183 EXPECT_EQ(GCMClientMock::STARTED, GetGCMClient()->status()); | 183 EXPECT_EQ(FakeGCMClient::STARTED, GetGCMClient()->status()); |
| 184 | 184 |
| 185 // Sending should succeed. | 185 // Sending should succeed. |
| 186 EXPECT_EQ(message.id, send_message_id_); | 186 EXPECT_EQ(message.id, send_message_id_); |
| 187 EXPECT_EQ(GCMClient::SUCCESS, send_result_); | 187 EXPECT_EQ(GCMClient::SUCCESS, send_result_); |
| 188 } | 188 } |
| 189 | 189 |
| 190 } // namespace gcm | 190 } // namespace gcm |
| OLD | NEW |