forked from google/lyra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packet_test.cc
248 lines (214 loc) · 9.43 KB
/
packet_test.cc
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "packet.h"
#include <bitset>
#include <climits>
#include <cmath>
#include <cstdint>
#include <string>
#include <vector>
#include "gtest/gtest.h"
#include "absl/types/optional.h"
#include "absl/types/span.h"
namespace chromemedia {
namespace codec {
namespace {
class PacketTest : public testing::Test {
protected:
// Used by several tests. Unrelated to what Lyra actually uses.
static constexpr int kNumHeaderBits = 8;
static constexpr int kNumQuantizedBits = 104;
static constexpr int kPacketSize =
(kNumHeaderBits + kNumQuantizedBits) / CHAR_BIT;
bool DoesPacketContainQuantized(const std::vector<uint8_t>& packet,
const std::string& quantized_string,
int num_header_bits, int num_quantized_bits) {
std::string packet_data;
for (size_t i = 0; i < packet.size(); i++) {
packet_data.append(std::bitset<CHAR_BIT>(packet[i]).to_string());
}
packet_data = packet_data.substr(num_header_bits, packet_data.size());
// Remove extra bits at the end of packet_data if the number of bits stored
// in the packet is not evenly divisible by CHAR_BITS.
packet_data = packet_data.substr(0, num_quantized_bits);
return packet_data == quantized_string;
}
int ExpectedPacketSize(int num_data_bits, int header_size) {
return static_cast<int>(
std::ceil(static_cast<float>(num_data_bits + header_size) /
static_cast<float>(CHAR_BIT)));
}
};
TEST_F(PacketTest, PacketSize) {
constexpr int kNumHeaderBitsTest = 7;
constexpr int kNumQuantizedBitsTest = 52;
Packet<kNumQuantizedBitsTest, kNumHeaderBitsTest> packet;
EXPECT_EQ(packet.PacketSize(),
ExpectedPacketSize(kNumQuantizedBitsTest, kNumHeaderBitsTest));
}
TEST_F(PacketTest, UnpackVariableHeader) {
constexpr int kNumHeaderBitsTest = 3;
constexpr int kNumQuantizedBitsTest = 16;
// Create packet with header set to 0s, bits set to 1s.
std::vector<uint8_t> encoded = {
0b00011111,
0b11111111,
0b11100000,
};
std::bitset<kNumQuantizedBitsTest> expected_bits("1111111111111111");
Packet<kNumQuantizedBitsTest, kNumHeaderBitsTest> packet;
const auto unpacked_or = packet.UnpackPacket(absl::MakeConstSpan(encoded));
EXPECT_EQ(expected_bits.to_string(), unpacked_or.value());
}
TEST_F(PacketTest, UnpackNoTrailingZeros) {
// Create packet. (kNumHeaderBitsTest + kNumQuantizedBitsTest) % CHAR_BIT = 0.
constexpr int kNumHeaderBitsTest = 2;
constexpr int kNumQuantizedBitsTest = 22;
std::vector<uint8_t> encoded(3, 0b11111111);
encoded[0] = 0b00111111; // Set header
std::bitset<kNumQuantizedBitsTest> expected_bits("1111111111111111111111");
Packet<kNumQuantizedBitsTest, kNumHeaderBitsTest> packet;
const auto unpacked_or = packet.UnpackPacket(absl::MakeConstSpan(encoded));
EXPECT_EQ(expected_bits.to_string(), unpacked_or.value());
}
TEST_F(PacketTest, UnpackBigHeader) {
// Create packet with header set to 0s, bits set to 1s.
constexpr int kNumHeaderBitsTest = 22;
constexpr int kNumQuantizedBitsTest = 22;
std::vector<uint8_t> encoded = {
0b00000000, 0b00000000, 0b00000011, 0b11111111, 0b11111111,
0b11110000, // (kNumHeaderBitsTest + kNumQuantizedBitsTest) % CHAR_BIT =
// 4
};
std::bitset<kNumQuantizedBitsTest> expected_bits("1111111111111111111111");
Packet<kNumQuantizedBitsTest, kNumHeaderBitsTest> packet;
const auto unpacked_or = packet.UnpackPacket(absl::MakeConstSpan(encoded));
EXPECT_EQ(expected_bits.to_string(), unpacked_or.value());
}
TEST_F(PacketTest, UnpackQuantizedBitsAllOnes) {
std::vector<uint8_t> encoded(kPacketSize, 0b11111111);
encoded[0] = 0b00000000; // Zero out header.
Packet<kNumQuantizedBits, kNumHeaderBits> packet;
const auto unpacked_or = packet.UnpackPacket(absl::MakeConstSpan(encoded));
EXPECT_TRUE(DoesPacketContainQuantized(encoded, unpacked_or.value(),
kNumHeaderBits, kNumQuantizedBits));
}
TEST_F(PacketTest, UnpackQuantizedBitsAlternatingBytesOfOnesAndZeros) {
// After the header, the most significant 8 bits have the pattern 00000000,
// then the next 8 most significant bits have the pattern 11111111. Repeat
// this pattern for the entire packet.
std::vector<uint8_t> encoded(kPacketSize, 0b00000000);
const int num_header_bytes = std::ceil(static_cast<float>(kNumHeaderBits) /
static_cast<float>(CHAR_BIT));
for (size_t i = num_header_bytes + 1; i < encoded.size(); i += 2) {
encoded[i] = 0b11111111;
}
Packet<kNumQuantizedBits, kNumHeaderBits> packet;
const auto unpacked_or = packet.UnpackPacket(absl::MakeConstSpan(encoded));
EXPECT_TRUE(DoesPacketContainQuantized(encoded, unpacked_or.value(),
kNumHeaderBits, kNumQuantizedBits));
}
TEST_F(PacketTest, UnpackQuantizedBitsAlternatingOnesAndZeros) {
std::vector<uint8_t> encoded(kPacketSize, 0b10101010);
encoded[0] = 0b00000000; // Zero out header.
Packet<kNumQuantizedBits, kNumHeaderBits> packet;
const auto unpacked_or = packet.UnpackPacket(absl::MakeConstSpan(encoded));
EXPECT_TRUE(DoesPacketContainQuantized(encoded, unpacked_or.value(),
kNumHeaderBits, kNumQuantizedBits));
}
TEST_F(PacketTest, InvalidPacketSize) {
std::vector<uint8_t> invalid_packet(kPacketSize - 1, 0b11111111);
Packet<kNumQuantizedBits, kNumHeaderBits> packet;
const auto unpacked_or =
packet.UnpackPacket(absl::MakeConstSpan(invalid_packet));
EXPECT_FALSE(unpacked_or.has_value());
}
TEST_F(PacketTest, PackVariableHeader) {
std::bitset<kNumQuantizedBits> quantized(0);
quantized.flip();
constexpr int kNumHeaderBitsTest = 10;
Packet<kNumQuantizedBits, kNumHeaderBitsTest> packet;
const std::vector<uint8_t> encoded =
packet.PackQuantized(quantized.to_string());
EXPECT_EQ(encoded.size(),
ExpectedPacketSize(kNumQuantizedBits, kNumHeaderBitsTest));
EXPECT_TRUE(DoesPacketContainQuantized(
encoded, quantized.to_string(), kNumHeaderBitsTest, kNumQuantizedBits));
}
TEST_F(PacketTest, PackQuantizedBitsAllOnes) {
std::bitset<kNumQuantizedBits> quantized(0);
quantized.flip();
Packet<kNumQuantizedBits, kNumHeaderBits> packet;
const std::vector<uint8_t> encoded =
packet.PackQuantized(quantized.to_string());
EXPECT_EQ(encoded.size(), kPacketSize);
EXPECT_TRUE(DoesPacketContainQuantized(encoded, quantized.to_string(),
kNumHeaderBits, kNumQuantizedBits));
}
TEST_F(PacketTest, PackQuantizedBitsAlternatingOnesAndZeros) {
// The bit pattern has 1 at evenly indexed bits and 0 elsewhere.
std::bitset<kNumQuantizedBits> quantized(0);
for (size_t i = 0; i < quantized.size(); i += 2) {
quantized.flip(i);
}
Packet<kNumQuantizedBits, kNumHeaderBits> packet;
const std::vector<uint8_t> encoded =
packet.PackQuantized(quantized.to_string());
EXPECT_EQ(encoded.size(), kPacketSize);
EXPECT_TRUE(DoesPacketContainQuantized(encoded, quantized.to_string(),
kNumHeaderBits, kNumQuantizedBits));
}
TEST_F(PacketTest, PackQuantizedBitsAlternateBytesOfOnesAndZeros) {
// The most significant 8 bits have the pattern 00000000, then the next 8 most
// significant bits have the pattern 11111111. Repeat this pattern for the
// entire packet.
std::bitset<kNumQuantizedBits> quantized(0);
for (size_t bit_offset = CHAR_BIT; bit_offset < quantized.size();
bit_offset += 2 * CHAR_BIT) {
for (size_t bit_index = bit_offset; bit_index < bit_offset + CHAR_BIT;
++bit_index) {
quantized.flip(bit_index);
}
}
Packet<kNumQuantizedBits, kNumHeaderBits> packet;
const std::vector<uint8_t> encoded =
packet.PackQuantized(quantized.to_string());
EXPECT_EQ(encoded.size(), kPacketSize);
EXPECT_TRUE(DoesPacketContainQuantized(encoded, quantized.to_string(),
kNumHeaderBits, kNumQuantizedBits));
}
TEST_F(PacketTest, PackBigHeader) {
// The most significant 8 bits have the pattern 00000000, then the next 8 most
// significant bits have the pattern 11111111. Repeat this pattern for the
// entire packet.
std::bitset<kNumQuantizedBits> quantized(0);
for (size_t bit_offset = CHAR_BIT; bit_offset < quantized.size();
bit_offset += 2 * CHAR_BIT) {
for (size_t bit_index = bit_offset; bit_index < bit_offset + CHAR_BIT;
++bit_index) {
quantized.flip(bit_index);
}
}
constexpr int kNumHeaderBitsTest = 100;
Packet<kNumQuantizedBits, kNumHeaderBitsTest> packet;
const std::vector<uint8_t> encoded =
packet.PackQuantized(quantized.to_string());
EXPECT_EQ(encoded.size(),
ExpectedPacketSize(kNumQuantizedBits, kNumHeaderBitsTest));
EXPECT_TRUE(DoesPacketContainQuantized(
encoded, quantized.to_string(), kNumHeaderBitsTest, kNumQuantizedBits));
}
} // namespace
} // namespace codec
} // namespace chromemedia