OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 <list> | 11 #include <list> |
12 #include <map> | 12 #include <map> |
13 #include <memory> | 13 #include <memory> |
| 14 #include <utility> |
14 | 15 |
| 16 #include "webrtc/base/ptr_util.h" |
15 #include "webrtc/call/audio_state.h" | 17 #include "webrtc/call/audio_state.h" |
16 #include "webrtc/call/call.h" | 18 #include "webrtc/call/call.h" |
| 19 #include "webrtc/call/fake_rtp_transport_controller_send.h" |
17 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" | 20 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" |
18 #include "webrtc/modules/audio_mixer/audio_mixer_impl.h" | 21 #include "webrtc/modules/audio_mixer/audio_mixer_impl.h" |
| 22 #include "webrtc/modules/congestion_controller/include/mock/mock_send_side_conge
stion_controller.h" |
19 #include "webrtc/test/gtest.h" | 23 #include "webrtc/test/gtest.h" |
20 #include "webrtc/test/mock_audio_decoder_factory.h" | 24 #include "webrtc/test/mock_audio_decoder_factory.h" |
21 #include "webrtc/test/mock_transport.h" | 25 #include "webrtc/test/mock_transport.h" |
22 #include "webrtc/test/mock_voice_engine.h" | 26 #include "webrtc/test/mock_voice_engine.h" |
23 | 27 |
24 namespace { | 28 namespace { |
25 | 29 |
26 struct CallHelper { | 30 struct CallHelper { |
27 explicit CallHelper( | 31 explicit CallHelper( |
28 rtc::scoped_refptr<webrtc::AudioDecoderFactory> decoder_factory = nullptr) | 32 rtc::scoped_refptr<webrtc::AudioDecoderFactory> decoder_factory = nullptr) |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 config.remote_ssrc = 5548; | 302 config.remote_ssrc = 5548; |
299 stream = call->CreateFlexfecReceiveStream(config); | 303 stream = call->CreateFlexfecReceiveStream(config); |
300 EXPECT_NE(stream, nullptr); | 304 EXPECT_NE(stream, nullptr); |
301 streams.push_back(stream); | 305 streams.push_back(stream); |
302 | 306 |
303 for (auto s : streams) { | 307 for (auto s : streams) { |
304 call->DestroyFlexfecReceiveStream(s); | 308 call->DestroyFlexfecReceiveStream(s); |
305 } | 309 } |
306 } | 310 } |
307 | 311 |
| 312 // TODO(zstein): This is just a motivating example for |
| 313 // MockSendSideCongestionController. It should be deleted once we have more |
| 314 // meaningful tests. |
| 315 TEST(CallTest, MockSendSideCongestionControllerExample) { |
| 316 RtcEventLogNullImpl event_log; |
| 317 Call::Config config(&event_log); |
| 318 |
| 319 SimulatedClock clock(123456); |
| 320 PacketRouter packet_router; |
| 321 testing::NiceMock<test::MockSendSideCongestionController> mock_cc( |
| 322 &clock, &event_log, &packet_router); |
| 323 auto transport_send = rtc::MakeUnique<FakeRtpTransportController>(&mock_cc); |
| 324 std::unique_ptr<Call> call(Call::Create(config, std::move(transport_send))); |
| 325 |
| 326 Call::Config::BitrateConfig bitrate_config; |
| 327 bitrate_config.min_bitrate_bps = 1; |
| 328 bitrate_config.start_bitrate_bps = 2; |
| 329 bitrate_config.max_bitrate_bps = 3; |
| 330 |
| 331 EXPECT_CALL(mock_cc, SetBweBitrates(1, 2, 3)); |
| 332 call->SetBitrateConfig(bitrate_config); |
| 333 } |
| 334 |
308 } // namespace webrtc | 335 } // namespace webrtc |
OLD | NEW |