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 "media/base/video_frame.h" | 7 #include "media/base/video_frame.h" |
8 #include "media/mojo/common/media_type_converters.h" | 8 #include "media/mojo/common/media_type_converters.h" |
9 #include "services/video_capture/public/cpp/capture_settings.h" | 9 #include "services/video_capture/public/cpp/capture_settings.h" |
10 #include "services/video_capture/public/interfaces/device_factory.mojom.h" | 10 #include "services/video_capture/public/interfaces/device_factory.mojom.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 media::VideoPixelFormat pixel_format; | 23 media::VideoPixelFormat pixel_format; |
24 media::VideoFrame::StorageType storage_type; | 24 media::VideoFrame::StorageType storage_type; |
25 bool is_mappable; | 25 bool is_mappable; |
26 base::TimeDelta timestamp; | 26 base::TimeDelta timestamp; |
27 }; | 27 }; |
28 | 28 |
29 } // anonymous namespace | 29 } // anonymous namespace |
30 | 30 |
31 namespace video_capture { | 31 namespace video_capture { |
32 | 32 |
33 TEST_F(FakeDeviceTest, FrameCallbacksArrive) { | 33 TEST_F(FakeDeviceTest, DISABLED_FrameCallbacksArrive) { |
34 base::RunLoop wait_loop; | 34 base::RunLoop wait_loop; |
35 const int kNumFramesToWaitFor = 3; | 35 const int kNumFramesToWaitFor = 3; |
36 int num_frames_arrived = 0; | 36 int num_frames_arrived = 0; |
37 mojom::ReceiverPtr receiver_proxy; | 37 mojom::ReceiverPtr receiver_proxy; |
38 MockReceiver receiver(mojo::GetProxy(&receiver_proxy)); | 38 MockReceiver receiver(mojo::GetProxy(&receiver_proxy)); |
39 EXPECT_CALL(receiver, OnIncomingCapturedVideoFramePtr(_)) | 39 EXPECT_CALL(receiver, OnIncomingCapturedVideoFramePtr(_)) |
40 .WillRepeatedly(InvokeWithoutArgs( | 40 .WillRepeatedly(InvokeWithoutArgs( |
41 [&wait_loop, &kNumFramesToWaitFor, &num_frames_arrived]() { | 41 [&wait_loop, &kNumFramesToWaitFor, &num_frames_arrived]() { |
42 num_frames_arrived += 1; | 42 num_frames_arrived += 1; |
43 if (num_frames_arrived >= kNumFramesToWaitFor) { | 43 if (num_frames_arrived >= kNumFramesToWaitFor) { |
44 wait_loop.Quit(); | 44 wait_loop.Quit(); |
45 } | 45 } |
46 })); | 46 })); |
47 | 47 |
48 fake_device_proxy_->Start(requestable_settings_, std::move(receiver_proxy)); | 48 fake_device_proxy_->Start(requestable_settings_, std::move(receiver_proxy)); |
49 wait_loop.Run(); | 49 wait_loop.Run(); |
50 } | 50 } |
51 | 51 |
52 // Tests that frames received from a fake capture device match the requested | 52 // Tests that frames received from a fake capture device match the requested |
53 // format and have increasing timestamps. | 53 // format and have increasing timestamps. |
54 TEST_F(FakeDeviceTest, ReceiveFramesFromFakeCaptureDevice) { | 54 TEST_F(FakeDeviceTest, DISABLED_ReceiveFramesFromFakeCaptureDevice) { |
55 base::RunLoop wait_loop; | 55 base::RunLoop wait_loop; |
56 mojom::ReceiverPtr receiver_proxy; | 56 mojom::ReceiverPtr receiver_proxy; |
57 constexpr int num_frames_to_receive = 2; | 57 constexpr int num_frames_to_receive = 2; |
58 FrameInfo received_frame_infos[num_frames_to_receive]; | 58 FrameInfo received_frame_infos[num_frames_to_receive]; |
59 int received_frame_count = 0; | 59 int received_frame_count = 0; |
60 MockReceiver receiver(mojo::GetProxy(&receiver_proxy)); | 60 MockReceiver receiver(mojo::GetProxy(&receiver_proxy)); |
61 EXPECT_CALL(receiver, OnIncomingCapturedVideoFramePtr(_)) | 61 EXPECT_CALL(receiver, OnIncomingCapturedVideoFramePtr(_)) |
62 .WillRepeatedly(Invoke( | 62 .WillRepeatedly(Invoke( |
63 [&received_frame_infos, &received_frame_count, &num_frames_to_receive, | 63 [&received_frame_infos, &received_frame_count, &num_frames_to_receive, |
64 &wait_loop](const media::mojom::VideoFramePtr* frame) { | 64 &wait_loop](const media::mojom::VideoFramePtr* frame) { |
(...skipping 26 matching lines...) Expand all Loading... |
91 EXPECT_TRUE(frame_info.is_mappable); | 91 EXPECT_TRUE(frame_info.is_mappable); |
92 EXPECT_EQ(requestable_settings_.format.frame_size, frame_info.size); | 92 EXPECT_EQ(requestable_settings_.format.frame_size, frame_info.size); |
93 // Timestamps are expected to increase | 93 // Timestamps are expected to increase |
94 if (i > 0) | 94 if (i > 0) |
95 EXPECT_GT(frame_info.timestamp, previous_timestamp); | 95 EXPECT_GT(frame_info.timestamp, previous_timestamp); |
96 previous_timestamp = frame_info.timestamp; | 96 previous_timestamp = frame_info.timestamp; |
97 } | 97 } |
98 } | 98 } |
99 | 99 |
100 } // namespace video_capture | 100 } // namespace video_capture |
OLD | NEW |