OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "base/memory/ref_counted.h" | 5 #include "base/memory/ref_counted.h" |
6 #include "base/run_loop.h" | 6 #include "base/run_loop.h" |
7 #include "services/shell/public/cpp/service_test.h" | 7 #include "services/shell/public/cpp/service_test.h" |
8 #include "services/video_capture/public/interfaces/video_capture_device_factory.
mojom.h" | 8 #include "services/video_capture/public/interfaces/video_capture_device_factory.
mojom.h" |
| 9 #include "services/video_capture/public/interfaces/video_capture_service.mojom.h
" |
9 #include "testing/gmock/include/gmock/gmock.h" | 10 #include "testing/gmock/include/gmock/gmock.h" |
10 | 11 |
11 using testing::Exactly; | 12 using testing::Exactly; |
12 using testing::_; | 13 using testing::_; |
| 14 using testing::Invoke; |
| 15 using testing::InvokeWithoutArgs; |
13 | 16 |
14 namespace video_capture { | 17 namespace video_capture { |
15 | 18 |
16 ACTION_P(RunClosure, closure) { | 19 class MockDeviceDescriptorReceiver { |
17 closure.Run(); | |
18 } | |
19 | |
20 class MockClient { | |
21 public: | 20 public: |
22 // Use forwarding method to work around gmock not supporting move-only types. | 21 // Use forwarding method to work around gmock not supporting move-only types. |
23 void HandleEnumerateDeviceDescriptorsCallback( | 22 void HandleEnumerateDeviceDescriptorsCallback( |
24 std::vector<mojom::VideoCaptureDeviceDescriptorPtr> descriptors) { | 23 std::vector<mojom::VideoCaptureDeviceDescriptorPtr> descriptors) { |
25 OnEnumerateDeviceDescriptorsCallback(descriptors); | 24 OnEnumerateDeviceDescriptorsCallback(descriptors); |
26 } | 25 } |
27 | 26 |
28 MOCK_METHOD1( | 27 MOCK_METHOD1( |
29 OnEnumerateDeviceDescriptorsCallback, | 28 OnEnumerateDeviceDescriptorsCallback, |
30 void(const std::vector<mojom::VideoCaptureDeviceDescriptorPtr>&)); | 29 void(const std::vector<mojom::VideoCaptureDeviceDescriptorPtr>&)); |
31 }; | 30 }; |
32 | 31 |
33 class VideoCaptureServiceTest : public shell::test::ServiceTest { | 32 class VideoCaptureServiceTest : public shell::test::ServiceTest { |
34 public: | 33 public: |
35 VideoCaptureServiceTest() | 34 VideoCaptureServiceTest() |
36 : shell::test::ServiceTest("exe:video_capture_unittests") {} | 35 : shell::test::ServiceTest("exe:video_capture_unittests") {} |
37 ~VideoCaptureServiceTest() override {} | 36 ~VideoCaptureServiceTest() override {} |
38 | 37 |
39 void SetUp() override { | 38 void SetUp() override { |
40 ServiceTest::SetUp(); | 39 ServiceTest::SetUp(); |
41 connector()->ConnectToInterface("mojo:video_capture", &factory_); | 40 connector()->ConnectToInterface("mojo:video_capture", &service_); |
| 41 service_->ConnectToFakeDeviceFactory(mojo::GetProxy(&factory_)); |
42 } | 42 } |
43 | 43 |
44 protected: | 44 protected: |
| 45 mojom::VideoCaptureServicePtr service_; |
45 mojom::VideoCaptureDeviceFactoryPtr factory_; | 46 mojom::VideoCaptureDeviceFactoryPtr factory_; |
46 MockClient client_; | 47 MockDeviceDescriptorReceiver descriptor_receiver_; |
47 }; | 48 }; |
48 | 49 |
49 // Tests that an answer arrives from the service when calling | 50 // Tests that an answer arrives from the service when calling |
50 // EnumerateDeviceDescriptors(). | 51 // EnumerateDeviceDescriptors(). |
51 TEST_F(VideoCaptureServiceTest, EnumerateDeviceDescriptorsCallbackArrives) { | 52 TEST_F(VideoCaptureServiceTest, EnumerateDeviceDescriptorsCallbackArrives) { |
52 base::RunLoop wait_loop; | 53 base::RunLoop wait_loop; |
53 EXPECT_CALL(client_, OnEnumerateDeviceDescriptorsCallback(_)) | 54 EXPECT_CALL(descriptor_receiver_, OnEnumerateDeviceDescriptorsCallback(_)) |
54 .Times(Exactly(1)) | 55 .Times(Exactly(1)) |
55 .WillOnce(RunClosure(wait_loop.QuitClosure())); | 56 .WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); })); |
56 | 57 |
57 factory_->EnumerateDeviceDescriptors( | 58 factory_->EnumerateDeviceDescriptors(base::Bind( |
58 base::Bind(&MockClient::HandleEnumerateDeviceDescriptorsCallback, | 59 &MockDeviceDescriptorReceiver::HandleEnumerateDeviceDescriptorsCallback, |
59 base::Unretained(&client_))); | 60 base::Unretained(&descriptor_receiver_))); |
60 wait_loop.Run(); | 61 wait_loop.Run(); |
61 } | 62 } |
62 | 63 |
| 64 TEST_F(VideoCaptureServiceTest, FakeDeviceFactoryEnumeratesOneDevice) { |
| 65 base::RunLoop wait_loop; |
| 66 size_t num_devices_enumerated = 0; |
| 67 EXPECT_CALL(descriptor_receiver_, OnEnumerateDeviceDescriptorsCallback(_)) |
| 68 .Times(Exactly(1)) |
| 69 .WillOnce(Invoke([&wait_loop, &num_devices_enumerated]( |
| 70 const std::vector<mojom::VideoCaptureDeviceDescriptorPtr>& |
| 71 descriptors) { |
| 72 num_devices_enumerated = descriptors.size(); |
| 73 wait_loop.Quit(); |
| 74 })); |
| 75 |
| 76 factory_->EnumerateDeviceDescriptors(base::Bind( |
| 77 &MockDeviceDescriptorReceiver::HandleEnumerateDeviceDescriptorsCallback, |
| 78 base::Unretained(&descriptor_receiver_))); |
| 79 wait_loop.Run(); |
| 80 ASSERT_EQ(1u, num_devices_enumerated); |
| 81 } |
| 82 |
63 } // namespace video_capture | 83 } // namespace video_capture |
OLD | NEW |