2016-01-15 13:19:53 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/rtp_rtcp/source/rtcp_packet/fir.h"
|
2016-01-15 13:19:53 +01:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "test/gmock.h"
|
|
|
|
|
#include "test/gtest.h"
|
|
|
|
|
#include "test/rtcp_packet_parser.h"
|
2016-01-15 13:19:53 +01:00
|
|
|
|
2016-01-22 11:04:56 +01:00
|
|
|
using testing::AllOf;
|
|
|
|
|
using testing::ElementsAre;
|
|
|
|
|
using testing::ElementsAreArray;
|
|
|
|
|
using testing::Eq;
|
|
|
|
|
using testing::Field;
|
|
|
|
|
using testing::make_tuple;
|
2016-01-15 13:19:53 +01:00
|
|
|
using webrtc::rtcp::Fir;
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
2016-01-22 11:04:56 +01:00
|
|
|
namespace {
|
2016-01-15 13:19:53 +01:00
|
|
|
|
2016-05-31 01:36:37 -07:00
|
|
|
constexpr uint32_t kSenderSsrc = 0x12345678;
|
|
|
|
|
constexpr uint32_t kRemoteSsrc = 0x23456789;
|
|
|
|
|
constexpr uint8_t kSeqNr = 13;
|
2016-01-22 11:04:56 +01:00
|
|
|
// Manually created Fir packet matching constants above.
|
2016-05-31 01:36:37 -07:00
|
|
|
constexpr uint8_t kPacket[] = {0x84, 206, 0x00, 0x04, 0x12, 0x34, 0x56,
|
|
|
|
|
0x78, 0x00, 0x00, 0x00, 0x00, 0x23, 0x45,
|
|
|
|
|
0x67, 0x89, 0x0d, 0x00, 0x00, 0x00};
|
|
|
|
|
} // namespace
|
2016-01-22 11:04:56 +01:00
|
|
|
|
|
|
|
|
TEST(RtcpPacketFirTest, Parse) {
|
|
|
|
|
Fir mutable_parsed;
|
2016-05-31 01:36:37 -07:00
|
|
|
EXPECT_TRUE(test::ParseSinglePacket(kPacket, &mutable_parsed));
|
2016-01-22 11:04:56 +01:00
|
|
|
const Fir& parsed = mutable_parsed; // Read values from constant object.
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(kSenderSsrc, parsed.sender_ssrc());
|
|
|
|
|
EXPECT_THAT(parsed.requests(),
|
|
|
|
|
ElementsAre(AllOf(Field(&Fir::Request::ssrc, Eq(kRemoteSsrc)),
|
|
|
|
|
Field(&Fir::Request::seq_nr, Eq(kSeqNr)))));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(RtcpPacketFirTest, Create) {
|
|
|
|
|
Fir fir;
|
2016-09-27 09:27:47 -07:00
|
|
|
fir.SetSenderSsrc(kSenderSsrc);
|
|
|
|
|
fir.AddRequestTo(kRemoteSsrc, kSeqNr);
|
2016-01-22 11:04:56 +01:00
|
|
|
|
2016-02-17 03:11:42 -08:00
|
|
|
rtc::Buffer packet = fir.Build();
|
2016-01-22 11:04:56 +01:00
|
|
|
|
2016-02-17 03:11:42 -08:00
|
|
|
EXPECT_THAT(make_tuple(packet.data(), packet.size()),
|
2016-01-22 11:04:56 +01:00
|
|
|
ElementsAreArray(kPacket));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(RtcpPacketFirTest, TwoFciEntries) {
|
|
|
|
|
Fir fir;
|
2016-09-27 09:27:47 -07:00
|
|
|
fir.SetSenderSsrc(kSenderSsrc);
|
|
|
|
|
fir.AddRequestTo(kRemoteSsrc, kSeqNr);
|
|
|
|
|
fir.AddRequestTo(kRemoteSsrc + 1, kSeqNr + 1);
|
2016-01-22 11:04:56 +01:00
|
|
|
|
2016-02-17 03:11:42 -08:00
|
|
|
rtc::Buffer packet = fir.Build();
|
2016-01-22 11:04:56 +01:00
|
|
|
Fir parsed;
|
2016-05-31 01:36:37 -07:00
|
|
|
EXPECT_TRUE(test::ParseSinglePacket(packet, &parsed));
|
2016-01-22 11:04:56 +01:00
|
|
|
|
|
|
|
|
EXPECT_EQ(kSenderSsrc, parsed.sender_ssrc());
|
|
|
|
|
EXPECT_THAT(parsed.requests(),
|
|
|
|
|
ElementsAre(AllOf(Field(&Fir::Request::ssrc, Eq(kRemoteSsrc)),
|
|
|
|
|
Field(&Fir::Request::seq_nr, Eq(kSeqNr))),
|
|
|
|
|
AllOf(Field(&Fir::Request::ssrc, Eq(kRemoteSsrc + 1)),
|
|
|
|
|
Field(&Fir::Request::seq_nr, Eq(kSeqNr + 1)))));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(RtcpPacketFirTest, ParseFailsOnZeroFciEntries) {
|
2016-05-31 01:36:37 -07:00
|
|
|
constexpr uint8_t kPacketWithoutFci[] = {0x84, 206, 0x00, 0x02, 0x12, 0x34,
|
|
|
|
|
0x56, 0x78, 0x00, 0x00, 0x00, 0x00};
|
2016-01-22 11:04:56 +01:00
|
|
|
Fir parsed;
|
2016-05-31 01:36:37 -07:00
|
|
|
EXPECT_FALSE(test::ParseSinglePacket(kPacketWithoutFci, &parsed));
|
2016-01-15 13:19:53 +01:00
|
|
|
}
|
|
|
|
|
|
2016-01-22 11:04:56 +01:00
|
|
|
TEST(RtcpPacketFirTest, ParseFailsOnFractionalFciEntries) {
|
2016-05-31 01:36:37 -07:00
|
|
|
constexpr uint8_t kPacketWithOneAndHalfFci[] = {
|
|
|
|
|
0x84, 206, 0x00, 0x05, 0x12, 0x34, 0x56, 0x78, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
|
0x23, 0x45, 0x67, 0x89, 0x0d, 0x00, 0x00, 0x00, 'h', 'a', 'l', 'f'};
|
2016-01-22 11:04:56 +01:00
|
|
|
|
2016-05-31 01:36:37 -07:00
|
|
|
Fir parsed;
|
|
|
|
|
EXPECT_FALSE(test::ParseSinglePacket(kPacketWithOneAndHalfFci, &parsed));
|
2016-01-22 11:04:56 +01:00
|
|
|
}
|
2016-05-31 01:36:37 -07:00
|
|
|
|
2016-01-15 13:19:53 +01:00
|
|
|
} // namespace webrtc
|