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

Unified Diff: services/video_capture/video_capture_service_unittest.cc

Issue 2502483003: [Mojo Video Capture] Cleanup naming of classes/files in services/video_capture (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 | « services/video_capture/video_capture_service_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/video_capture/video_capture_service_unittest.cc
diff --git a/services/video_capture/video_capture_service_unittest.cc b/services/video_capture/video_capture_service_unittest.cc
deleted file mode 100644
index 4b1c7029d669bdbae95c95f2cc66733b312ac08e..0000000000000000000000000000000000000000
--- a/services/video_capture/video_capture_service_unittest.cc
+++ /dev/null
@@ -1,72 +0,0 @@
-// Copyright 2016 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/memory/ref_counted.h"
-#include "base/run_loop.h"
-#include "services/video_capture/public/interfaces/video_capture_device_factory.mojom.h"
-#include "services/video_capture/video_capture_service_test.h"
-
-using testing::Exactly;
-using testing::_;
-using testing::Invoke;
-using testing::InvokeWithoutArgs;
-
-namespace video_capture {
-
-class MockCreateDeviceProxyCallback {
- public:
- MOCK_METHOD1(Run, void(mojom::DeviceAccessResultCode result_code));
-};
-
-// Tests that an answer arrives from the service when calling
-// EnumerateDeviceDescriptors().
-TEST_F(VideoCaptureServiceTest, EnumerateDeviceDescriptorsCallbackArrives) {
- base::RunLoop wait_loop;
- EXPECT_CALL(descriptor_receiver_, OnEnumerateDeviceDescriptorsCallback(_))
- .Times(Exactly(1))
- .WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); }));
-
- factory_->EnumerateDeviceDescriptors(base::Bind(
- &MockDeviceDescriptorReceiver::OnEnumerateDeviceDescriptorsCallback,
- base::Unretained(&descriptor_receiver_)));
- wait_loop.Run();
-}
-
-TEST_F(VideoCaptureServiceTest, FakeDeviceFactoryEnumeratesOneDevice) {
- base::RunLoop wait_loop;
- size_t num_devices_enumerated = 0;
- EXPECT_CALL(descriptor_receiver_, OnEnumerateDeviceDescriptorsCallback(_))
- .Times(Exactly(1))
- .WillOnce(Invoke([&wait_loop, &num_devices_enumerated](
- const std::vector<media::VideoCaptureDeviceDescriptor>& descriptors) {
- num_devices_enumerated = descriptors.size();
- wait_loop.Quit();
- }));
-
- factory_->EnumerateDeviceDescriptors(base::Bind(
- &MockDeviceDescriptorReceiver::OnEnumerateDeviceDescriptorsCallback,
- base::Unretained(&descriptor_receiver_)));
- wait_loop.Run();
- ASSERT_EQ(1u, num_devices_enumerated);
-}
-
-// Tests that VideoCaptureDeviceFactory::CreateDeviceProxy() returns an error
-// code when trying to create a device for an invalid descriptor.
-TEST_F(VideoCaptureServiceTest, ErrorCodeOnCreateDeviceForInvalidDescriptor) {
- const std::string invalid_device_id = "invalid";
- base::RunLoop wait_loop;
- mojom::VideoCaptureDeviceProxyPtr fake_device_proxy;
- MockCreateDeviceProxyCallback create_device_proxy_callback;
- EXPECT_CALL(create_device_proxy_callback,
- Run(mojom::DeviceAccessResultCode::ERROR_DEVICE_NOT_FOUND))
- .Times(1)
- .WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); }));
- factory_->CreateDeviceProxy(
- invalid_device_id, mojo::GetProxy(&fake_device_proxy),
- base::Bind(&MockCreateDeviceProxyCallback::Run,
- base::Unretained(&create_device_proxy_callback)));
- wait_loop.Run();
-}
-
-} // namespace video_capture
« no previous file with comments | « services/video_capture/video_capture_service_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698