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

Unified Diff: media/base/user_input_monitor_unittest.cc

Issue 23702008: Adds the UserInputMonitor implementation for Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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
« no previous file with comments | « media/base/user_input_monitor_mac.cc ('k') | media/base/user_input_monitor_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/user_input_monitor_unittest.cc
diff --git a/media/base/user_input_monitor_unittest.cc b/media/base/user_input_monitor_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4874a10eb82ffe2c822fa964e6cac70e1265f03d
--- /dev/null
+++ b/media/base/user_input_monitor_unittest.cc
@@ -0,0 +1,78 @@
+// Copyright 2013 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 "base/basictypes.h"
+#include "base/logging.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/message_loop/message_loop.h"
+#include "base/run_loop.h"
+#include "media/base/keyboard_event_counter.h"
+#include "media/base/user_input_monitor.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "third_party/skia/include/core/SkPoint.h"
+
+namespace media {
+
+class MockMouseListener : public UserInputMonitor::MouseEventListener {
+ public:
+ MOCK_METHOD1(OnMouseMoved, void(const SkIPoint& position));
+
+ virtual ~MockMouseListener() {}
+};
+
+#if defined(OS_LINUX) || defined(OS_WIN)
+TEST(UserInputMonitorTest, KeyPressCounter) {
+ KeyboardEventCounter counter;
+
+ EXPECT_EQ(0u, counter.GetKeyPressCount());
+
+ counter.OnKeyboardEvent(ui::ET_KEY_PRESSED, ui::VKEY_0);
+ EXPECT_EQ(1u, counter.GetKeyPressCount());
+
+ // Holding the same key without releasing it does not increase the count.
+ counter.OnKeyboardEvent(ui::ET_KEY_PRESSED, ui::VKEY_0);
+ EXPECT_EQ(1u, counter.GetKeyPressCount());
+
+ // Releasing the key does not affect the total count.
+ counter.OnKeyboardEvent(ui::ET_KEY_RELEASED, ui::VKEY_0);
+ EXPECT_EQ(1u, counter.GetKeyPressCount());
+
+ counter.OnKeyboardEvent(ui::ET_KEY_PRESSED, ui::VKEY_0);
+ counter.OnKeyboardEvent(ui::ET_KEY_RELEASED, ui::VKEY_0);
+ EXPECT_EQ(2u, counter.GetKeyPressCount());
+}
+#endif // defined(OS_LINUX) || defined(OS_WIN)
+
+TEST(UserInputMonitorTest, CreatePlatformSpecific) {
+#if defined(OS_LINUX)
+ base::MessageLoop message_loop(base::MessageLoop::TYPE_IO);
+#else
+ base::MessageLoop message_loop(base::MessageLoop::TYPE_UI);
+#endif // defined(OS_LINUX)
+
+ base::RunLoop run_loop;
+ scoped_ptr<UserInputMonitor> monitor = UserInputMonitor::Create(
+ message_loop.message_loop_proxy(), message_loop.message_loop_proxy());
+
+ if (!monitor)
+ return;
+
+ MockMouseListener listener;
+ // Ignore any callbacks.
+ EXPECT_CALL(listener, OnMouseMoved(testing::_)).Times(testing::AnyNumber());
+
+#if !defined(OS_MACOSX)
+ monitor->AddMouseListener(&listener);
+ monitor->RemoveMouseListener(&listener);
+#endif // !define(OS_MACOSX)
+
+ monitor->EnableKeyPressMonitoring();
+ monitor->DisableKeyPressMonitoring();
+
+ monitor.reset();
+ run_loop.RunUntilIdle();
+}
+
+} // namespace media
« no previous file with comments | « media/base/user_input_monitor_mac.cc ('k') | media/base/user_input_monitor_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698