| 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 "base/test/mock_callback.h" | 7 #include "base/test/mock_callback.h" |
| 8 #include "services/video_capture/public/interfaces/device_factory.mojom.h" | 8 #include "services/video_capture/public/interfaces/device_factory.mojom.h" |
| 9 #include "services/video_capture/test/service_test.h" | 9 #include "services/video_capture/test/service_test.h" |
| 10 | 10 |
| 11 using testing::Exactly; | 11 using testing::Exactly; |
| 12 using testing::_; | 12 using testing::_; |
| 13 using testing::Invoke; | 13 using testing::Invoke; |
| 14 using testing::InvokeWithoutArgs; | 14 using testing::InvokeWithoutArgs; |
| 15 | 15 |
| 16 namespace video_capture { | 16 namespace video_capture { |
| 17 | 17 |
| 18 // This alias ensures test output is easily attributed to this service's tests. | 18 // This alias ensures test output is easily attributed to this service's tests. |
| 19 // TODO(rockot/chfremer): Consider just renaming the type. | 19 // TODO(rockot/chfremer): Consider just renaming the type. |
| 20 using VideoCaptureServiceTest = ServiceTest; | 20 using VideoCaptureServiceTest = ServiceTest; |
| 21 | 21 |
| 22 // Tests that an answer arrives from the service when calling | 22 // Tests that an answer arrives from the service when calling |
| 23 // GetDeviceInfos(). | 23 // GetDeviceInfos(). |
| 24 TEST_F(VideoCaptureServiceTest, DISABLED_GetDeviceInfosCallbackArrives) { | 24 TEST_F(VideoCaptureServiceTest, GetDeviceInfosCallbackArrives) { |
| 25 base::RunLoop wait_loop; | 25 base::RunLoop wait_loop; |
| 26 EXPECT_CALL(device_info_receiver_, Run(_)) | 26 EXPECT_CALL(device_info_receiver_, Run(_)) |
| 27 .Times(Exactly(1)) | 27 .Times(Exactly(1)) |
| 28 .WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); })); | 28 .WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); })); |
| 29 | 29 |
| 30 factory_->GetDeviceInfos(device_info_receiver_.Get()); | 30 factory_->GetDeviceInfos(device_info_receiver_.Get()); |
| 31 wait_loop.Run(); | 31 wait_loop.Run(); |
| 32 } | 32 } |
| 33 | 33 |
| 34 TEST_F(VideoCaptureServiceTest, DISABLED_FakeDeviceFactoryEnumeratesOneDevice) { | 34 TEST_F(VideoCaptureServiceTest, FakeDeviceFactoryEnumeratesOneDevice) { |
| 35 base::RunLoop wait_loop; | 35 base::RunLoop wait_loop; |
| 36 size_t num_devices_enumerated = 0; | 36 size_t num_devices_enumerated = 0; |
| 37 EXPECT_CALL(device_info_receiver_, Run(_)) | 37 EXPECT_CALL(device_info_receiver_, Run(_)) |
| 38 .Times(Exactly(1)) | 38 .Times(Exactly(1)) |
| 39 .WillOnce( | 39 .WillOnce( |
| 40 Invoke([&wait_loop, &num_devices_enumerated]( | 40 Invoke([&wait_loop, &num_devices_enumerated]( |
| 41 const std::vector<media::VideoCaptureDeviceInfo>& infos) { | 41 const std::vector<media::VideoCaptureDeviceInfo>& infos) { |
| 42 num_devices_enumerated = infos.size(); | 42 num_devices_enumerated = infos.size(); |
| 43 wait_loop.Quit(); | 43 wait_loop.Quit(); |
| 44 })); | 44 })); |
| 45 | 45 |
| 46 factory_->GetDeviceInfos(device_info_receiver_.Get()); | 46 factory_->GetDeviceInfos(device_info_receiver_.Get()); |
| 47 wait_loop.Run(); | 47 wait_loop.Run(); |
| 48 ASSERT_EQ(1u, num_devices_enumerated); | 48 ASSERT_EQ(1u, num_devices_enumerated); |
| 49 } | 49 } |
| 50 | 50 |
| 51 // Tests that VideoCaptureDeviceFactory::CreateDeviceProxy() returns an error | 51 // Tests that VideoCaptureDeviceFactory::CreateDeviceProxy() returns an error |
| 52 // code when trying to create a device for an invalid descriptor. | 52 // code when trying to create a device for an invalid descriptor. |
| 53 TEST_F(VideoCaptureServiceTest, | 53 TEST_F(VideoCaptureServiceTest, ErrorCodeOnCreateDeviceForInvalidDescriptor) { |
| 54 DISABLED_ErrorCodeOnCreateDeviceForInvalidDescriptor) { | |
| 55 const std::string invalid_device_id = "invalid"; | 54 const std::string invalid_device_id = "invalid"; |
| 56 base::RunLoop wait_loop; | 55 base::RunLoop wait_loop; |
| 57 mojom::DevicePtr fake_device_proxy; | 56 mojom::DevicePtr fake_device_proxy; |
| 58 base::MockCallback<mojom::DeviceFactory::CreateDeviceCallback> | 57 base::MockCallback<mojom::DeviceFactory::CreateDeviceCallback> |
| 59 create_device_proxy_callback; | 58 create_device_proxy_callback; |
| 60 EXPECT_CALL(create_device_proxy_callback, | 59 EXPECT_CALL(create_device_proxy_callback, |
| 61 Run(mojom::DeviceAccessResultCode::ERROR_DEVICE_NOT_FOUND)) | 60 Run(mojom::DeviceAccessResultCode::ERROR_DEVICE_NOT_FOUND)) |
| 62 .Times(1) | 61 .Times(1) |
| 63 .WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); })); | 62 .WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); })); |
| 63 factory_->GetDeviceInfos(device_info_receiver_.Get()); |
| 64 factory_->CreateDevice(invalid_device_id, | 64 factory_->CreateDevice(invalid_device_id, |
| 65 mojo::MakeRequest(&fake_device_proxy), | 65 mojo::MakeRequest(&fake_device_proxy), |
| 66 create_device_proxy_callback.Get()); | 66 create_device_proxy_callback.Get()); |
| 67 wait_loop.Run(); | 67 wait_loop.Run(); |
| 68 } | 68 } |
| 69 | 69 |
| 70 } // namespace video_capture | 70 } // namespace video_capture |
| OLD | NEW |