This changes the following module directories:
* webrtc/modules/audio_conference_mixer/interface
* webrtc/modules/interface
* webrtc/modules/media_file/interface
* webrtc/modules/rtp_rtcp/interface
* webrtc/modules/utility/interface
To avoid breaking downstream, I followed this recipe:
1. Copy the interface dir to a new sibling directory: include
2. Update the header guards in the include directory to match the style guide.
3. Update the header guards in the interface directory to match the ones in include. This is required to avoid getting redefinitions in the not-yet-updated downstream code.
4. Add a pragma warning in the header files in the interface dir. Example:
#pragma message("WARNING: webrtc/modules/interface is DEPRECATED; "
"use webrtc/modules/include")
5. Search for all source references to webrtc/modules/interface and update them to webrtc/modules/include (*.c*,*.h,*.mm,*.S)
6. Update all GYP+GN files. This required manual inspection since many subdirectories of webrtc/modules referenced the interface dir using ../interface etc(*.gyp*,*.gn*)
BUG=5095
TESTED=Passing compile-trybots with --clobber flag:
git cl try --clobber --bot=win_compile_rel --bot=linux_compile_rel --bot=android_compile_rel --bot=mac_compile_rel --bot=ios_rel -m tryserver.webrtc
R=stefan@webrtc.org, tommi@webrtc.org
Review URL: https://codereview.webrtc.org/1417683006 .
Cr-Commit-Position: refs/heads/master@{#10500}
173 lines
7.2 KiB
C++
173 lines
7.2 KiB
C++
/*
|
|
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include <list>
|
|
|
|
#include "webrtc/base/checks.h"
|
|
#include "testing/gmock/include/gmock/gmock.h"
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
#include "webrtc/modules/pacing/include/packet_router.h"
|
|
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h"
|
|
#include "webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h"
|
|
#include "webrtc/base/scoped_ptr.h"
|
|
|
|
using ::testing::_;
|
|
using ::testing::AnyNumber;
|
|
using ::testing::NiceMock;
|
|
using ::testing::Return;
|
|
|
|
namespace webrtc {
|
|
|
|
class PacketRouterTest : public ::testing::Test {
|
|
public:
|
|
PacketRouterTest() : packet_router_(new PacketRouter()) {}
|
|
protected:
|
|
const rtc::scoped_ptr<PacketRouter> packet_router_;
|
|
};
|
|
|
|
TEST_F(PacketRouterTest, TimeToSendPacket) {
|
|
MockRtpRtcp rtp_1;
|
|
MockRtpRtcp rtp_2;
|
|
packet_router_->AddRtpModule(&rtp_1);
|
|
packet_router_->AddRtpModule(&rtp_2);
|
|
|
|
const uint16_t kSsrc1 = 1234;
|
|
uint16_t sequence_number = 17;
|
|
uint64_t timestamp = 7890;
|
|
bool retransmission = false;
|
|
|
|
// Send on the first module by letting rtp_1 be sending with correct ssrc.
|
|
EXPECT_CALL(rtp_1, SendingMedia()).Times(1).WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_1, SSRC()).Times(1).WillOnce(Return(kSsrc1));
|
|
EXPECT_CALL(rtp_1, TimeToSendPacket(kSsrc1, sequence_number, timestamp,
|
|
retransmission))
|
|
.Times(1)
|
|
.WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_2, TimeToSendPacket(_, _, _, _)).Times(0);
|
|
EXPECT_TRUE(packet_router_->TimeToSendPacket(kSsrc1, sequence_number,
|
|
timestamp, retransmission));
|
|
|
|
// Send on the second module by letting rtp_2 be sending, but not rtp_1.
|
|
++sequence_number;
|
|
timestamp += 30;
|
|
retransmission = true;
|
|
const uint16_t kSsrc2 = 4567;
|
|
EXPECT_CALL(rtp_1, SendingMedia()).Times(1).WillOnce(Return(false));
|
|
EXPECT_CALL(rtp_2, SendingMedia()).Times(1).WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_2, SSRC()).Times(1).WillOnce(Return(kSsrc2));
|
|
EXPECT_CALL(rtp_1, TimeToSendPacket(_, _, _, _)).Times(0);
|
|
EXPECT_CALL(rtp_2, TimeToSendPacket(kSsrc2, sequence_number, timestamp,
|
|
retransmission))
|
|
.Times(1)
|
|
.WillOnce(Return(true));
|
|
EXPECT_TRUE(packet_router_->TimeToSendPacket(kSsrc2, sequence_number,
|
|
timestamp, retransmission));
|
|
|
|
// No module is sending, hence no packet should be sent.
|
|
EXPECT_CALL(rtp_1, SendingMedia()).Times(1).WillOnce(Return(false));
|
|
EXPECT_CALL(rtp_1, TimeToSendPacket(_, _, _, _)).Times(0);
|
|
EXPECT_CALL(rtp_2, SendingMedia()).Times(1).WillOnce(Return(false));
|
|
EXPECT_CALL(rtp_2, TimeToSendPacket(_, _, _, _)).Times(0);
|
|
EXPECT_TRUE(packet_router_->TimeToSendPacket(kSsrc1, sequence_number,
|
|
timestamp, retransmission));
|
|
|
|
// Add a packet with incorrect ssrc and test it's dropped in the router.
|
|
EXPECT_CALL(rtp_1, SendingMedia()).Times(1).WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_1, SSRC()).Times(1).WillOnce(Return(kSsrc1));
|
|
EXPECT_CALL(rtp_2, SendingMedia()).Times(1).WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_2, SSRC()).Times(1).WillOnce(Return(kSsrc2));
|
|
EXPECT_CALL(rtp_1, TimeToSendPacket(_, _, _, _)).Times(0);
|
|
EXPECT_CALL(rtp_2, TimeToSendPacket(_, _, _, _)).Times(0);
|
|
EXPECT_TRUE(packet_router_->TimeToSendPacket(kSsrc1 + kSsrc2, sequence_number,
|
|
timestamp, retransmission));
|
|
|
|
packet_router_->RemoveRtpModule(&rtp_1);
|
|
|
|
// rtp_1 has been removed, try sending a packet on that ssrc and make sure
|
|
// it is dropped as expected by not expecting any calls to rtp_1.
|
|
EXPECT_CALL(rtp_2, SendingMedia()).Times(1).WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_2, SSRC()).Times(1).WillOnce(Return(kSsrc2));
|
|
EXPECT_CALL(rtp_2, TimeToSendPacket(_, _, _, _)).Times(0);
|
|
EXPECT_TRUE(packet_router_->TimeToSendPacket(kSsrc1, sequence_number,
|
|
timestamp, retransmission));
|
|
|
|
packet_router_->RemoveRtpModule(&rtp_2);
|
|
}
|
|
|
|
TEST_F(PacketRouterTest, TimeToSendPadding) {
|
|
const uint16_t kSsrc1 = 1234;
|
|
const uint16_t kSsrc2 = 4567;
|
|
|
|
MockRtpRtcp rtp_1;
|
|
EXPECT_CALL(rtp_1, SSRC()).WillRepeatedly(Return(kSsrc1));
|
|
MockRtpRtcp rtp_2;
|
|
EXPECT_CALL(rtp_2, SSRC()).WillRepeatedly(Return(kSsrc2));
|
|
packet_router_->AddRtpModule(&rtp_1);
|
|
packet_router_->AddRtpModule(&rtp_2);
|
|
|
|
// Default configuration, sending padding on all modules sending media,
|
|
// ordered by SSRC.
|
|
const size_t requested_padding_bytes = 1000;
|
|
const size_t sent_padding_bytes = 890;
|
|
EXPECT_CALL(rtp_1, SendingMedia()).Times(1).WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_1, TimeToSendPadding(requested_padding_bytes))
|
|
.Times(1)
|
|
.WillOnce(Return(sent_padding_bytes));
|
|
EXPECT_CALL(rtp_2, SendingMedia()).Times(1).WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_2,
|
|
TimeToSendPadding(requested_padding_bytes - sent_padding_bytes))
|
|
.Times(1)
|
|
.WillOnce(Return(requested_padding_bytes - sent_padding_bytes));
|
|
EXPECT_EQ(requested_padding_bytes,
|
|
packet_router_->TimeToSendPadding(requested_padding_bytes));
|
|
|
|
// Let only the second module be sending and verify the padding request is
|
|
// routed there.
|
|
EXPECT_CALL(rtp_1, SendingMedia()).Times(1).WillOnce(Return(false));
|
|
EXPECT_CALL(rtp_1, TimeToSendPadding(requested_padding_bytes)).Times(0);
|
|
EXPECT_CALL(rtp_2, SendingMedia()).Times(1).WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_2, TimeToSendPadding(_))
|
|
.Times(1)
|
|
.WillOnce(Return(sent_padding_bytes));
|
|
EXPECT_EQ(sent_padding_bytes,
|
|
packet_router_->TimeToSendPadding(requested_padding_bytes));
|
|
|
|
// No sending module at all.
|
|
EXPECT_CALL(rtp_1, SendingMedia()).Times(1).WillOnce(Return(false));
|
|
EXPECT_CALL(rtp_1, TimeToSendPadding(requested_padding_bytes)).Times(0);
|
|
EXPECT_CALL(rtp_2, SendingMedia()).Times(1).WillOnce(Return(false));
|
|
EXPECT_CALL(rtp_2, TimeToSendPadding(_)).Times(0);
|
|
EXPECT_EQ(0u, packet_router_->TimeToSendPadding(requested_padding_bytes));
|
|
|
|
packet_router_->RemoveRtpModule(&rtp_1);
|
|
|
|
// rtp_1 has been removed, try sending padding and make sure rtp_1 isn't asked
|
|
// to send by not expecting any calls. Instead verify rtp_2 is called.
|
|
EXPECT_CALL(rtp_2, SendingMedia()).Times(1).WillOnce(Return(true));
|
|
EXPECT_CALL(rtp_2, TimeToSendPadding(requested_padding_bytes)).Times(1);
|
|
EXPECT_EQ(0u, packet_router_->TimeToSendPadding(requested_padding_bytes));
|
|
|
|
packet_router_->RemoveRtpModule(&rtp_2);
|
|
}
|
|
|
|
TEST_F(PacketRouterTest, AllocateSequenceNumbers) {
|
|
const uint16_t kStartSeq = 0xFFF0;
|
|
const size_t kNumPackets = 32;
|
|
|
|
packet_router_->SetTransportWideSequenceNumber(kStartSeq - 1);
|
|
|
|
for (size_t i = 0; i < kNumPackets; ++i) {
|
|
uint16_t seq = packet_router_->AllocateSequenceNumber();
|
|
uint32_t expected_unwrapped_seq = static_cast<uint32_t>(kStartSeq) + i;
|
|
EXPECT_EQ(static_cast<uint16_t>(expected_unwrapped_seq & 0xFFFF), seq);
|
|
}
|
|
}
|
|
} // namespace webrtc
|