wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 1 | /* |
kjellander | b24317b | 2016-02-10 07:54:43 -0800 | [diff] [blame] | 2 | * Copyright 2013 The WebRTC project authors. All Rights Reserved. |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 3 | * |
kjellander | b24317b | 2016-02-10 07:54:43 -0800 | [diff] [blame] | 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Steve Anton | 36b29d1 | 2017-10-30 09:57:42 -0700 | [diff] [blame] | 11 | #include <string> |
kwiberg | 0eb15ed | 2015-12-17 03:04:15 -0800 | [diff] [blame] | 12 | #include <utility> |
Steve Anton | 191c39f | 2018-01-24 19:35:55 -0800 | [diff] [blame^] | 13 | #include <vector> |
kwiberg | 0eb15ed | 2015-12-17 03:04:15 -0800 | [diff] [blame] | 14 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 15 | #include "p2p/base/fakeportallocator.h" |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 16 | #include "pc/sdputils.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 17 | #include "pc/test/fakeperiodicvideocapturer.h" |
| 18 | #include "pc/test/fakertccertificategenerator.h" |
| 19 | #include "pc/test/mockpeerconnectionobservers.h" |
| 20 | #include "pc/test/peerconnectiontestwrapper.h" |
| 21 | #include "rtc_base/gunit.h" |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 22 | |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 23 | using webrtc::FakeConstraints; |
| 24 | using webrtc::FakeVideoTrackRenderer; |
| 25 | using webrtc::IceCandidateInterface; |
| 26 | using webrtc::MediaConstraintsInterface; |
| 27 | using webrtc::MediaStreamInterface; |
Steve Anton | 191c39f | 2018-01-24 19:35:55 -0800 | [diff] [blame^] | 28 | using webrtc::MediaStreamTrackInterface; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 29 | using webrtc::MockSetSessionDescriptionObserver; |
| 30 | using webrtc::PeerConnectionInterface; |
Steve Anton | 191c39f | 2018-01-24 19:35:55 -0800 | [diff] [blame^] | 31 | using webrtc::RtpReceiverInterface; |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 32 | using webrtc::SdpType; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 33 | using webrtc::SessionDescriptionInterface; |
| 34 | using webrtc::VideoTrackInterface; |
| 35 | |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 36 | namespace { |
| 37 | const char kStreamLabelBase[] = "stream_label"; |
| 38 | const char kVideoTrackLabelBase[] = "video_track"; |
| 39 | const char kAudioTrackLabelBase[] = "audio_track"; |
| 40 | constexpr int kMaxWait = 10000; |
| 41 | constexpr int kTestAudioFrameCount = 3; |
| 42 | constexpr int kTestVideoFrameCount = 3; |
| 43 | } // namespace |
| 44 | |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 45 | void PeerConnectionTestWrapper::Connect(PeerConnectionTestWrapper* caller, |
| 46 | PeerConnectionTestWrapper* callee) { |
| 47 | caller->SignalOnIceCandidateReady.connect( |
| 48 | callee, &PeerConnectionTestWrapper::AddIceCandidate); |
| 49 | callee->SignalOnIceCandidateReady.connect( |
| 50 | caller, &PeerConnectionTestWrapper::AddIceCandidate); |
| 51 | |
| 52 | caller->SignalOnSdpReady.connect( |
| 53 | callee, &PeerConnectionTestWrapper::ReceiveOfferSdp); |
| 54 | callee->SignalOnSdpReady.connect( |
| 55 | caller, &PeerConnectionTestWrapper::ReceiveAnswerSdp); |
| 56 | } |
| 57 | |
danilchap | e9021a3 | 2016-05-17 01:52:02 -0700 | [diff] [blame] | 58 | PeerConnectionTestWrapper::PeerConnectionTestWrapper( |
| 59 | const std::string& name, |
| 60 | rtc::Thread* network_thread, |
| 61 | rtc::Thread* worker_thread) |
| 62 | : name_(name), |
| 63 | network_thread_(network_thread), |
| 64 | worker_thread_(worker_thread) {} |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 65 | |
| 66 | PeerConnectionTestWrapper::~PeerConnectionTestWrapper() {} |
| 67 | |
| 68 | bool PeerConnectionTestWrapper::CreatePc( |
zhihuang | 9763d56 | 2016-08-05 11:14:50 -0700 | [diff] [blame] | 69 | const MediaConstraintsInterface* constraints, |
kwiberg | 9e5b11e | 2017-04-19 03:47:57 -0700 | [diff] [blame] | 70 | const webrtc::PeerConnectionInterface::RTCConfiguration& config, |
| 71 | rtc::scoped_refptr<webrtc::AudioEncoderFactory> audio_encoder_factory, |
| 72 | rtc::scoped_refptr<webrtc::AudioDecoderFactory> audio_decoder_factory) { |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 73 | std::unique_ptr<cricket::PortAllocator> port_allocator( |
danilchap | e9021a3 | 2016-05-17 01:52:02 -0700 | [diff] [blame] | 74 | new cricket::FakePortAllocator(network_thread_, nullptr)); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 75 | |
deadbeef | ee8c6d3 | 2015-08-13 14:27:18 -0700 | [diff] [blame] | 76 | fake_audio_capture_module_ = FakeAudioCaptureModule::Create(); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 77 | if (fake_audio_capture_module_ == NULL) { |
| 78 | return false; |
| 79 | } |
| 80 | |
| 81 | peer_connection_factory_ = webrtc::CreatePeerConnectionFactory( |
danilchap | e9021a3 | 2016-05-17 01:52:02 -0700 | [diff] [blame] | 82 | network_thread_, worker_thread_, rtc::Thread::Current(), |
kwiberg | 9e5b11e | 2017-04-19 03:47:57 -0700 | [diff] [blame] | 83 | fake_audio_capture_module_, audio_encoder_factory, audio_decoder_factory, |
| 84 | nullptr, nullptr); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 85 | if (!peer_connection_factory_) { |
| 86 | return false; |
| 87 | } |
| 88 | |
Henrik Boström | d79599d | 2016-06-01 13:58:50 +0200 | [diff] [blame] | 89 | std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator( |
deadbeef | 1b54a5f | 2017-01-23 19:39:57 -0800 | [diff] [blame] | 90 | new FakeRTCCertificateGenerator()); |
Henrik Boström | d79599d | 2016-06-01 13:58:50 +0200 | [diff] [blame] | 91 | peer_connection_ = peer_connection_factory_->CreatePeerConnection( |
| 92 | config, constraints, std::move(port_allocator), std::move(cert_generator), |
| 93 | this); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 94 | |
| 95 | return peer_connection_.get() != NULL; |
| 96 | } |
| 97 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 98 | rtc::scoped_refptr<webrtc::DataChannelInterface> |
jiayl@webrtc.org | 1a6c628 | 2014-06-12 21:59:29 +0000 | [diff] [blame] | 99 | PeerConnectionTestWrapper::CreateDataChannel( |
| 100 | const std::string& label, |
| 101 | const webrtc::DataChannelInit& init) { |
| 102 | return peer_connection_->CreateDataChannel(label, &init); |
| 103 | } |
| 104 | |
Steve Anton | 191c39f | 2018-01-24 19:35:55 -0800 | [diff] [blame^] | 105 | void PeerConnectionTestWrapper::OnAddTrack( |
| 106 | rtc::scoped_refptr<RtpReceiverInterface> receiver, |
| 107 | const std::vector<rtc::scoped_refptr<MediaStreamInterface>>& streams) { |
| 108 | RTC_LOG(LS_INFO) << "PeerConnectionTestWrapper " << name_ << ": OnAddTrack"; |
| 109 | if (receiver->track()->kind() == MediaStreamTrackInterface::kVideoKind) { |
| 110 | auto* video_track = |
| 111 | static_cast<VideoTrackInterface*>(receiver->track().get()); |
| 112 | renderer_ = rtc::MakeUnique<FakeVideoTrackRenderer>(video_track); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 113 | } |
| 114 | } |
| 115 | |
| 116 | void PeerConnectionTestWrapper::OnIceCandidate( |
| 117 | const IceCandidateInterface* candidate) { |
| 118 | std::string sdp; |
| 119 | EXPECT_TRUE(candidate->ToString(&sdp)); |
| 120 | // Give the user a chance to modify sdp for testing. |
| 121 | SignalOnIceCandidateCreated(&sdp); |
| 122 | SignalOnIceCandidateReady(candidate->sdp_mid(), candidate->sdp_mline_index(), |
| 123 | sdp); |
| 124 | } |
| 125 | |
jiayl@webrtc.org | 1a6c628 | 2014-06-12 21:59:29 +0000 | [diff] [blame] | 126 | void PeerConnectionTestWrapper::OnDataChannel( |
Taylor Brandstetter | 98cde26 | 2016-05-31 13:02:21 -0700 | [diff] [blame] | 127 | rtc::scoped_refptr<webrtc::DataChannelInterface> data_channel) { |
jiayl@webrtc.org | 1a6c628 | 2014-06-12 21:59:29 +0000 | [diff] [blame] | 128 | SignalOnDataChannel(data_channel); |
| 129 | } |
| 130 | |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 131 | void PeerConnectionTestWrapper::OnSuccess(SessionDescriptionInterface* desc) { |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 132 | // This callback should take the ownership of |desc|. |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 133 | std::unique_ptr<SessionDescriptionInterface> owned_desc(desc); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 134 | std::string sdp; |
| 135 | EXPECT_TRUE(desc->ToString(&sdp)); |
| 136 | |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 137 | RTC_LOG(LS_INFO) << "PeerConnectionTestWrapper " << name_ << ": " |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 138 | << webrtc::SdpTypeToString(desc->GetType()) |
| 139 | << " sdp created: " << sdp; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 140 | |
| 141 | // Give the user a chance to modify sdp for testing. |
| 142 | SignalOnSdpCreated(&sdp); |
| 143 | |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 144 | SetLocalDescription(desc->GetType(), sdp); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 145 | |
| 146 | SignalOnSdpReady(sdp); |
| 147 | } |
| 148 | |
| 149 | void PeerConnectionTestWrapper::CreateOffer( |
| 150 | const MediaConstraintsInterface* constraints) { |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 151 | RTC_LOG(LS_INFO) << "PeerConnectionTestWrapper " << name_ << ": CreateOffer."; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 152 | peer_connection_->CreateOffer(this, constraints); |
| 153 | } |
| 154 | |
| 155 | void PeerConnectionTestWrapper::CreateAnswer( |
| 156 | const MediaConstraintsInterface* constraints) { |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 157 | RTC_LOG(LS_INFO) << "PeerConnectionTestWrapper " << name_ |
| 158 | << ": CreateAnswer."; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 159 | peer_connection_->CreateAnswer(this, constraints); |
| 160 | } |
| 161 | |
| 162 | void PeerConnectionTestWrapper::ReceiveOfferSdp(const std::string& sdp) { |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 163 | SetRemoteDescription(SdpType::kOffer, sdp); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 164 | CreateAnswer(NULL); |
| 165 | } |
| 166 | |
| 167 | void PeerConnectionTestWrapper::ReceiveAnswerSdp(const std::string& sdp) { |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 168 | SetRemoteDescription(SdpType::kAnswer, sdp); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 169 | } |
| 170 | |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 171 | void PeerConnectionTestWrapper::SetLocalDescription(SdpType type, |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 172 | const std::string& sdp) { |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 173 | RTC_LOG(LS_INFO) << "PeerConnectionTestWrapper " << name_ |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 174 | << ": SetLocalDescription " << webrtc::SdpTypeToString(type) |
| 175 | << " " << sdp; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 176 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 177 | rtc::scoped_refptr<MockSetSessionDescriptionObserver> |
| 178 | observer(new rtc::RefCountedObject< |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 179 | MockSetSessionDescriptionObserver>()); |
| 180 | peer_connection_->SetLocalDescription( |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 181 | observer, webrtc::CreateSessionDescription(type, sdp).release()); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 184 | void PeerConnectionTestWrapper::SetRemoteDescription(SdpType type, |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 185 | const std::string& sdp) { |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 186 | RTC_LOG(LS_INFO) << "PeerConnectionTestWrapper " << name_ |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 187 | << ": SetRemoteDescription " << webrtc::SdpTypeToString(type) |
| 188 | << " " << sdp; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 189 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 190 | rtc::scoped_refptr<MockSetSessionDescriptionObserver> |
| 191 | observer(new rtc::RefCountedObject< |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 192 | MockSetSessionDescriptionObserver>()); |
| 193 | peer_connection_->SetRemoteDescription( |
Steve Anton | a3a92c2 | 2017-12-07 10:27:41 -0800 | [diff] [blame] | 194 | observer, webrtc::CreateSessionDescription(type, sdp).release()); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | void PeerConnectionTestWrapper::AddIceCandidate(const std::string& sdp_mid, |
| 198 | int sdp_mline_index, |
| 199 | const std::string& candidate) { |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 200 | std::unique_ptr<webrtc::IceCandidateInterface> owned_candidate( |
sergeyu@chromium.org | 5bc25c4 | 2013-12-05 00:24:06 +0000 | [diff] [blame] | 201 | webrtc::CreateIceCandidate(sdp_mid, sdp_mline_index, candidate, NULL)); |
| 202 | EXPECT_TRUE(peer_connection_->AddIceCandidate(owned_candidate.get())); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | void PeerConnectionTestWrapper::WaitForCallEstablished() { |
| 206 | WaitForConnection(); |
| 207 | WaitForAudio(); |
| 208 | WaitForVideo(); |
| 209 | } |
| 210 | |
| 211 | void PeerConnectionTestWrapper::WaitForConnection() { |
| 212 | EXPECT_TRUE_WAIT(CheckForConnection(), kMaxWait); |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 213 | RTC_LOG(LS_INFO) << "PeerConnectionTestWrapper " << name_ << ": Connected."; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | bool PeerConnectionTestWrapper::CheckForConnection() { |
| 217 | return (peer_connection_->ice_connection_state() == |
mallinath@webrtc.org | 385857d | 2014-02-14 00:56:12 +0000 | [diff] [blame] | 218 | PeerConnectionInterface::kIceConnectionConnected) || |
| 219 | (peer_connection_->ice_connection_state() == |
| 220 | PeerConnectionInterface::kIceConnectionCompleted); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | void PeerConnectionTestWrapper::WaitForAudio() { |
| 224 | EXPECT_TRUE_WAIT(CheckForAudio(), kMaxWait); |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 225 | RTC_LOG(LS_INFO) << "PeerConnectionTestWrapper " << name_ |
| 226 | << ": Got enough audio frames."; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | bool PeerConnectionTestWrapper::CheckForAudio() { |
| 230 | return (fake_audio_capture_module_->frames_received() >= |
| 231 | kTestAudioFrameCount); |
| 232 | } |
| 233 | |
| 234 | void PeerConnectionTestWrapper::WaitForVideo() { |
| 235 | EXPECT_TRUE_WAIT(CheckForVideo(), kMaxWait); |
Mirko Bonadei | 675513b | 2017-11-09 11:09:25 +0100 | [diff] [blame] | 236 | RTC_LOG(LS_INFO) << "PeerConnectionTestWrapper " << name_ |
| 237 | << ": Got enough video frames."; |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | bool PeerConnectionTestWrapper::CheckForVideo() { |
| 241 | if (!renderer_) { |
| 242 | return false; |
| 243 | } |
| 244 | return (renderer_->num_rendered_frames() >= kTestVideoFrameCount); |
| 245 | } |
| 246 | |
| 247 | void PeerConnectionTestWrapper::GetAndAddUserMedia( |
| 248 | bool audio, const webrtc::FakeConstraints& audio_constraints, |
| 249 | bool video, const webrtc::FakeConstraints& video_constraints) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 250 | rtc::scoped_refptr<webrtc::MediaStreamInterface> stream = |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 251 | GetUserMedia(audio, audio_constraints, video, video_constraints); |
Steve Anton | 191c39f | 2018-01-24 19:35:55 -0800 | [diff] [blame^] | 252 | for (auto audio_track : stream->GetAudioTracks()) { |
| 253 | EXPECT_TRUE( |
| 254 | peer_connection_->AddTrack(audio_track, {stream->label()}).ok()); |
| 255 | } |
| 256 | for (auto video_track : stream->GetVideoTracks()) { |
| 257 | EXPECT_TRUE( |
| 258 | peer_connection_->AddTrack(video_track, {stream->label()}).ok()); |
| 259 | } |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 260 | } |
| 261 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 262 | rtc::scoped_refptr<webrtc::MediaStreamInterface> |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 263 | PeerConnectionTestWrapper::GetUserMedia( |
| 264 | bool audio, const webrtc::FakeConstraints& audio_constraints, |
| 265 | bool video, const webrtc::FakeConstraints& video_constraints) { |
| 266 | std::string label = kStreamLabelBase + |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 267 | rtc::ToString<int>( |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 268 | static_cast<int>(peer_connection_->local_streams()->count())); |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 269 | rtc::scoped_refptr<webrtc::MediaStreamInterface> stream = |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 270 | peer_connection_factory_->CreateLocalMediaStream(label); |
| 271 | |
| 272 | if (audio) { |
| 273 | FakeConstraints constraints = audio_constraints; |
| 274 | // Disable highpass filter so that we can get all the test audio frames. |
| 275 | constraints.AddMandatory( |
| 276 | MediaConstraintsInterface::kHighpassFilter, false); |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 277 | rtc::scoped_refptr<webrtc::AudioSourceInterface> source = |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 278 | peer_connection_factory_->CreateAudioSource(&constraints); |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 279 | rtc::scoped_refptr<webrtc::AudioTrackInterface> audio_track( |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 280 | peer_connection_factory_->CreateAudioTrack(kAudioTrackLabelBase, |
| 281 | source)); |
| 282 | stream->AddTrack(audio_track); |
| 283 | } |
| 284 | |
| 285 | if (video) { |
| 286 | // Set max frame rate to 10fps to reduce the risk of the tests to be flaky. |
| 287 | FakeConstraints constraints = video_constraints; |
| 288 | constraints.SetMandatoryMaxFrameRate(10); |
| 289 | |
perkj | a3ede6c | 2016-03-08 01:27:48 +0100 | [diff] [blame] | 290 | rtc::scoped_refptr<webrtc::VideoTrackSourceInterface> source = |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 291 | peer_connection_factory_->CreateVideoSource( |
deadbeef | 112b2e9 | 2017-02-10 20:13:37 -0800 | [diff] [blame] | 292 | std::unique_ptr<cricket::VideoCapturer>( |
| 293 | new webrtc::FakePeriodicVideoCapturer()), |
| 294 | &constraints); |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 295 | std::string videotrack_label = label + kVideoTrackLabelBase; |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 296 | rtc::scoped_refptr<webrtc::VideoTrackInterface> video_track( |
wu@webrtc.org | 364f204 | 2013-11-20 21:49:41 +0000 | [diff] [blame] | 297 | peer_connection_factory_->CreateVideoTrack(videotrack_label, source)); |
| 298 | |
| 299 | stream->AddTrack(video_track); |
| 300 | } |
| 301 | return stream; |
| 302 | } |