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 RtpSender using only the public interface, and | 22 // This test uses an individual RtpSender using only the public interface, and |
23 // verifies that its behaves as designed at an API level. Also tests that | 23 // verifies that its 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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 cricket::MEDIA_TYPE_AUDIO, rtp_transport_.get()); | 658 cricket::MEDIA_TYPE_AUDIO, rtp_transport_.get()); |
659 auto video_sender_result = ortc_factory_->CreateRtpSender( | 659 auto video_sender_result = ortc_factory_->CreateRtpSender( |
660 CreateVideoTrack("video"), rtp_transport_.get()); | 660 CreateVideoTrack("video"), rtp_transport_.get()); |
661 auto audio_sender = audio_sender_result.MoveValue(); | 661 auto audio_sender = audio_sender_result.MoveValue(); |
662 auto video_sender = video_sender_result.MoveValue(); | 662 auto video_sender = video_sender_result.MoveValue(); |
663 EXPECT_EQ(cricket::MEDIA_TYPE_AUDIO, audio_sender->GetKind()); | 663 EXPECT_EQ(cricket::MEDIA_TYPE_AUDIO, audio_sender->GetKind()); |
664 EXPECT_EQ(cricket::MEDIA_TYPE_VIDEO, video_sender->GetKind()); | 664 EXPECT_EQ(cricket::MEDIA_TYPE_VIDEO, video_sender->GetKind()); |
665 } | 665 } |
666 | 666 |
667 } // namespace webrtc | 667 } // namespace webrtc |
OLD | NEW |