OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 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. |
| 9 */ |
| 10 |
| 11 #include <memory> |
| 12 |
| 13 #include "webrtc/base/fakenetwork.h" |
| 14 #include "webrtc/base/gunit.h" |
| 15 #include "webrtc/base/physicalsocketserver.h" |
| 16 #include "webrtc/base/virtualsocketserver.h" |
| 17 #include "webrtc/media/base/fakemediaengine.h" |
| 18 #include "webrtc/ortc/ortcfactory.h" |
| 19 #include "webrtc/ortc/testrtpparameters.h" |
| 20 #include "webrtc/p2p/base/fakepackettransport.h" |
| 21 |
| 22 namespace webrtc { |
| 23 |
| 24 // This test uses a virtual network and fake media engine, in order to test the |
| 25 // OrtcFactory at only an API level. Any end-to-end test should go in |
| 26 // ortcfactory_integrationtest.cc instead. |
| 27 class OrtcFactoryTest : public testing::Test { |
| 28 public: |
| 29 OrtcFactoryTest() |
| 30 : virtual_socket_server_(&physical_socket_server_), |
| 31 socket_server_scope_(&virtual_socket_server_), |
| 32 fake_packet_transport_("fake transport") { |
| 33 ortc_factory_ = OrtcFactory::Create( |
| 34 nullptr, nullptr, &fake_network_manager_, nullptr, |
| 35 nullptr, std::unique_ptr<cricket::MediaEngineInterface>( |
| 36 new cricket::FakeMediaEngine())) |
| 37 .MoveValue(); |
| 38 } |
| 39 |
| 40 protected: |
| 41 // Uses a single pre-made FakePacketTransport, so shouldn't be called twice in |
| 42 // the same test. |
| 43 std::unique_ptr<RtpTransportInterface> |
| 44 CreateRtpTransportWithFakePacketTransport() { |
| 45 return ortc_factory_ |
| 46 ->CreateRtpTransport(MakeRtcpMuxParameters(), &fake_packet_transport_, |
| 47 nullptr, nullptr) |
| 48 .MoveValue(); |
| 49 } |
| 50 |
| 51 rtc::PhysicalSocketServer physical_socket_server_; |
| 52 rtc::VirtualSocketServer virtual_socket_server_; |
| 53 rtc::SocketServerScope socket_server_scope_; |
| 54 rtc::FakeNetworkManager fake_network_manager_; |
| 55 rtc::FakePacketTransport fake_packet_transport_; |
| 56 std::unique_ptr<OrtcFactoryInterface> ortc_factory_; |
| 57 }; |
| 58 |
| 59 TEST_F(OrtcFactoryTest, CanCreateMultipleRtpTransportControllers) { |
| 60 auto controller_result1 = ortc_factory_->CreateRtpTransportController(); |
| 61 EXPECT_TRUE(controller_result1.ok()); |
| 62 auto controller_result2 = ortc_factory_->CreateRtpTransportController(); |
| 63 EXPECT_TRUE(controller_result1.ok()); |
| 64 } |
| 65 |
| 66 // Simple test for the successful cases of CreateRtpTransport. |
| 67 TEST_F(OrtcFactoryTest, CreateRtpTransportWithAndWithoutMux) { |
| 68 rtc::FakePacketTransport rtp("rtp"); |
| 69 rtc::FakePacketTransport rtcp("rtcp"); |
| 70 // With muxed RTCP. |
| 71 RtcpParameters rtcp_parameters; |
| 72 rtcp_parameters.mux = true; |
| 73 auto result = ortc_factory_->CreateRtpTransport(rtcp_parameters, &rtp, |
| 74 nullptr, nullptr); |
| 75 EXPECT_TRUE(result.ok()); |
| 76 result.MoveValue().reset(); |
| 77 // With non-muxed RTCP. |
| 78 rtcp_parameters.mux = false; |
| 79 result = |
| 80 ortc_factory_->CreateRtpTransport(rtcp_parameters, &rtp, &rtcp, nullptr); |
| 81 EXPECT_TRUE(result.ok()); |
| 82 } |
| 83 |
| 84 // Simple test for the successful cases of CreateSrtpTransport. |
| 85 TEST_F(OrtcFactoryTest, CreateSrtpTransport) { |
| 86 rtc::FakePacketTransport rtp("rtp"); |
| 87 rtc::FakePacketTransport rtcp("rtcp"); |
| 88 // With muxed RTCP. |
| 89 RtcpParameters rtcp_parameters; |
| 90 rtcp_parameters.mux = true; |
| 91 auto result = ortc_factory_->CreateSrtpTransport(rtcp_parameters, &rtp, |
| 92 nullptr, nullptr); |
| 93 EXPECT_TRUE(result.ok()); |
| 94 result.MoveValue().reset(); |
| 95 // With non-muxed RTCP. |
| 96 rtcp_parameters.mux = false; |
| 97 result = |
| 98 ortc_factory_->CreateSrtpTransport(rtcp_parameters, &rtp, &rtcp, nullptr); |
| 99 EXPECT_TRUE(result.ok()); |
| 100 } |
| 101 |
| 102 // If no CNAME is provided, one should be generated and returned by |
| 103 // GetRtpParameters. |
| 104 TEST_F(OrtcFactoryTest, CreateRtpTransportGeneratesCname) { |
| 105 rtc::FakePacketTransport rtp("rtp"); |
| 106 RtcpParameters rtcp_parameters; |
| 107 rtcp_parameters.mux = true; |
| 108 auto result = ortc_factory_->CreateRtpTransport(rtcp_parameters, &rtp, |
| 109 nullptr, nullptr); |
| 110 ASSERT_TRUE(result.ok()); |
| 111 EXPECT_FALSE(result.value()->GetRtcpParameters().cname.empty()); |
| 112 } |
| 113 |
| 114 // Extension of the above test; multiple transports created by the same factory |
| 115 // should use the same generated CNAME. |
| 116 TEST_F(OrtcFactoryTest, MultipleRtpTransportsUseSameGeneratedCname) { |
| 117 rtc::FakePacketTransport packet_transport1("1"); |
| 118 rtc::FakePacketTransport packet_transport2("2"); |
| 119 RtcpParameters rtcp_parameters; |
| 120 rtcp_parameters.mux = true; |
| 121 // Sanity check. |
| 122 ASSERT_TRUE(rtcp_parameters.cname.empty()); |
| 123 auto result = ortc_factory_->CreateRtpTransport( |
| 124 rtcp_parameters, &packet_transport1, nullptr, nullptr); |
| 125 ASSERT_TRUE(result.ok()); |
| 126 auto rtp_transport1 = result.MoveValue(); |
| 127 result = ortc_factory_->CreateRtpTransport( |
| 128 rtcp_parameters, &packet_transport2, nullptr, nullptr); |
| 129 ASSERT_TRUE(result.ok()); |
| 130 auto rtp_transport2 = result.MoveValue(); |
| 131 RtcpParameters params1 = rtp_transport1->GetRtcpParameters(); |
| 132 RtcpParameters params2 = rtp_transport2->GetRtcpParameters(); |
| 133 EXPECT_FALSE(params1.cname.empty()); |
| 134 EXPECT_EQ(params1.cname, params2.cname); |
| 135 } |
| 136 |
| 137 TEST_F(OrtcFactoryTest, CreateRtpTransportWithNoPacketTransport) { |
| 138 auto result = ortc_factory_->CreateRtpTransport(MakeRtcpMuxParameters(), |
| 139 nullptr, nullptr, nullptr); |
| 140 EXPECT_EQ(RTCErrorType::INVALID_PARAMETER, result.error().type()); |
| 141 } |
| 142 |
| 143 // If the |mux| member of the RtcpParameters is false, both an RTP and RTCP |
| 144 // packet transport are needed. |
| 145 TEST_F(OrtcFactoryTest, CreateRtpTransportWithMissingRtcpTransport) { |
| 146 rtc::FakePacketTransport rtp("rtp"); |
| 147 RtcpParameters rtcp_parameters; |
| 148 rtcp_parameters.mux = false; |
| 149 auto result = ortc_factory_->CreateRtpTransport(rtcp_parameters, &rtp, |
| 150 nullptr, nullptr); |
| 151 EXPECT_EQ(RTCErrorType::INVALID_PARAMETER, result.error().type()); |
| 152 } |
| 153 |
| 154 // If the |mux| member of the RtcpParameters is true, only an RTP packet |
| 155 // transport is necessary. So, passing in an RTCP transport is most likely |
| 156 // an accident, and thus should be treated as an error. |
| 157 TEST_F(OrtcFactoryTest, CreateRtpTransportWithExtraneousRtcpTransport) { |
| 158 rtc::FakePacketTransport rtp("rtp"); |
| 159 rtc::FakePacketTransport rtcp("rtcp"); |
| 160 RtcpParameters rtcp_parameters; |
| 161 rtcp_parameters.mux = true; |
| 162 auto result = |
| 163 ortc_factory_->CreateRtpTransport(rtcp_parameters, &rtp, &rtcp, nullptr); |
| 164 EXPECT_EQ(RTCErrorType::INVALID_PARAMETER, result.error().type()); |
| 165 } |
| 166 |
| 167 // Basic test that CreateUdpTransport works with AF_INET and AF_INET6. |
| 168 TEST_F(OrtcFactoryTest, CreateUdpTransport) { |
| 169 auto result = ortc_factory_->CreateUdpTransport(AF_INET); |
| 170 EXPECT_TRUE(result.ok()); |
| 171 result = ortc_factory_->CreateUdpTransport(AF_INET6); |
| 172 EXPECT_TRUE(result.ok()); |
| 173 } |
| 174 |
| 175 // Test CreateUdpPort with the |min_port| and |max_port| arguments. |
| 176 TEST_F(OrtcFactoryTest, CreateUdpTransportWithPortRange) { |
| 177 auto socket_result1 = ortc_factory_->CreateUdpTransport(AF_INET, 2000, 2002); |
| 178 ASSERT_TRUE(socket_result1.ok()); |
| 179 EXPECT_EQ(2000, socket_result1.value()->GetLocalAddress().port()); |
| 180 auto socket_result2 = ortc_factory_->CreateUdpTransport(AF_INET, 2000, 2002); |
| 181 ASSERT_TRUE(socket_result2.ok()); |
| 182 EXPECT_EQ(2001, socket_result2.value()->GetLocalAddress().port()); |
| 183 auto socket_result3 = ortc_factory_->CreateUdpTransport(AF_INET, 2000, 2002); |
| 184 ASSERT_TRUE(socket_result3.ok()); |
| 185 EXPECT_EQ(2002, socket_result3.value()->GetLocalAddress().port()); |
| 186 |
| 187 // All sockets in the range have been exhausted, so the next call should |
| 188 // fail. |
| 189 auto failed_result = ortc_factory_->CreateUdpTransport(AF_INET, 2000, 2002); |
| 190 EXPECT_EQ(RTCErrorType::RESOURCE_EXHAUSTED, failed_result.error().type()); |
| 191 |
| 192 // If one socket is destroyed, that port should be freed up again. |
| 193 socket_result2.MoveValue().reset(); |
| 194 auto socket_result4 = ortc_factory_->CreateUdpTransport(AF_INET, 2000, 2002); |
| 195 ASSERT_TRUE(socket_result4.ok()); |
| 196 EXPECT_EQ(2001, socket_result4.value()->GetLocalAddress().port()); |
| 197 } |
| 198 |
| 199 // Basic test that CreateUdpTransport works with AF_INET and AF_INET6. |
| 200 TEST_F(OrtcFactoryTest, CreateUdpTransportWithInvalidAddressFamily) { |
| 201 auto result = ortc_factory_->CreateUdpTransport(12345); |
| 202 EXPECT_EQ(RTCErrorType::INVALID_PARAMETER, result.error().type()); |
| 203 } |
| 204 |
| 205 TEST_F(OrtcFactoryTest, CreateUdpTransportWithInvalidPortRange) { |
| 206 auto result = ortc_factory_->CreateUdpTransport(AF_INET, 3000, 2000); |
| 207 EXPECT_EQ(RTCErrorType::INVALID_RANGE, result.error().type()); |
| 208 } |
| 209 |
| 210 // Just sanity check that each "GetCapabilities" method returns some codecs. |
| 211 TEST_F(OrtcFactoryTest, GetSenderAndReceiverCapabilities) { |
| 212 RtpCapabilities audio_send_caps = |
| 213 ortc_factory_->GetRtpSenderCapabilities(cricket::MEDIA_TYPE_AUDIO); |
| 214 EXPECT_GT(audio_send_caps.codecs.size(), 0u); |
| 215 RtpCapabilities video_send_caps = |
| 216 ortc_factory_->GetRtpSenderCapabilities(cricket::MEDIA_TYPE_VIDEO); |
| 217 EXPECT_GT(video_send_caps.codecs.size(), 0u); |
| 218 RtpCapabilities audio_receive_caps = |
| 219 ortc_factory_->GetRtpReceiverCapabilities(cricket::MEDIA_TYPE_AUDIO); |
| 220 EXPECT_GT(audio_receive_caps.codecs.size(), 0u); |
| 221 RtpCapabilities video_receive_caps = |
| 222 ortc_factory_->GetRtpReceiverCapabilities(cricket::MEDIA_TYPE_VIDEO); |
| 223 EXPECT_GT(video_receive_caps.codecs.size(), 0u); |
| 224 } |
| 225 |
| 226 // Calling CreateRtpSender with a null track should fail, since that makes it |
| 227 // impossible to know whether to create an audio or video sender. The |
| 228 // application should be using the method that takes a cricket::MediaType |
| 229 // instead. |
| 230 TEST_F(OrtcFactoryTest, CreateSenderWithNullTrack) { |
| 231 auto rtp_transport = CreateRtpTransportWithFakePacketTransport(); |
| 232 auto result = ortc_factory_->CreateRtpSender(nullptr, rtp_transport.get()); |
| 233 EXPECT_EQ(RTCErrorType::INVALID_PARAMETER, result.error().type()); |
| 234 } |
| 235 |
| 236 // Calling CreateRtpSender or CreateRtpReceiver with MEDIA_TYPE_DATA should |
| 237 // fail. |
| 238 TEST_F(OrtcFactoryTest, CreateSenderOrReceieverWithInvalidKind) { |
| 239 auto rtp_transport = CreateRtpTransportWithFakePacketTransport(); |
| 240 auto sender_result = ortc_factory_->CreateRtpSender(cricket::MEDIA_TYPE_DATA, |
| 241 rtp_transport.get()); |
| 242 EXPECT_EQ(RTCErrorType::INVALID_PARAMETER, sender_result.error().type()); |
| 243 auto receiver_result = ortc_factory_->CreateRtpReceiver( |
| 244 cricket::MEDIA_TYPE_DATA, rtp_transport.get()); |
| 245 EXPECT_EQ(RTCErrorType::INVALID_PARAMETER, receiver_result.error().type()); |
| 246 } |
| 247 |
| 248 TEST_F(OrtcFactoryTest, CreateSendersOrReceieversWithNullTransport) { |
| 249 auto sender_result = |
| 250 ortc_factory_->CreateRtpSender(cricket::MEDIA_TYPE_AUDIO, nullptr); |
| 251 EXPECT_EQ(RTCErrorType::INVALID_PARAMETER, sender_result.error().type()); |
| 252 auto receiver_result = |
| 253 ortc_factory_->CreateRtpReceiver(cricket::MEDIA_TYPE_AUDIO, nullptr); |
| 254 EXPECT_EQ(RTCErrorType::INVALID_PARAMETER, receiver_result.error().type()); |
| 255 } |
| 256 |
| 257 } // namespace webrtc |
OLD | NEW |