1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/*
* Copyright (c) 2019 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 "api/rtp_packet_infos.h"
#include "test/gmock.h"
#include "test/gtest.h"
namespace webrtc {
namespace {
using ::testing::ElementsAre;
using ::testing::SizeIs;
template <typename Iterator>
RtpPacketInfos::vector_type ToVector(Iterator begin, Iterator end) {
return RtpPacketInfos::vector_type(begin, end);
}
} // namespace
TEST(RtpPacketInfosTest, BasicFunctionality) {
RtpPacketInfo p0(/*ssrc=*/123, /*csrcs=*/{1, 2}, /*rtp_timestamp=*/89,
/*receive_time=*/Timestamp::Millis(7));
p0.set_audio_level(5);
p0.set_absolute_capture_time(AbsoluteCaptureTime{
.absolute_capture_timestamp = 45, .estimated_capture_clock_offset = 78});
RtpPacketInfo p1(/*ssrc=*/456, /*csrcs=*/{3, 4}, /*rtp_timestamp=*/89,
/*receive_time=*/Timestamp::Millis(1));
p1.set_audio_level(4);
p1.set_absolute_capture_time(AbsoluteCaptureTime{
.absolute_capture_timestamp = 13, .estimated_capture_clock_offset = 21});
RtpPacketInfo p2(/*ssrc=*/789, /*csrcs=*/{5, 6}, /*rtp_timestamp=*/88,
/*receive_time=*/Timestamp::Millis(7));
p2.set_audio_level(1);
p2.set_absolute_capture_time(AbsoluteCaptureTime{
.absolute_capture_timestamp = 99, .estimated_capture_clock_offset = 78});
RtpPacketInfos x({p0, p1, p2});
ASSERT_THAT(x, SizeIs(3));
EXPECT_EQ(x[0], p0);
EXPECT_EQ(x[1], p1);
EXPECT_EQ(x[2], p2);
EXPECT_EQ(x.front(), p0);
EXPECT_EQ(x.back(), p2);
EXPECT_THAT(ToVector(x.begin(), x.end()), ElementsAre(p0, p1, p2));
EXPECT_THAT(ToVector(x.rbegin(), x.rend()), ElementsAre(p2, p1, p0));
EXPECT_THAT(ToVector(x.cbegin(), x.cend()), ElementsAre(p0, p1, p2));
EXPECT_THAT(ToVector(x.crbegin(), x.crend()), ElementsAre(p2, p1, p0));
EXPECT_FALSE(x.empty());
}
TEST(RtpPacketInfosTest, CopyShareData) {
RtpPacketInfo p0(/*ssrc=*/123, /*csrcs=*/{1, 2}, /*rtp_timestamp=*/89,
/*receive_time=*/Timestamp::Millis(7));
p0.set_audio_level(5);
p0.set_absolute_capture_time(AbsoluteCaptureTime{
.absolute_capture_timestamp = 45, .estimated_capture_clock_offset = 78});
RtpPacketInfo p1(/*ssrc=*/456, /*csrcs=*/{3, 4}, /*rtp_timestamp=*/89,
/*receive_time=*/Timestamp::Millis(1));
p1.set_audio_level(4);
p1.set_absolute_capture_time(AbsoluteCaptureTime{
.absolute_capture_timestamp = 13, .estimated_capture_clock_offset = 21});
RtpPacketInfo p2(/*ssrc=*/789, /*csrcs=*/{5, 6}, /*rtp_timestamp=*/88,
/*receive_time=*/Timestamp::Millis(7));
p2.set_audio_level(1);
p2.set_absolute_capture_time(AbsoluteCaptureTime{
.absolute_capture_timestamp = 99, .estimated_capture_clock_offset = 78});
RtpPacketInfos lhs({p0, p1, p2});
RtpPacketInfos rhs = lhs;
ASSERT_THAT(lhs, SizeIs(3));
ASSERT_THAT(rhs, SizeIs(3));
for (size_t i = 0; i < lhs.size(); ++i) {
EXPECT_EQ(lhs[i], rhs[i]);
}
EXPECT_EQ(lhs.front(), rhs.front());
EXPECT_EQ(lhs.back(), rhs.back());
EXPECT_EQ(lhs.begin(), rhs.begin());
EXPECT_EQ(lhs.end(), rhs.end());
EXPECT_EQ(lhs.rbegin(), rhs.rbegin());
EXPECT_EQ(lhs.rend(), rhs.rend());
EXPECT_EQ(lhs.cbegin(), rhs.cbegin());
EXPECT_EQ(lhs.cend(), rhs.cend());
EXPECT_EQ(lhs.crbegin(), rhs.crbegin());
EXPECT_EQ(lhs.crend(), rhs.crend());
EXPECT_EQ(lhs.empty(), rhs.empty());
}
} // namespace webrtc
|