Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1328)

Side by Side Diff: chrome/browser/services/gcm/gcm_profile_service_unittest.cc

Issue 286213003: Make GCMProfileService own GCMDriver, instead of deriving from it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix trybots Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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.h"
15 #include "chrome/browser/services/gcm/fake_gcm_client_factory.h" 15 #include "chrome/browser/services/gcm/fake_gcm_client_factory.h"
16 #include "chrome/browser/services/gcm/fake_signin_manager.h" 16 #include "chrome/browser/services/gcm/fake_signin_manager.h"
17 #include "chrome/browser/services/gcm/gcm_driver.h"
17 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h" 18 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h"
18 #include "chrome/browser/signin/signin_manager_factory.h" 19 #include "chrome/browser/signin/signin_manager_factory.h"
19 #include "chrome/test/base/testing_profile.h" 20 #include "chrome/test/base/testing_profile.h"
20 #include "components/gcm_driver/gcm_client_factory.h" 21 #include "components/gcm_driver/gcm_client_factory.h"
21 #include "components/pref_registry/pref_registry_syncable.h" 22 #include "components/pref_registry/pref_registry_syncable.h"
22 #include "content/public/browser/browser_context.h" 23 #include "content/public/browser/browser_context.h"
23 #include "content/public/test/test_browser_thread_bundle.h" 24 #include "content/public/test/test_browser_thread_bundle.h"
24 #include "google_apis/gcm/gcm_client.h" 25 #include "google_apis/gcm/gcm_client.h"
25 #include "testing/gtest/include/gtest/gtest.h" 26 #include "testing/gtest/include/gtest/gtest.h"
26 27
(...skipping 15 matching lines...) Expand all
42 protected: 43 protected:
43 GCMProfileServiceTest(); 44 GCMProfileServiceTest();
44 virtual ~GCMProfileServiceTest(); 45 virtual ~GCMProfileServiceTest();
45 46
46 // testing::Test: 47 // testing::Test:
47 virtual void SetUp() OVERRIDE; 48 virtual void SetUp() OVERRIDE;
48 49
49 FakeGCMClient* GetGCMClient() const; 50 FakeGCMClient* GetGCMClient() const;
50 51
51 void RegisterAndWaitForCompletion(const std::vector<std::string>& sender_ids); 52 void RegisterAndWaitForCompletion(const std::vector<std::string>& sender_ids);
53 void UnregisterAndWaitForCompletion();
52 void SendAndWaitForCompletion(const GCMClient::OutgoingMessage& message); 54 void SendAndWaitForCompletion(const GCMClient::OutgoingMessage& message);
53 55
54 void RegisterCompleted(const base::Closure& callback, 56 void RegisterCompleted(const base::Closure& callback,
55 const std::string& registration_id, 57 const std::string& registration_id,
56 GCMClient::Result result); 58 GCMClient::Result result);
59 void UnregisterCompleted(const base::Closure& callback,
60 GCMClient::Result result);
57 void SendCompleted(const base::Closure& callback, 61 void SendCompleted(const base::Closure& callback,
58 const std::string& message_id, 62 const std::string& message_id,
59 GCMClient::Result result); 63 GCMClient::Result result);
60 64
65 GCMDriver* driver() const { return gcm_profile_service_->driver(); }
66 std::string registration_id() const { return registration_id_; }
67 GCMClient::Result registration_result() const { return registration_result_; }
68 GCMClient::Result unregistration_result() const {
69 return unregistration_result_;
70 }
71 std::string send_message_id() const { return send_message_id_; }
72 GCMClient::Result send_result() const { return send_result_; }
73
74 private:
61 content::TestBrowserThreadBundle thread_bundle_; 75 content::TestBrowserThreadBundle thread_bundle_;
62 scoped_ptr<TestingProfile> profile_; 76 scoped_ptr<TestingProfile> profile_;
63 GCMProfileService* gcm_profile_service_; 77 GCMProfileService* gcm_profile_service_;
64 78
65 std::string registration_id_; 79 std::string registration_id_;
66 GCMClient::Result registration_result_; 80 GCMClient::Result registration_result_;
81 GCMClient::Result unregistration_result_;
67 std::string send_message_id_; 82 std::string send_message_id_;
68 GCMClient::Result send_result_; 83 GCMClient::Result send_result_;
69 84
70 private:
71 DISALLOW_COPY_AND_ASSIGN(GCMProfileServiceTest); 85 DISALLOW_COPY_AND_ASSIGN(GCMProfileServiceTest);
72 }; 86 };
73 87
74 GCMProfileServiceTest::GCMProfileServiceTest() 88 GCMProfileServiceTest::GCMProfileServiceTest()
75 : gcm_profile_service_(NULL), 89 : gcm_profile_service_(NULL),
76 registration_result_(GCMClient::UNKNOWN_ERROR), 90 registration_result_(GCMClient::UNKNOWN_ERROR),
77 send_result_(GCMClient::UNKNOWN_ERROR) { 91 send_result_(GCMClient::UNKNOWN_ERROR) {
78 } 92 }
79 93
80 GCMProfileServiceTest::~GCMProfileServiceTest() { 94 GCMProfileServiceTest::~GCMProfileServiceTest() {
81 } 95 }
82 96
83 FakeGCMClient* GCMProfileServiceTest::GetGCMClient() const { 97 FakeGCMClient* GCMProfileServiceTest::GetGCMClient() const {
84 return static_cast<FakeGCMClient*>( 98 return static_cast<FakeGCMClient*>(
85 gcm_profile_service_->GetGCMClientForTesting()); 99 gcm_profile_service_->driver()->GetGCMClientForTesting());
86 } 100 }
87 101
88 void GCMProfileServiceTest::SetUp() { 102 void GCMProfileServiceTest::SetUp() {
89 TestingProfile::Builder builder; 103 TestingProfile::Builder builder;
90 builder.AddTestingFactory(SigninManagerFactory::GetInstance(), 104 builder.AddTestingFactory(SigninManagerFactory::GetInstance(),
91 FakeSigninManager::Build); 105 FakeSigninManager::Build);
92 profile_ = builder.Build(); 106 profile_ = builder.Build();
93 107
94 gcm_profile_service_ = static_cast<GCMProfileService*>( 108 gcm_profile_service_ = static_cast<GCMProfileService*>(
95 GCMProfileServiceFactory::GetInstance()->SetTestingFactoryAndUse( 109 GCMProfileServiceFactory::GetInstance()->SetTestingFactoryAndUse(
96 profile_.get(), 110 profile_.get(),
97 &BuildGCMProfileService)); 111 &BuildGCMProfileService));
98 gcm_profile_service_->Initialize(scoped_ptr<GCMClientFactory>( 112 gcm_profile_service_->Initialize(scoped_ptr<GCMClientFactory>(
99 new FakeGCMClientFactory(FakeGCMClient::NO_DELAY_START))); 113 new FakeGCMClientFactory(FakeGCMClient::NO_DELAY_START)));
100 114
101 FakeSigninManager* signin_manager = static_cast<FakeSigninManager*>( 115 FakeSigninManager* signin_manager = static_cast<FakeSigninManager*>(
102 SigninManagerFactory::GetInstance()->GetForProfile(profile_.get())); 116 SigninManagerFactory::GetInstance()->GetForProfile(profile_.get()));
103 signin_manager->SignIn(kTestAccountID); 117 signin_manager->SignIn(kTestAccountID);
104 base::RunLoop().RunUntilIdle(); 118 base::RunLoop().RunUntilIdle();
105 } 119 }
106 120
107 void GCMProfileServiceTest::RegisterAndWaitForCompletion( 121 void GCMProfileServiceTest::RegisterAndWaitForCompletion(
108 const std::vector<std::string>& sender_ids) { 122 const std::vector<std::string>& sender_ids) {
109 base::RunLoop run_loop; 123 base::RunLoop run_loop;
110 gcm_profile_service_->Register( 124 gcm_profile_service_->driver()->Register(
111 kTestAppID, 125 kTestAppID,
112 sender_ids, 126 sender_ids,
113 base::Bind(&GCMProfileServiceTest::RegisterCompleted, 127 base::Bind(&GCMProfileServiceTest::RegisterCompleted,
114 base::Unretained(this), 128 base::Unretained(this),
115 run_loop.QuitClosure())); 129 run_loop.QuitClosure()));
116 run_loop.Run(); 130 run_loop.Run();
117 } 131 }
118 132
133 void GCMProfileServiceTest::UnregisterAndWaitForCompletion() {
134 base::RunLoop run_loop;
135 gcm_profile_service_->driver()->Unregister(
136 kTestAppID,
137 base::Bind(&GCMProfileServiceTest::UnregisterCompleted,
138 base::Unretained(this),
139 run_loop.QuitClosure()));
140 run_loop.Run();
141 }
142
119 void GCMProfileServiceTest::SendAndWaitForCompletion( 143 void GCMProfileServiceTest::SendAndWaitForCompletion(
120 const GCMClient::OutgoingMessage& message) { 144 const GCMClient::OutgoingMessage& message) {
121 base::RunLoop run_loop; 145 base::RunLoop run_loop;
122 gcm_profile_service_->Send(kTestAppID, 146 gcm_profile_service_->driver()->Send(
123 kUserID, 147 kTestAppID,
124 message, 148 kUserID,
125 base::Bind(&GCMProfileServiceTest::SendCompleted, 149 message,
126 base::Unretained(this), 150 base::Bind(&GCMProfileServiceTest::SendCompleted,
127 run_loop.QuitClosure())); 151 base::Unretained(this),
152 run_loop.QuitClosure()));
128 run_loop.Run(); 153 run_loop.Run();
129 } 154 }
130 155
131 void GCMProfileServiceTest::RegisterCompleted( 156 void GCMProfileServiceTest::RegisterCompleted(
132 const base::Closure& callback, 157 const base::Closure& callback,
133 const std::string& registration_id, 158 const std::string& registration_id,
134 GCMClient::Result result) { 159 GCMClient::Result result) {
135 registration_id_ = registration_id; 160 registration_id_ = registration_id;
136 registration_result_ = result; 161 registration_result_ = result;
137 callback.Run(); 162 callback.Run();
138 } 163 }
139 164
165 void GCMProfileServiceTest::UnregisterCompleted(
166 const base::Closure& callback,
167 GCMClient::Result result) {
168 unregistration_result_ = result;
169 callback.Run();
170 }
171
140 void GCMProfileServiceTest::SendCompleted( 172 void GCMProfileServiceTest::SendCompleted(
141 const base::Closure& callback, 173 const base::Closure& callback,
142 const std::string& message_id, 174 const std::string& message_id,
143 GCMClient::Result result) { 175 GCMClient::Result result) {
144 send_message_id_ = message_id; 176 send_message_id_ = message_id;
145 send_result_ = result; 177 send_result_ = result;
146 callback.Run(); 178 callback.Run();
147 } 179 }
148 180
149 TEST_F(GCMProfileServiceTest, RegisterUnderNeutralChannelSignal) { 181 TEST_F(GCMProfileServiceTest, RegisterAndUnregister) {
150 // GCMClient should not be checked in.
151 EXPECT_FALSE(gcm_profile_service_->IsGCMClientReady());
152 EXPECT_EQ(FakeGCMClient::UNINITIALIZED, GetGCMClient()->status());
153
154 // Invoking register will make GCMClient checked in.
155 std::vector<std::string> sender_ids; 182 std::vector<std::string> sender_ids;
156 sender_ids.push_back("sender"); 183 sender_ids.push_back("sender");
157 RegisterAndWaitForCompletion(sender_ids); 184 RegisterAndWaitForCompletion(sender_ids);
158 185
159 // GCMClient should be checked in.
160 EXPECT_TRUE(gcm_profile_service_->IsGCMClientReady());
161 EXPECT_EQ(FakeGCMClient::STARTED, GetGCMClient()->status());
162
163 // Registration should succeed.
164 std::string expected_registration_id = 186 std::string expected_registration_id =
165 FakeGCMClient::GetRegistrationIdFromSenderIds(sender_ids); 187 FakeGCMClient::GetRegistrationIdFromSenderIds(sender_ids);
166 EXPECT_EQ(expected_registration_id, registration_id_); 188 EXPECT_EQ(expected_registration_id, registration_id());
167 EXPECT_EQ(GCMClient::SUCCESS, registration_result_); 189 EXPECT_EQ(GCMClient::SUCCESS, registration_result());
190
191 UnregisterAndWaitForCompletion();
192 EXPECT_EQ(GCMClient::SUCCESS, unregistration_result());
168 } 193 }
169 194
170 TEST_F(GCMProfileServiceTest, SendUnderNeutralChannelSignal) { 195 TEST_F(GCMProfileServiceTest, Send) {
171 // GCMClient should not be checked in.
172 EXPECT_FALSE(gcm_profile_service_->IsGCMClientReady());
173 EXPECT_EQ(FakeGCMClient::UNINITIALIZED, GetGCMClient()->status());
174
175 // Invoking send will make GCMClient checked in.
176 GCMClient::OutgoingMessage message; 196 GCMClient::OutgoingMessage message;
177 message.id = "1"; 197 message.id = "1";
178 message.data["key1"] = "value1"; 198 message.data["key1"] = "value1";
179 SendAndWaitForCompletion( message); 199 SendAndWaitForCompletion( message);
180 200
181 // GCMClient should be checked in. 201 EXPECT_EQ(message.id, send_message_id());
182 EXPECT_TRUE(gcm_profile_service_->IsGCMClientReady()); 202 EXPECT_EQ(GCMClient::SUCCESS, send_result());
183 EXPECT_EQ(FakeGCMClient::STARTED, GetGCMClient()->status());
184
185 // Sending should succeed.
186 EXPECT_EQ(message.id, send_message_id_);
187 EXPECT_EQ(GCMClient::SUCCESS, send_result_);
188 } 203 }
189 204
190 } // namespace gcm 205 } // namespace gcm
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698