Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(538)

Side by Side Diff: webrtc/call/call_unittest.cc

Issue 2834663003: Allow mocking SendSideCongestionController for Call tests. (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/call/call.cc ('k') | webrtc/call/fake_rtp_transport_controller_send.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 =
324 rtc::MakeUnique<FakeRtpTransportControllerSend>(&mock_cc);
325 std::unique_ptr<Call> call(Call::Create(config, std::move(transport_send)));
326
327 Call::Config::BitrateConfig bitrate_config;
328 bitrate_config.min_bitrate_bps = 1;
329 bitrate_config.start_bitrate_bps = 2;
330 bitrate_config.max_bitrate_bps = 3;
331
332 EXPECT_CALL(mock_cc, SetBweBitrates(1, 2, 3));
333 call->SetBitrateConfig(bitrate_config);
334 }
335
308 } // namespace webrtc 336 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/call/call.cc ('k') | webrtc/call/fake_rtp_transport_controller_send.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698