OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2012 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 |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 }; | 166 }; |
167 | 167 |
168 class PeerConnectionTestClient : public webrtc::PeerConnectionObserver, | 168 class PeerConnectionTestClient : public webrtc::PeerConnectionObserver, |
169 public SignalingMessageReceiver, | 169 public SignalingMessageReceiver, |
170 public ObserverInterface { | 170 public ObserverInterface { |
171 public: | 171 public: |
172 static PeerConnectionTestClient* CreateClientWithDtlsIdentityStore( | 172 static PeerConnectionTestClient* CreateClientWithDtlsIdentityStore( |
173 const std::string& id, | 173 const std::string& id, |
174 const MediaConstraintsInterface* constraints, | 174 const MediaConstraintsInterface* constraints, |
175 const PeerConnectionFactory::Options* options, | 175 const PeerConnectionFactory::Options* options, |
| 176 const PeerConnectionInterface::RTCConfiguration& config, |
176 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator, | 177 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator, |
177 bool prefer_constraint_apis, | 178 bool prefer_constraint_apis, |
178 rtc::Thread* network_thread, | 179 rtc::Thread* network_thread, |
179 rtc::Thread* worker_thread) { | 180 rtc::Thread* worker_thread) { |
180 PeerConnectionTestClient* client(new PeerConnectionTestClient(id)); | 181 PeerConnectionTestClient* client(new PeerConnectionTestClient(id)); |
181 if (!client->Init(constraints, options, std::move(cert_generator), | 182 if (!client->Init(constraints, options, config, std::move(cert_generator), |
182 prefer_constraint_apis, network_thread, worker_thread)) { | 183 prefer_constraint_apis, network_thread, worker_thread)) { |
183 delete client; | 184 delete client; |
184 return nullptr; | 185 return nullptr; |
185 } | 186 } |
186 return client; | 187 return client; |
187 } | 188 } |
188 | 189 |
189 static PeerConnectionTestClient* CreateClient( | 190 static PeerConnectionTestClient* CreateClient( |
190 const std::string& id, | 191 const std::string& id, |
191 const MediaConstraintsInterface* constraints, | 192 const MediaConstraintsInterface* constraints, |
192 const PeerConnectionFactory::Options* options, | 193 const PeerConnectionFactory::Options* options, |
| 194 const PeerConnectionInterface::RTCConfiguration& config, |
193 rtc::Thread* network_thread, | 195 rtc::Thread* network_thread, |
194 rtc::Thread* worker_thread) { | 196 rtc::Thread* worker_thread) { |
195 std::unique_ptr<FakeRTCCertificateGenerator> cert_generator( | 197 std::unique_ptr<FakeRTCCertificateGenerator> cert_generator( |
196 rtc::SSLStreamAdapter::HaveDtlsSrtp() ? | 198 rtc::SSLStreamAdapter::HaveDtlsSrtp() ? |
197 new FakeRTCCertificateGenerator() : nullptr); | 199 new FakeRTCCertificateGenerator() : nullptr); |
198 | 200 |
199 return CreateClientWithDtlsIdentityStore( | 201 return CreateClientWithDtlsIdentityStore(id, constraints, options, config, |
200 id, constraints, options, std::move(cert_generator), true, | 202 std::move(cert_generator), true, |
201 network_thread, worker_thread); | 203 network_thread, worker_thread); |
202 } | 204 } |
203 | 205 |
204 static PeerConnectionTestClient* CreateClientPreferNoConstraints( | 206 static PeerConnectionTestClient* CreateClientPreferNoConstraints( |
205 const std::string& id, | 207 const std::string& id, |
206 const PeerConnectionFactory::Options* options, | 208 const PeerConnectionFactory::Options* options, |
| 209 const PeerConnectionInterface::RTCConfiguration& config, |
207 rtc::Thread* network_thread, | 210 rtc::Thread* network_thread, |
208 rtc::Thread* worker_thread) { | 211 rtc::Thread* worker_thread) { |
209 std::unique_ptr<FakeRTCCertificateGenerator> cert_generator( | 212 std::unique_ptr<FakeRTCCertificateGenerator> cert_generator( |
210 rtc::SSLStreamAdapter::HaveDtlsSrtp() ? | 213 rtc::SSLStreamAdapter::HaveDtlsSrtp() ? |
211 new FakeRTCCertificateGenerator() : nullptr); | 214 new FakeRTCCertificateGenerator() : nullptr); |
212 | 215 |
213 return CreateClientWithDtlsIdentityStore( | 216 return CreateClientWithDtlsIdentityStore(id, nullptr, options, config, |
214 id, nullptr, options, std::move(cert_generator), false, | 217 std::move(cert_generator), false, |
215 network_thread, worker_thread); | 218 network_thread, worker_thread); |
216 } | 219 } |
217 | 220 |
218 ~PeerConnectionTestClient() { | 221 ~PeerConnectionTestClient() { |
219 } | 222 } |
220 | 223 |
221 void Negotiate() { Negotiate(true, true); } | 224 void Negotiate() { Negotiate(true, true); } |
222 | 225 |
223 void Negotiate(bool audio, bool video) { | 226 void Negotiate(bool audio, bool video) { |
224 std::unique_ptr<SessionDescriptionInterface> offer; | 227 std::unique_ptr<SessionDescriptionInterface> offer; |
225 ASSERT_TRUE(DoCreateOffer(&offer)); | 228 ASSERT_TRUE(DoCreateOffer(&offer)); |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 PeerConnectionInterface::RTCOfferAnswerOptions::kUndefined; | 452 PeerConnectionInterface::RTCOfferAnswerOptions::kUndefined; |
450 } | 453 } |
451 | 454 |
452 void OnDataChannel( | 455 void OnDataChannel( |
453 rtc::scoped_refptr<DataChannelInterface> data_channel) override { | 456 rtc::scoped_refptr<DataChannelInterface> data_channel) override { |
454 LOG(INFO) << id_ << "OnDataChannel"; | 457 LOG(INFO) << id_ << "OnDataChannel"; |
455 data_channel_ = data_channel; | 458 data_channel_ = data_channel; |
456 data_observer_.reset(new MockDataChannelObserver(data_channel)); | 459 data_observer_.reset(new MockDataChannelObserver(data_channel)); |
457 } | 460 } |
458 | 461 |
459 void CreateDataChannel() { | 462 void CreateDataChannel() { CreateDataChannel(nullptr); } |
460 data_channel_ = pc()->CreateDataChannel(kDataChannelLabel, nullptr); | 463 |
| 464 void CreateDataChannel(const webrtc::DataChannelInit* init) { |
| 465 data_channel_ = pc()->CreateDataChannel(kDataChannelLabel, init); |
461 ASSERT_TRUE(data_channel_.get() != nullptr); | 466 ASSERT_TRUE(data_channel_.get() != nullptr); |
462 data_observer_.reset(new MockDataChannelObserver(data_channel_)); | 467 data_observer_.reset(new MockDataChannelObserver(data_channel_)); |
463 } | 468 } |
464 | 469 |
465 rtc::scoped_refptr<webrtc::AudioTrackInterface> CreateLocalAudioTrack( | 470 rtc::scoped_refptr<webrtc::AudioTrackInterface> CreateLocalAudioTrack( |
466 const std::string& stream_label) { | 471 const std::string& stream_label) { |
467 FakeConstraints constraints; | 472 FakeConstraints constraints; |
468 // Disable highpass filter so that we can get all the test audio frames. | 473 // Disable highpass filter so that we can get all the test audio frames. |
469 constraints.AddMandatory(MediaConstraintsInterface::kHighpassFilter, false); | 474 constraints.AddMandatory(MediaConstraintsInterface::kHighpassFilter, false); |
470 rtc::scoped_refptr<webrtc::AudioSourceInterface> source = | 475 rtc::scoped_refptr<webrtc::AudioSourceInterface> source = |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
837 private: | 842 private: |
838 bool completed_; | 843 bool completed_; |
839 std::vector<std::string> tones_; | 844 std::vector<std::string> tones_; |
840 }; | 845 }; |
841 | 846 |
842 explicit PeerConnectionTestClient(const std::string& id) : id_(id) {} | 847 explicit PeerConnectionTestClient(const std::string& id) : id_(id) {} |
843 | 848 |
844 bool Init( | 849 bool Init( |
845 const MediaConstraintsInterface* constraints, | 850 const MediaConstraintsInterface* constraints, |
846 const PeerConnectionFactory::Options* options, | 851 const PeerConnectionFactory::Options* options, |
| 852 const PeerConnectionInterface::RTCConfiguration& config, |
847 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator, | 853 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator, |
848 bool prefer_constraint_apis, | 854 bool prefer_constraint_apis, |
849 rtc::Thread* network_thread, | 855 rtc::Thread* network_thread, |
850 rtc::Thread* worker_thread) { | 856 rtc::Thread* worker_thread) { |
851 EXPECT_TRUE(!peer_connection_); | 857 EXPECT_TRUE(!peer_connection_); |
852 EXPECT_TRUE(!peer_connection_factory_); | 858 EXPECT_TRUE(!peer_connection_factory_); |
853 if (!prefer_constraint_apis) { | 859 if (!prefer_constraint_apis) { |
854 EXPECT_TRUE(!constraints); | 860 EXPECT_TRUE(!constraints); |
855 } | 861 } |
856 prefer_constraint_apis_ = prefer_constraint_apis; | 862 prefer_constraint_apis_ = prefer_constraint_apis; |
(...skipping 11 matching lines...) Expand all Loading... |
868 peer_connection_factory_ = webrtc::CreatePeerConnectionFactory( | 874 peer_connection_factory_ = webrtc::CreatePeerConnectionFactory( |
869 network_thread, worker_thread, signaling_thread, | 875 network_thread, worker_thread, signaling_thread, |
870 fake_audio_capture_module_, fake_video_encoder_factory_, | 876 fake_audio_capture_module_, fake_video_encoder_factory_, |
871 fake_video_decoder_factory_); | 877 fake_video_decoder_factory_); |
872 if (!peer_connection_factory_) { | 878 if (!peer_connection_factory_) { |
873 return false; | 879 return false; |
874 } | 880 } |
875 if (options) { | 881 if (options) { |
876 peer_connection_factory_->SetOptions(*options); | 882 peer_connection_factory_->SetOptions(*options); |
877 } | 883 } |
878 peer_connection_ = CreatePeerConnection( | 884 peer_connection_ = |
879 std::move(port_allocator), constraints, std::move(cert_generator)); | 885 CreatePeerConnection(std::move(port_allocator), constraints, config, |
| 886 std::move(cert_generator)); |
| 887 |
880 return peer_connection_.get() != nullptr; | 888 return peer_connection_.get() != nullptr; |
881 } | 889 } |
882 | 890 |
883 rtc::scoped_refptr<webrtc::PeerConnectionInterface> CreatePeerConnection( | 891 rtc::scoped_refptr<webrtc::PeerConnectionInterface> CreatePeerConnection( |
884 std::unique_ptr<cricket::PortAllocator> port_allocator, | 892 std::unique_ptr<cricket::PortAllocator> port_allocator, |
885 const MediaConstraintsInterface* constraints, | 893 const MediaConstraintsInterface* constraints, |
| 894 const PeerConnectionInterface::RTCConfiguration& config, |
886 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator) { | 895 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator) { |
887 // CreatePeerConnection with RTCConfiguration. | |
888 webrtc::PeerConnectionInterface::RTCConfiguration config; | |
889 webrtc::PeerConnectionInterface::IceServer ice_server; | |
890 ice_server.uri = "stun:stun.l.google.com:19302"; | |
891 config.servers.push_back(ice_server); | |
892 | |
893 return peer_connection_factory_->CreatePeerConnection( | 896 return peer_connection_factory_->CreatePeerConnection( |
894 config, constraints, std::move(port_allocator), | 897 config, constraints, std::move(port_allocator), |
895 std::move(cert_generator), this); | 898 std::move(cert_generator), this); |
896 } | 899 } |
897 | 900 |
898 void HandleIncomingOffer(const std::string& msg) { | 901 void HandleIncomingOffer(const std::string& msg) { |
899 LOG(INFO) << id_ << "HandleIncomingOffer "; | 902 LOG(INFO) << id_ << "HandleIncomingOffer "; |
900 if (NumberOfLocalMediaStreams() == 0 && auto_add_stream_) { | 903 if (NumberOfLocalMediaStreams() == 0 && auto_add_stream_) { |
901 // If we are not sending any streams ourselves it is time to add some. | 904 // If we are not sending any streams ourselves it is time to add some. |
902 AddMediaStream(true, true); | 905 AddMediaStream(true, true); |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1070 | 1073 |
1071 class P2PTestConductor : public testing::Test { | 1074 class P2PTestConductor : public testing::Test { |
1072 public: | 1075 public: |
1073 P2PTestConductor() | 1076 P2PTestConductor() |
1074 : pss_(new rtc::PhysicalSocketServer), | 1077 : pss_(new rtc::PhysicalSocketServer), |
1075 ss_(new rtc::VirtualSocketServer(pss_.get())), | 1078 ss_(new rtc::VirtualSocketServer(pss_.get())), |
1076 network_thread_(new rtc::Thread(ss_.get())), | 1079 network_thread_(new rtc::Thread(ss_.get())), |
1077 worker_thread_(rtc::Thread::Create()) { | 1080 worker_thread_(rtc::Thread::Create()) { |
1078 RTC_CHECK(network_thread_->Start()); | 1081 RTC_CHECK(network_thread_->Start()); |
1079 RTC_CHECK(worker_thread_->Start()); | 1082 RTC_CHECK(worker_thread_->Start()); |
| 1083 webrtc::PeerConnectionInterface::IceServer ice_server; |
| 1084 ice_server.uri = "stun:stun.l.google.com:19302"; |
| 1085 config_.servers.push_back(ice_server); |
1080 } | 1086 } |
1081 | 1087 |
1082 bool SessionActive() { | 1088 bool SessionActive() { |
1083 return initiating_client_->SessionActive() && | 1089 return initiating_client_->SessionActive() && |
1084 receiving_client_->SessionActive(); | 1090 receiving_client_->SessionActive(); |
1085 } | 1091 } |
1086 | 1092 |
1087 // Return true if the number of frames provided have been received | 1093 // Return true if the number of frames provided have been received |
1088 // on the video and audio tracks provided. | 1094 // on the video and audio tracks provided. |
1089 bool FramesHaveArrived(int audio_frames_to_receive, | 1095 bool FramesHaveArrived(int audio_frames_to_receive, |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1179 | 1185 |
1180 bool CreateTestClients(MediaConstraintsInterface* init_constraints, | 1186 bool CreateTestClients(MediaConstraintsInterface* init_constraints, |
1181 MediaConstraintsInterface* recv_constraints) { | 1187 MediaConstraintsInterface* recv_constraints) { |
1182 return CreateTestClients(init_constraints, nullptr, recv_constraints, | 1188 return CreateTestClients(init_constraints, nullptr, recv_constraints, |
1183 nullptr); | 1189 nullptr); |
1184 } | 1190 } |
1185 | 1191 |
1186 bool CreateTestClientsThatPreferNoConstraints() { | 1192 bool CreateTestClientsThatPreferNoConstraints() { |
1187 initiating_client_.reset( | 1193 initiating_client_.reset( |
1188 PeerConnectionTestClient::CreateClientPreferNoConstraints( | 1194 PeerConnectionTestClient::CreateClientPreferNoConstraints( |
1189 "Caller: ", nullptr, network_thread_.get(), worker_thread_.get())); | 1195 "Caller: ", nullptr, config_, network_thread_.get(), |
| 1196 worker_thread_.get())); |
1190 receiving_client_.reset( | 1197 receiving_client_.reset( |
1191 PeerConnectionTestClient::CreateClientPreferNoConstraints( | 1198 PeerConnectionTestClient::CreateClientPreferNoConstraints( |
1192 "Callee: ", nullptr, network_thread_.get(), worker_thread_.get())); | 1199 "Callee: ", nullptr, config_, network_thread_.get(), |
| 1200 worker_thread_.get())); |
1193 if (!initiating_client_ || !receiving_client_) { | 1201 if (!initiating_client_ || !receiving_client_) { |
1194 return false; | 1202 return false; |
1195 } | 1203 } |
1196 // Remember the choice for possible later resets of the clients. | 1204 // Remember the choice for possible later resets of the clients. |
1197 prefer_constraint_apis_ = false; | 1205 prefer_constraint_apis_ = false; |
1198 SetSignalingReceivers(); | 1206 SetSignalingReceivers(); |
1199 return true; | 1207 return true; |
1200 } | 1208 } |
1201 | 1209 |
1202 void SetSignalingReceivers() { | 1210 void SetSignalingReceivers() { |
1203 initiating_client_->set_signaling_message_receiver(receiving_client_.get()); | 1211 initiating_client_->set_signaling_message_receiver(receiving_client_.get()); |
1204 receiving_client_->set_signaling_message_receiver(initiating_client_.get()); | 1212 receiving_client_->set_signaling_message_receiver(initiating_client_.get()); |
1205 } | 1213 } |
1206 | 1214 |
1207 bool CreateTestClients(MediaConstraintsInterface* init_constraints, | 1215 bool CreateTestClients(MediaConstraintsInterface* init_constraints, |
1208 PeerConnectionFactory::Options* init_options, | 1216 PeerConnectionFactory::Options* init_options, |
1209 MediaConstraintsInterface* recv_constraints, | 1217 MediaConstraintsInterface* recv_constraints, |
1210 PeerConnectionFactory::Options* recv_options) { | 1218 PeerConnectionFactory::Options* recv_options) { |
1211 initiating_client_.reset(PeerConnectionTestClient::CreateClient( | 1219 initiating_client_.reset(PeerConnectionTestClient::CreateClient( |
1212 "Caller: ", init_constraints, init_options, network_thread_.get(), | 1220 "Caller: ", init_constraints, init_options, config_, |
1213 worker_thread_.get())); | 1221 network_thread_.get(), worker_thread_.get())); |
1214 receiving_client_.reset(PeerConnectionTestClient::CreateClient( | 1222 receiving_client_.reset(PeerConnectionTestClient::CreateClient( |
1215 "Callee: ", recv_constraints, recv_options, network_thread_.get(), | 1223 "Callee: ", recv_constraints, recv_options, config_, |
1216 worker_thread_.get())); | 1224 network_thread_.get(), worker_thread_.get())); |
1217 if (!initiating_client_ || !receiving_client_) { | 1225 if (!initiating_client_ || !receiving_client_) { |
1218 return false; | 1226 return false; |
1219 } | 1227 } |
1220 SetSignalingReceivers(); | 1228 SetSignalingReceivers(); |
1221 return true; | 1229 return true; |
1222 } | 1230 } |
1223 | 1231 |
1224 void SetVideoConstraints(const webrtc::FakeConstraints& init_constraints, | 1232 void SetVideoConstraints(const webrtc::FakeConstraints& init_constraints, |
1225 const webrtc::FakeConstraints& recv_constraints) { | 1233 const webrtc::FakeConstraints& recv_constraints) { |
1226 initiating_client_->SetVideoConstraints(init_constraints); | 1234 initiating_client_->SetVideoConstraints(init_constraints); |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1306 setup_constraints.AddMandatory(MediaConstraintsInterface::kEnableDtlsSrtp, | 1314 setup_constraints.AddMandatory(MediaConstraintsInterface::kEnableDtlsSrtp, |
1307 true); | 1315 true); |
1308 | 1316 |
1309 std::unique_ptr<FakeRTCCertificateGenerator> cert_generator( | 1317 std::unique_ptr<FakeRTCCertificateGenerator> cert_generator( |
1310 rtc::SSLStreamAdapter::HaveDtlsSrtp() ? | 1318 rtc::SSLStreamAdapter::HaveDtlsSrtp() ? |
1311 new FakeRTCCertificateGenerator() : nullptr); | 1319 new FakeRTCCertificateGenerator() : nullptr); |
1312 cert_generator->use_alternate_key(); | 1320 cert_generator->use_alternate_key(); |
1313 | 1321 |
1314 // Make sure the new client is using a different certificate. | 1322 // Make sure the new client is using a different certificate. |
1315 return PeerConnectionTestClient::CreateClientWithDtlsIdentityStore( | 1323 return PeerConnectionTestClient::CreateClientWithDtlsIdentityStore( |
1316 "New Peer: ", &setup_constraints, nullptr, | 1324 "New Peer: ", &setup_constraints, nullptr, config_, |
1317 std::move(cert_generator), prefer_constraint_apis_, | 1325 std::move(cert_generator), prefer_constraint_apis_, |
1318 network_thread_.get(), worker_thread_.get()); | 1326 network_thread_.get(), worker_thread_.get()); |
1319 } | 1327 } |
1320 | 1328 |
1321 void SendRtpData(webrtc::DataChannelInterface* dc, const std::string& data) { | 1329 void SendRtpData(webrtc::DataChannelInterface* dc, const std::string& data) { |
1322 // Messages may get lost on the unreliable DataChannel, so we send multiple | 1330 // Messages may get lost on the unreliable DataChannel, so we send multiple |
1323 // times to avoid test flakiness. | 1331 // times to avoid test flakiness. |
1324 static const size_t kSendAttempts = 5; | 1332 static const size_t kSendAttempts = 5; |
1325 | 1333 |
1326 for (size_t i = 0; i < kSendAttempts; ++i) { | 1334 for (size_t i = 0; i < kSendAttempts; ++i) { |
(...skipping 19 matching lines...) Expand all Loading... |
1346 } | 1354 } |
1347 | 1355 |
1348 // Set the |receiving_client_| to the |client| passed in and return the | 1356 // Set the |receiving_client_| to the |client| passed in and return the |
1349 // original |receiving_client_|. | 1357 // original |receiving_client_|. |
1350 PeerConnectionTestClient* set_receiving_client( | 1358 PeerConnectionTestClient* set_receiving_client( |
1351 PeerConnectionTestClient* client) { | 1359 PeerConnectionTestClient* client) { |
1352 PeerConnectionTestClient* old = receiving_client_.release(); | 1360 PeerConnectionTestClient* old = receiving_client_.release(); |
1353 receiving_client_.reset(client); | 1361 receiving_client_.reset(client); |
1354 return old; | 1362 return old; |
1355 } | 1363 } |
| 1364 webrtc::PeerConnectionInterface::RTCConfiguration* config() { |
| 1365 return &config_; |
| 1366 } |
1356 | 1367 |
1357 bool AllObserversReceived( | 1368 bool AllObserversReceived( |
1358 const std::vector<std::unique_ptr<MockRtpReceiverObserver>>& observers) { | 1369 const std::vector<std::unique_ptr<MockRtpReceiverObserver>>& observers) { |
1359 for (auto& observer : observers) { | 1370 for (auto& observer : observers) { |
1360 if (!observer->first_packet_received()) { | 1371 if (!observer->first_packet_received()) { |
1361 return false; | 1372 return false; |
1362 } | 1373 } |
1363 } | 1374 } |
1364 return true; | 1375 return true; |
1365 } | 1376 } |
1366 | 1377 |
1367 private: | 1378 private: |
1368 // |ss_| is used by |network_thread_| so it must be destroyed later. | 1379 // |ss_| is used by |network_thread_| so it must be destroyed later. |
1369 std::unique_ptr<rtc::PhysicalSocketServer> pss_; | 1380 std::unique_ptr<rtc::PhysicalSocketServer> pss_; |
1370 std::unique_ptr<rtc::VirtualSocketServer> ss_; | 1381 std::unique_ptr<rtc::VirtualSocketServer> ss_; |
1371 // |network_thread_| and |worker_thread_| are used by both | 1382 // |network_thread_| and |worker_thread_| are used by both |
1372 // |initiating_client_| and |receiving_client_| so they must be destroyed | 1383 // |initiating_client_| and |receiving_client_| so they must be destroyed |
1373 // later. | 1384 // later. |
1374 std::unique_ptr<rtc::Thread> network_thread_; | 1385 std::unique_ptr<rtc::Thread> network_thread_; |
1375 std::unique_ptr<rtc::Thread> worker_thread_; | 1386 std::unique_ptr<rtc::Thread> worker_thread_; |
1376 std::unique_ptr<PeerConnectionTestClient> initiating_client_; | 1387 std::unique_ptr<PeerConnectionTestClient> initiating_client_; |
1377 std::unique_ptr<PeerConnectionTestClient> receiving_client_; | 1388 std::unique_ptr<PeerConnectionTestClient> receiving_client_; |
1378 bool prefer_constraint_apis_ = true; | 1389 bool prefer_constraint_apis_ = true; |
| 1390 webrtc::PeerConnectionInterface::RTCConfiguration config_; |
1379 }; | 1391 }; |
1380 | 1392 |
1381 // Disable for TSan v2, see | 1393 // Disable for TSan v2, see |
1382 // https://code.google.com/p/webrtc/issues/detail?id=1205 for details. | 1394 // https://code.google.com/p/webrtc/issues/detail?id=1205 for details. |
1383 #if !defined(THREAD_SANITIZER) | 1395 #if !defined(THREAD_SANITIZER) |
1384 | 1396 |
1385 TEST_F(P2PTestConductor, TestRtpReceiverObserverCallbackFunction) { | 1397 TEST_F(P2PTestConductor, TestRtpReceiverObserverCallbackFunction) { |
1386 ASSERT_TRUE(CreateTestClients()); | 1398 ASSERT_TRUE(CreateTestClients()); |
1387 LocalP2PTest(); | 1399 LocalP2PTest(); |
1388 EXPECT_TRUE_WAIT( | 1400 EXPECT_TRUE_WAIT( |
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2066 kMaxWaitForFramesMs); | 2078 kMaxWaitForFramesMs); |
2067 // Now set the tracks, and expect frames to immediately start flowing. | 2079 // Now set the tracks, and expect frames to immediately start flowing. |
2068 EXPECT_TRUE( | 2080 EXPECT_TRUE( |
2069 audio_sender->SetTrack(initializing_client()->CreateLocalAudioTrack(""))); | 2081 audio_sender->SetTrack(initializing_client()->CreateLocalAudioTrack(""))); |
2070 EXPECT_TRUE( | 2082 EXPECT_TRUE( |
2071 video_sender->SetTrack(initializing_client()->CreateLocalVideoTrack(""))); | 2083 video_sender->SetTrack(initializing_client()->CreateLocalVideoTrack(""))); |
2072 EXPECT_TRUE_WAIT(FramesHaveArrived(kEndAudioFrameCount, kEndVideoFrameCount), | 2084 EXPECT_TRUE_WAIT(FramesHaveArrived(kEndAudioFrameCount, kEndVideoFrameCount), |
2073 kMaxWaitForFramesMs); | 2085 kMaxWaitForFramesMs); |
2074 } | 2086 } |
2075 | 2087 |
| 2088 #ifdef HAVE_QUIC |
| 2089 // This test sets up a call between two parties using QUIC instead of DTLS for |
| 2090 // audio and video, and a QUIC data channel. |
| 2091 TEST_F(P2PTestConductor, LocalP2PTestQuicDataChannel) { |
| 2092 config()->enable_quic = true; |
| 2093 ASSERT_TRUE(CreateTestClients()); |
| 2094 webrtc::DataChannelInit init; |
| 2095 init.ordered = false; |
| 2096 init.reliable = true; |
| 2097 init.id = 1; |
| 2098 initializing_client()->CreateDataChannel(&init); |
| 2099 receiving_client()->CreateDataChannel(&init); |
| 2100 LocalP2PTest(); |
| 2101 ASSERT_NE(nullptr, initializing_client()->data_channel()); |
| 2102 ASSERT_NE(nullptr, receiving_client()->data_channel()); |
| 2103 EXPECT_TRUE_WAIT(initializing_client()->data_observer()->IsOpen(), |
| 2104 kMaxWaitMs); |
| 2105 EXPECT_TRUE_WAIT(receiving_client()->data_observer()->IsOpen(), kMaxWaitMs); |
| 2106 |
| 2107 std::string data = "hello world"; |
| 2108 |
| 2109 initializing_client()->data_channel()->Send(DataBuffer(data)); |
| 2110 EXPECT_EQ_WAIT(data, receiving_client()->data_observer()->last_message(), |
| 2111 kMaxWaitMs); |
| 2112 |
| 2113 receiving_client()->data_channel()->Send(DataBuffer(data)); |
| 2114 EXPECT_EQ_WAIT(data, initializing_client()->data_observer()->last_message(), |
| 2115 kMaxWaitMs); |
| 2116 } |
| 2117 |
| 2118 // Tests that negotiation of QUIC data channels is completed without error. |
| 2119 TEST_F(P2PTestConductor, NegotiateQuicDataChannel) { |
| 2120 config()->enable_quic = true; |
| 2121 FakeConstraints constraints; |
| 2122 constraints.SetMandatory(MediaConstraintsInterface::kEnableDtlsSrtp, true); |
| 2123 ASSERT_TRUE(CreateTestClients(&constraints, &constraints)); |
| 2124 webrtc::DataChannelInit init; |
| 2125 init.ordered = false; |
| 2126 init.reliable = true; |
| 2127 init.id = 1; |
| 2128 initializing_client()->CreateDataChannel(&init); |
| 2129 initializing_client()->Negotiate(false, false); |
| 2130 } |
| 2131 |
| 2132 // This test sets up a JSEP call using QUIC. The callee only receives video. |
| 2133 TEST_F(P2PTestConductor, LocalP2PTestVideoOnlyWithQuic) { |
| 2134 config()->enable_quic = true; |
| 2135 ASSERT_TRUE(CreateTestClients()); |
| 2136 receiving_client()->SetReceiveAudioVideo(false, true); |
| 2137 LocalP2PTest(); |
| 2138 } |
| 2139 |
| 2140 // This test sets up a JSEP call using QUIC. The callee only receives audio. |
| 2141 TEST_F(P2PTestConductor, LocalP2PTestAudioOnlyWithQuic) { |
| 2142 config()->enable_quic = true; |
| 2143 ASSERT_TRUE(CreateTestClients()); |
| 2144 receiving_client()->SetReceiveAudioVideo(true, false); |
| 2145 LocalP2PTest(); |
| 2146 } |
| 2147 |
| 2148 // This test sets up a JSEP call using QUIC. The callee rejects both audio and |
| 2149 // video. |
| 2150 TEST_F(P2PTestConductor, LocalP2PTestNoVideoAudioWithQuic) { |
| 2151 config()->enable_quic = true; |
| 2152 ASSERT_TRUE(CreateTestClients()); |
| 2153 receiving_client()->SetReceiveAudioVideo(false, false); |
| 2154 LocalP2PTest(); |
| 2155 } |
| 2156 |
| 2157 #endif // HAVE_QUIC |
| 2158 |
2076 TEST_F(P2PTestConductor, ForwardVideoOnlyStream) { | 2159 TEST_F(P2PTestConductor, ForwardVideoOnlyStream) { |
2077 ASSERT_TRUE(CreateTestClients()); | 2160 ASSERT_TRUE(CreateTestClients()); |
2078 // One-way stream | 2161 // One-way stream |
2079 receiving_client()->set_auto_add_stream(false); | 2162 receiving_client()->set_auto_add_stream(false); |
2080 // Video only, audio forwarding not expected to work. | 2163 // Video only, audio forwarding not expected to work. |
2081 initializing_client()->AddMediaStream(false, true); | 2164 initializing_client()->AddMediaStream(false, true); |
2082 initializing_client()->Negotiate(); | 2165 initializing_client()->Negotiate(); |
2083 | 2166 |
2084 ASSERT_TRUE_WAIT(SessionActive(), kMaxWaitForActivationMs); | 2167 ASSERT_TRUE_WAIT(SessionActive(), kMaxWaitForActivationMs); |
2085 VerifySessionDescriptions(); | 2168 VerifySessionDescriptions(); |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2291 server.urls.push_back("turn:hostname2"); | 2374 server.urls.push_back("turn:hostname2"); |
2292 servers.push_back(server); | 2375 servers.push_back(server); |
2293 EXPECT_TRUE(webrtc::ParseIceServers(servers, &stun_servers_, &turn_servers_)); | 2376 EXPECT_TRUE(webrtc::ParseIceServers(servers, &stun_servers_, &turn_servers_)); |
2294 EXPECT_EQ(2U, turn_servers_.size()); | 2377 EXPECT_EQ(2U, turn_servers_.size()); |
2295 EXPECT_NE(turn_servers_[0].priority, turn_servers_[1].priority); | 2378 EXPECT_NE(turn_servers_[0].priority, turn_servers_[1].priority); |
2296 } | 2379 } |
2297 | 2380 |
2298 #endif // if !defined(THREAD_SANITIZER) | 2381 #endif // if !defined(THREAD_SANITIZER) |
2299 | 2382 |
2300 } // namespace | 2383 } // namespace |
OLD | NEW |