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

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

Issue 2713083003: Use ContentSetting in chrome/ instead of PermissionStatus (Closed)
Patch Set: maybe fix android compile + address comments + basic tests Created 3 years, 9 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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 <stdint.h> 5 #include <stdint.h>
6 6
7 #include "base/bind_helpers.h" 7 #include "base/bind_helpers.h"
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/strings/stringprintf.h" 9 #include "base/strings/stringprintf.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
11 #include "chrome/browser/extensions/extension_apitest.h" 11 #include "chrome/browser/extensions/extension_apitest.h"
12 #include "chrome/browser/extensions/extension_service.h" 12 #include "chrome/browser/extensions/extension_service.h"
13 #include "chrome/browser/gcm/fake_gcm_profile_service.h" 13 #include "chrome/browser/gcm/fake_gcm_profile_service.h"
14 #include "chrome/browser/gcm/gcm_profile_service_factory.h" 14 #include "chrome/browser/gcm/gcm_profile_service_factory.h"
15 #include "chrome/browser/notifications/desktop_notification_profile_util.h" 15 #include "chrome/browser/notifications/desktop_notification_profile_util.h"
16 #include "chrome/browser/permissions/permission_manager.h" 16 #include "chrome/browser/permissions/permission_manager.h"
17 #include "chrome/browser/permissions/permission_result.h"
17 #include "chrome/browser/push_messaging/push_messaging_app_identifier.h" 18 #include "chrome/browser/push_messaging/push_messaging_app_identifier.h"
18 #include "chrome/browser/push_messaging/push_messaging_service_factory.h" 19 #include "chrome/browser/push_messaging/push_messaging_service_factory.h"
19 #include "chrome/browser/push_messaging/push_messaging_service_impl.h" 20 #include "chrome/browser/push_messaging/push_messaging_service_impl.h"
20 #include "chrome/browser/ui/tabs/tab_strip_model.h" 21 #include "chrome/browser/ui/tabs/tab_strip_model.h"
21 #include "chrome/test/base/ui_test_utils.h" 22 #include "chrome/test/base/ui_test_utils.h"
22 #include "components/content_settings/core/common/content_settings_types.h" 23 #include "components/content_settings/core/common/content_settings_types.h"
23 #include "components/gcm_driver/instance_id/fake_gcm_driver_for_instance_id.h" 24 #include "components/gcm_driver/instance_id/fake_gcm_driver_for_instance_id.h"
24 #include "components/version_info/version_info.h" 25 #include "components/version_info/version_info.h"
25 #include "content/public/browser/navigation_controller.h" 26 #include "content/public/browser/navigation_controller.h"
26 #include "content/public/browser/navigation_entry.h" 27 #include "content/public/browser/navigation_entry.h"
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 217
217 class ServiceWorkerPushMessagingTest : public ServiceWorkerTest { 218 class ServiceWorkerPushMessagingTest : public ServiceWorkerTest {
218 public: 219 public:
219 ServiceWorkerPushMessagingTest() 220 ServiceWorkerPushMessagingTest()
220 : gcm_driver_(nullptr), push_service_(nullptr) {} 221 : gcm_driver_(nullptr), push_service_(nullptr) {}
221 ~ServiceWorkerPushMessagingTest() override {} 222 ~ServiceWorkerPushMessagingTest() override {}
222 223
223 void GrantNotificationPermissionForTest(const GURL& url) { 224 void GrantNotificationPermissionForTest(const GURL& url) {
224 GURL origin = url.GetOrigin(); 225 GURL origin = url.GetOrigin();
225 DesktopNotificationProfileUtil::GrantPermission(profile(), origin); 226 DesktopNotificationProfileUtil::GrantPermission(profile(), origin);
226 ASSERT_EQ(blink::mojom::PermissionStatus::GRANTED, 227 ASSERT_EQ(CONTENT_SETTING_ALLOW,
227 PermissionManager::Get(profile())->GetPermissionStatus( 228 PermissionManager::Get(profile())
228 CONTENT_SETTINGS_TYPE_NOTIFICATIONS, origin, origin)); 229 ->GetPermissionStatus(CONTENT_SETTINGS_TYPE_NOTIFICATIONS,
230 origin, origin)
231 .content_setting);
229 } 232 }
230 233
231 PushMessagingAppIdentifier GetAppIdentifierForServiceWorkerRegistration( 234 PushMessagingAppIdentifier GetAppIdentifierForServiceWorkerRegistration(
232 int64_t service_worker_registration_id, 235 int64_t service_worker_registration_id,
233 const GURL& origin) { 236 const GURL& origin) {
234 PushMessagingAppIdentifier app_identifier = 237 PushMessagingAppIdentifier app_identifier =
235 PushMessagingAppIdentifier::FindByServiceWorker( 238 PushMessagingAppIdentifier::FindByServiceWorker(
236 profile(), origin, service_worker_registration_id); 239 profile(), origin, service_worker_registration_id);
237 240
238 EXPECT_FALSE(app_identifier.is_null()); 241 EXPECT_FALSE(app_identifier.is_null());
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 message.sender_id = "1234567890"; 863 message.sender_id = "1234567890";
861 message.raw_data = "testdata"; 864 message.raw_data = "testdata";
862 message.decrypted = true; 865 message.decrypted = true;
863 push_service()->SetMessageCallbackForTesting(run_loop.QuitClosure()); 866 push_service()->SetMessageCallbackForTesting(run_loop.QuitClosure());
864 push_service()->OnMessage(app_identifier.app_id(), message); 867 push_service()->OnMessage(app_identifier.app_id(), message);
865 EXPECT_TRUE(push_message_listener.WaitUntilSatisfied()); 868 EXPECT_TRUE(push_message_listener.WaitUntilSatisfied());
866 run_loop.Run(); // Wait until the message is handled by push service. 869 run_loop.Run(); // Wait until the message is handled by push service.
867 } 870 }
868 871
869 } // namespace extensions 872 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698