blob: b41f32fc9cddbd1198dcd66c1acac8ce68418ce8 [file] [log] [blame]
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +00001/*
2 * Copyright (c) 2013 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 <map>
kwibergbfefb032016-05-01 14:53:46 -070012#include <memory>
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000013
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020014#include "modules/rtp_rtcp/source/rtp_utility.h"
15#include "test/gtest.h"
16#include "test/rtp_file_reader.h"
17#include "test/testsupport/fileutils.h"
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000018
19namespace webrtc {
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000020
21class TestRtpFileReader : public ::testing::Test {
22 public:
henrik.lundin@webrtc.org38c121c2014-09-30 11:08:44 +000023 void Init(const std::string& filename, bool headers_only_file) {
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000024 std::string filepath =
25 test::ResourcePath("video_coding/" + filename, "rtp");
26 rtp_packet_source_.reset(
27 test::RtpFileReader::Create(test::RtpFileReader::kRtpDump, filepath));
28 ASSERT_TRUE(rtp_packet_source_.get() != NULL);
henrik.lundin@webrtc.org38c121c2014-09-30 11:08:44 +000029 headers_only_file_ = headers_only_file;
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000030 }
31
32 int CountRtpPackets() {
henrik.lundin@webrtc.org91d928e2014-11-26 15:50:30 +000033 test::RtpPacket packet;
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000034 int c = 0;
henrik.lundin@webrtc.org38c121c2014-09-30 11:08:44 +000035 while (rtp_packet_source_->NextPacket(&packet)) {
36 if (headers_only_file_)
37 EXPECT_LT(packet.length, packet.original_length);
38 else
39 EXPECT_EQ(packet.length, packet.original_length);
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000040 c++;
henrik.lundin@webrtc.org38c121c2014-09-30 11:08:44 +000041 }
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000042 return c;
43 }
44
45 private:
kwibergbfefb032016-05-01 14:53:46 -070046 std::unique_ptr<test::RtpFileReader> rtp_packet_source_;
henrik.lundin@webrtc.org38c121c2014-09-30 11:08:44 +000047 bool headers_only_file_;
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000048};
49
50TEST_F(TestRtpFileReader, Test60Packets) {
henrik.lundin@webrtc.org38c121c2014-09-30 11:08:44 +000051 Init("pltype103", false);
52 EXPECT_EQ(60, CountRtpPackets());
53}
54
55TEST_F(TestRtpFileReader, Test60PacketsHeaderOnly) {
56 Init("pltype103_header_only", true);
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000057 EXPECT_EQ(60, CountRtpPackets());
58}
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000059
60typedef std::map<uint32_t, int> PacketsPerSsrc;
61
62class TestPcapFileReader : public ::testing::Test {
63 public:
64 void Init(const std::string& filename) {
65 std::string filepath =
66 test::ResourcePath("video_coding/" + filename, "pcap");
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000067 rtp_packet_source_.reset(
68 test::RtpFileReader::Create(test::RtpFileReader::kPcap, filepath));
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000069 ASSERT_TRUE(rtp_packet_source_.get() != NULL);
70 }
71
72 int CountRtpPackets() {
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000073 int c = 0;
henrik.lundin@webrtc.org91d928e2014-11-26 15:50:30 +000074 test::RtpPacket packet;
henrik.lundin@webrtc.org38c121c2014-09-30 11:08:44 +000075 while (rtp_packet_source_->NextPacket(&packet)) {
76 EXPECT_EQ(packet.length, packet.original_length);
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000077 c++;
henrik.lundin@webrtc.org38c121c2014-09-30 11:08:44 +000078 }
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000079 return c;
80 }
81
82 PacketsPerSsrc CountRtpPacketsPerSsrc() {
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000083 PacketsPerSsrc pps;
henrik.lundin@webrtc.org91d928e2014-11-26 15:50:30 +000084 test::RtpPacket packet;
pbos@webrtc.org4b5625e2014-08-06 16:26:56 +000085 while (rtp_packet_source_->NextPacket(&packet)) {
86 RtpUtility::RtpHeaderParser rtp_header_parser(packet.data, packet.length);
stefan@webrtc.orga5cb98c2013-05-29 12:12:51 +000087 webrtc::RTPHeader header;
danilchapf6975f42015-12-28 10:18:46 -080088 if (!rtp_header_parser.RTCP() &&
89 rtp_header_parser.Parse(&header, nullptr)) {
stefan@webrtc.orga5cb98c2013-05-29 12:12:51 +000090 pps[header.ssrc]++;
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000091 }
92 }
93 return pps;
94 }
95
96 private:
kwibergbfefb032016-05-01 14:53:46 -070097 std::unique_ptr<test::RtpFileReader> rtp_packet_source_;
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +000098};
99
100TEST_F(TestPcapFileReader, TestEthernetIIFrame) {
101 Init("frame-ethernet-ii");
102 EXPECT_EQ(368, CountRtpPackets());
103}
104
105TEST_F(TestPcapFileReader, TestLoopbackFrame) {
106 Init("frame-loopback");
107 EXPECT_EQ(491, CountRtpPackets());
108}
109
110TEST_F(TestPcapFileReader, TestTwoSsrc) {
111 Init("ssrcs-2");
112 PacketsPerSsrc pps = CountRtpPacketsPerSsrc();
113 EXPECT_EQ(2UL, pps.size());
114 EXPECT_EQ(370, pps[0x78d48f61]);
115 EXPECT_EQ(60, pps[0xae94130b]);
116}
117
118TEST_F(TestPcapFileReader, TestThreeSsrc) {
119 Init("ssrcs-3");
120 PacketsPerSsrc pps = CountRtpPacketsPerSsrc();
121 EXPECT_EQ(3UL, pps.size());
122 EXPECT_EQ(162, pps[0x938c5eaa]);
123 EXPECT_EQ(113, pps[0x59fe6ef0]);
124 EXPECT_EQ(61, pps[0xed2bd2ac]);
125}
solenberg@webrtc.org56b5f772013-04-16 10:31:56 +0000126} // namespace webrtc