OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include <memory> | 11 #include <memory> |
12 | 12 |
13 #include "webrtc/base/gunit.h" | |
14 #include "webrtc/media/base/fakemediaengine.h" | 13 #include "webrtc/media/base/fakemediaengine.h" |
15 #include "webrtc/ortc/ortcfactory.h" | 14 #include "webrtc/ortc/ortcfactory.h" |
16 #include "webrtc/ortc/testrtpparameters.h" | 15 #include "webrtc/ortc/testrtpparameters.h" |
17 #include "webrtc/p2p/base/fakepackettransport.h" | 16 #include "webrtc/p2p/base/fakepackettransport.h" |
18 #include "webrtc/pc/test/fakevideotracksource.h" | 17 #include "webrtc/pc/test/fakevideotracksource.h" |
| 18 #include "webrtc/rtc_base/gunit.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 | 21 |
22 // This test uses an individual RtpReceiver using only the public interface, | 22 // This test uses an individual RtpReceiver using only the public interface, |
23 // and verifies that it behaves as designed at an API level. Also tests that | 23 // and verifies that it behaves as designed at an API level. Also tests that |
24 // parameters are applied to the audio/video engines as expected. Network and | 24 // parameters are applied to the audio/video engines as expected. Network and |
25 // media interfaces are faked to isolate what's being tested. | 25 // media interfaces are faked to isolate what's being tested. |
26 // | 26 // |
27 // This test shouldn't result any any actual media being sent. That sort of | 27 // This test shouldn't result any any actual media being sent. That sort of |
28 // test should go in ortcfactory_integrationtest.cc. | 28 // test should go in ortcfactory_integrationtest.cc. |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 cricket::MEDIA_TYPE_AUDIO, rtp_transport_.get()); | 538 cricket::MEDIA_TYPE_AUDIO, rtp_transport_.get()); |
539 auto video_receiver_result = ortc_factory_->CreateRtpReceiver( | 539 auto video_receiver_result = ortc_factory_->CreateRtpReceiver( |
540 cricket::MEDIA_TYPE_VIDEO, rtp_transport_.get()); | 540 cricket::MEDIA_TYPE_VIDEO, rtp_transport_.get()); |
541 auto audio_receiver = audio_receiver_result.MoveValue(); | 541 auto audio_receiver = audio_receiver_result.MoveValue(); |
542 auto video_receiver = video_receiver_result.MoveValue(); | 542 auto video_receiver = video_receiver_result.MoveValue(); |
543 EXPECT_EQ(cricket::MEDIA_TYPE_AUDIO, audio_receiver->GetKind()); | 543 EXPECT_EQ(cricket::MEDIA_TYPE_AUDIO, audio_receiver->GetKind()); |
544 EXPECT_EQ(cricket::MEDIA_TYPE_VIDEO, video_receiver->GetKind()); | 544 EXPECT_EQ(cricket::MEDIA_TYPE_VIDEO, video_receiver->GetKind()); |
545 } | 545 } |
546 | 546 |
547 } // namespace webrtc | 547 } // namespace webrtc |
OLD | NEW |