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

Unified Diff: content/browser/wake_lock/wake_lock_service_context_unittest.cc

Issue 1393203004: Reland of Wake Lock API implementation (Chromium part) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix presubmit errors Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/wake_lock/wake_lock_service_context_unittest.cc
diff --git a/content/browser/wake_lock/wake_lock_service_context_unittest.cc b/content/browser/wake_lock/wake_lock_service_context_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..49211583929943ca88e7e316eb0611299e35e810
--- /dev/null
+++ b/content/browser/wake_lock/wake_lock_service_context_unittest.cc
@@ -0,0 +1,96 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/wake_lock/wake_lock_service_context.h"
+
+#include "base/memory/scoped_ptr.h"
+#include "base/process/kill.h"
+#include "content/browser/web_contents/web_contents_impl.h"
+#include "content/public/browser/render_frame_host.h"
+#include "content/public/browser/render_process_host.h"
+#include "content/public/browser/web_contents.h"
+#include "content/public/test/test_renderer_host.h"
+
+namespace content {
+
+class RenderFrameHost;
+
+class WakeLockServiceContextTest : public RenderViewHostTestHarness {
+ protected:
+ void RequestWakeLock(RenderFrameHost* rfh) {
+ GetWakeLockServiceContext()->RequestWakeLock(rfh->GetProcess()->GetID(),
+ rfh->GetRoutingID());
+ }
+
+ void CancelWakeLock(RenderFrameHost* rfh) {
+ GetWakeLockServiceContext()->CancelWakeLock(rfh->GetProcess()->GetID(),
+ rfh->GetRoutingID());
+ }
+
+ WakeLockServiceContext* GetWakeLockServiceContext() {
+ WebContentsImpl* web_contents_impl =
+ static_cast<WebContentsImpl*>(web_contents());
+ return web_contents_impl->GetWakeLockServiceContext();
+ }
+
+ bool HasWakeLock() {
+ return GetWakeLockServiceContext()->HasWakeLockForTests();
+ }
+};
+
+TEST_F(WakeLockServiceContextTest, NoLockInitially) {
+ EXPECT_FALSE(HasWakeLock());
+}
+
+TEST_F(WakeLockServiceContextTest, LockUnlock) {
+ ASSERT_TRUE(GetWakeLockServiceContext());
+ ASSERT_TRUE(web_contents());
+ ASSERT_TRUE(main_rfh());
+
+ // Request wake lock for main frame.
+ RequestWakeLock(main_rfh());
+
+ // Should set the blocker.
+ EXPECT_TRUE(HasWakeLock());
+
+ // Remove wake lock request for main frame.
+ CancelWakeLock(main_rfh());
+
+ // Should remove the blocker.
+ EXPECT_FALSE(HasWakeLock());
+}
+
+TEST_F(WakeLockServiceContextTest, RenderFrameDeleted) {
+ ASSERT_TRUE(GetWakeLockServiceContext());
+ ASSERT_TRUE(web_contents());
+ ASSERT_TRUE(main_rfh());
+
+ // Request wake lock for main frame.
+ RequestWakeLock(main_rfh());
+
+ // Should set the blocker.
+ EXPECT_TRUE(HasWakeLock());
+
+ // Simulate render frame deletion.
+ GetWakeLockServiceContext()->RenderFrameDeleted(main_rfh());
+
+ // Should remove the blocker.
+ EXPECT_FALSE(HasWakeLock());
+}
+
+TEST_F(WakeLockServiceContextTest, NoLockForBogusFrameId) {
+ ASSERT_TRUE(GetWakeLockServiceContext());
+ ASSERT_TRUE(web_contents());
+
+ // Request wake lock for non-existent render frame id.
+ int non_existent_render_frame_id =
+ main_rfh()->GetProcess()->GetNextRoutingID();
+ GetWakeLockServiceContext()->RequestWakeLock(
+ main_rfh()->GetProcess()->GetID(), non_existent_render_frame_id);
+
+ // Should not set the blocker.
+ EXPECT_FALSE(HasWakeLock());
+}
+
+} // namespace content
« no previous file with comments | « content/browser/wake_lock/wake_lock_service_context.cc ('k') | content/browser/wake_lock/wake_lock_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698