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

Side by Side Diff: chrome/browser/extensions/extension_gcm_app_handler_unittest.cc

Issue 284193005: Rename GCMClientMock to FakeGCMClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « no previous file | chrome/browser/services/gcm/fake_gcm_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/extensions/extension_gcm_app_handler.h" 5 #include "chrome/browser/extensions/extension_gcm_app_handler.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/command_line.h" 11 #include "base/command_line.h"
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/location.h" 13 #include "base/location.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "base/message_loop/message_loop.h" 16 #include "base/message_loop/message_loop.h"
17 #include "base/run_loop.h" 17 #include "base/run_loop.h"
18 #include "base/values.h" 18 #include "base/values.h"
19 #include "chrome/browser/extensions/extension_service.h" 19 #include "chrome/browser/extensions/extension_service.h"
20 #include "chrome/browser/extensions/test_extension_service.h" 20 #include "chrome/browser/extensions/test_extension_service.h"
21 #include "chrome/browser/extensions/test_extension_system.h" 21 #include "chrome/browser/extensions/test_extension_system.h"
22 #include "chrome/browser/profiles/profile.h" 22 #include "chrome/browser/profiles/profile.h"
23 #include "chrome/browser/services/gcm/fake_gcm_client.h"
23 #include "chrome/browser/services/gcm/fake_gcm_client_factory.h" 24 #include "chrome/browser/services/gcm/fake_gcm_client_factory.h"
24 #include "chrome/browser/services/gcm/fake_signin_manager.h" 25 #include "chrome/browser/services/gcm/fake_signin_manager.h"
25 #include "chrome/browser/services/gcm/gcm_client_mock.h"
26 #include "chrome/browser/services/gcm/gcm_profile_service.h" 26 #include "chrome/browser/services/gcm/gcm_profile_service.h"
27 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h" 27 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h"
28 #include "chrome/browser/signin/signin_manager_factory.h" 28 #include "chrome/browser/signin/signin_manager_factory.h"
29 #include "chrome/common/pref_names.h" 29 #include "chrome/common/pref_names.h"
30 #include "chrome/test/base/testing_profile.h" 30 #include "chrome/test/base/testing_profile.h"
31 #include "components/gcm_driver/gcm_client_factory.h" 31 #include "components/gcm_driver/gcm_client_factory.h"
32 #include "components/keyed_service/core/keyed_service.h" 32 #include "components/keyed_service/core/keyed_service.h"
33 #include "content/public/browser/browser_context.h" 33 #include "content/public/browser/browser_context.h"
34 #include "content/public/browser/browser_thread.h" 34 #include "content/public/browser/browser_thread.h"
35 #include "content/public/test/test_browser_thread_bundle.h" 35 #include "content/public/test/test_browser_thread_bundle.h"
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 profile()->GetPrefs()->SetBoolean(prefs::kGCMChannelEnabled, true); 209 profile()->GetPrefs()->SetBoolean(prefs::kGCMChannelEnabled, true);
210 210
211 // Create GCMProfileService that talks with fake GCMClient. 211 // Create GCMProfileService that talks with fake GCMClient.
212 gcm::GCMProfileService* gcm_profile_service = 212 gcm::GCMProfileService* gcm_profile_service =
213 static_cast<gcm::GCMProfileService*>( 213 static_cast<gcm::GCMProfileService*>(
214 gcm::GCMProfileServiceFactory::GetInstance()-> 214 gcm::GCMProfileServiceFactory::GetInstance()->
215 SetTestingFactoryAndUse( 215 SetTestingFactoryAndUse(
216 profile(), 216 profile(),
217 &ExtensionGCMAppHandlerTest::BuildGCMProfileService)); 217 &ExtensionGCMAppHandlerTest::BuildGCMProfileService));
218 scoped_ptr<gcm::GCMClientFactory> gcm_client_factory( 218 scoped_ptr<gcm::GCMClientFactory> gcm_client_factory(
219 new gcm::FakeGCMClientFactory(gcm::GCMClientMock::NO_DELAY_START)); 219 new gcm::FakeGCMClientFactory(gcm::FakeGCMClient::NO_DELAY_START));
220 gcm_profile_service->Initialize(gcm_client_factory.Pass()); 220 gcm_profile_service->Initialize(gcm_client_factory.Pass());
221 221
222 // Create a fake version of ExtensionGCMAppHandler. 222 // Create a fake version of ExtensionGCMAppHandler.
223 gcm_app_handler_.reset(new FakeExtensionGCMAppHandler(profile(), &waiter_)); 223 gcm_app_handler_.reset(new FakeExtensionGCMAppHandler(profile(), &waiter_));
224 } 224 }
225 225
226 virtual void TearDown() OVERRIDE { 226 virtual void TearDown() OVERRIDE {
227 #if defined(OS_CHROMEOS) 227 #if defined(OS_CHROMEOS)
228 test_user_manager_.reset(); 228 test_user_manager_.reset();
229 #endif 229 #endif
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 EXPECT_EQ(gcm::GCMClient::SUCCESS, registration_result()); 381 EXPECT_EQ(gcm::GCMClient::SUCCESS, registration_result());
382 382
383 // Unregistration should be triggered when the extension is uninstalled. 383 // Unregistration should be triggered when the extension is uninstalled.
384 UninstallExtension(extension); 384 UninstallExtension(extension);
385 waiter()->WaitUntilCompleted(); 385 waiter()->WaitUntilCompleted();
386 EXPECT_EQ(gcm::GCMClient::SUCCESS, 386 EXPECT_EQ(gcm::GCMClient::SUCCESS,
387 gcm_app_handler()->unregistration_result()); 387 gcm_app_handler()->unregistration_result());
388 } 388 }
389 389
390 } // namespace extensions 390 } // namespace extensions
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/services/gcm/fake_gcm_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698