Implement getMediaDevices.
[chromium-blink-merge.git] / content / browser / mach_broker_mac_unittest.cc
bloba7eca4fd2f4ff770d181bfec2598d224d42dc7af
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/browser/mach_broker_mac.h"
7 #include "base/synchronization/lock.h"
8 #include "testing/gtest/include/gtest/gtest.h"
10 namespace content {
12 class MachBrokerTest : public testing::Test {
13 public:
14 // Helper function to acquire/release locks and call |PlaceholderForPid()|.
15 void AddPlaceholderForPid(base::ProcessHandle pid) {
16 base::AutoLock lock(broker_.GetLock());
17 broker_.AddPlaceholderForPid(pid);
20 void InvalidatePid(base::ProcessHandle pid) {
21 broker_.InvalidatePid(pid);
24 // Helper function to acquire/release locks and call |FinalizePid()|.
25 void FinalizePid(base::ProcessHandle pid,
26 mach_port_t task_port) {
27 base::AutoLock lock(broker_.GetLock());
28 broker_.FinalizePid(pid, task_port);
31 protected:
32 MachBroker broker_;
35 TEST_F(MachBrokerTest, Locks) {
36 // Acquire and release the locks. Nothing bad should happen.
37 base::AutoLock lock(broker_.GetLock());
40 TEST_F(MachBrokerTest, AddPlaceholderAndFinalize) {
41 // Add a placeholder for PID 1.
42 AddPlaceholderForPid(1);
43 EXPECT_EQ(0u, broker_.TaskForPid(1));
45 // Finalize PID 1.
46 FinalizePid(1, 100u);
47 EXPECT_EQ(100u, broker_.TaskForPid(1));
49 // Should be no entry for PID 2.
50 EXPECT_EQ(0u, broker_.TaskForPid(2));
53 TEST_F(MachBrokerTest, Invalidate) {
54 AddPlaceholderForPid(1);
55 FinalizePid(1, 100u);
57 EXPECT_EQ(100u, broker_.TaskForPid(1));
58 InvalidatePid(1u);
59 EXPECT_EQ(0u, broker_.TaskForPid(1));
62 TEST_F(MachBrokerTest, FinalizeUnknownPid) {
63 // Finalizing an entry for an unknown pid should not add it to the map.
64 FinalizePid(1u, 100u);
65 EXPECT_EQ(0u, broker_.TaskForPid(1u));
68 } // namespace content