Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: chrome/browser/media/webrtc_rtp_dump_writer_unittest.cc

Issue 264793017: Implements RTP header dumping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for tommi's Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/big_endian.h"
6 #include "base/bind.h"
7 #include "base/file_util.h"
8 #include "base/files/scoped_temp_dir.h"
9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/run_loop.h"
12 #include "chrome/browser/media/webrtc_rtp_dump_writer.h"
13 #include "content/public/browser/browser_thread.h"
14 #include "content/public/test/test_browser_thread_bundle.h"
15 #include "content/public/test/test_utils.h"
16 #include "testing/gmock/include/gmock/gmock.h"
17 #include "testing/gtest/include/gtest/gtest.h"
18 #include "third_party/zlib/zlib.h"
19
20 static const size_t kMinimumRtpHeaderLength = 12;
21
22 static void CreateFakeRtpPacketHeader(size_t csrc_count,
23 size_t extension_header_count,
24 std::vector<uint8>* packet_header) {
25 packet_header->resize(kMinimumRtpHeaderLength + csrc_count * sizeof(uint32) +
26 (extension_header_count + 1 * sizeof(uint32)));
27
28 // First byte format: vvpxcccc, where 'vv' is the version, 'p' is padding, 'x'
29 // is the extension bit, 'cccc' is the CSRC count.
30 (*packet_header)[0] = 0;
31 (*packet_header)[0] |= (0x2 << 6); // version.
32 // The extension bit.
33 (*packet_header)[0] |= (extension_header_count > 0 ? (0x1 << 4) : 0);
34 (*packet_header)[0] |= (csrc_count & 0xf);
35
36 // Set extension length.
37 size_t offset =
38 kMinimumRtpHeaderLength + (csrc_count & 0xf) * sizeof(uint32) + 2;
39 base::WriteBigEndian(reinterpret_cast<char*>(packet_header + offset),
40 static_cast<uint16>(extension_header_count));
41 }
42
43 class WebRtcRtpDumpWriterTest : public testing::Test {
44 public:
45 WebRtcRtpDumpWriterTest()
46 : thread_bundle_(content::TestBrowserThreadBundle::IO_MAINLOOP |
47 content::TestBrowserThreadBundle::REAL_FILE_THREAD),
48 temp_dir_(new base::ScopedTempDir()) {}
49
50 virtual void SetUp() {
51 ASSERT_TRUE(temp_dir_->CreateUniqueTempDir());
52
53 incoming_dump_path_ = temp_dir_->path().AppendASCII("rtpdump_recv");
54 outgoing_dump_path_ = temp_dir_->path().AppendASCII("rtpdump_send");
55 writer_.reset(new WebRtcRtpDumpWriter(
56 incoming_dump_path_,
57 outgoing_dump_path_,
58 4 * 1024 * 1024,
59 base::Bind(&WebRtcRtpDumpWriterTest::OnMaxSizeReached,
60 base::Unretained(this))));
61 }
62
63 // Verifies that the dump contains records of |rtp_packet| repeated
64 // |packet_count| times.
65 void VerifyDumps(size_t incoming_packet_count, size_t outgoing_packet_count) {
66 std::string incoming_dump;
67 std::string outgoing_dump;
68
69 if (incoming_packet_count) {
70 EXPECT_TRUE(base::ReadFileToString(incoming_dump_path_, &incoming_dump));
71 EXPECT_TRUE(VerifyCompressedDump(&incoming_dump, incoming_packet_count));
72 } else {
73 EXPECT_FALSE(base::PathExists(incoming_dump_path_));
74 }
75
76 if (outgoing_packet_count) {
77 EXPECT_TRUE(base::ReadFileToString(outgoing_dump_path_, &outgoing_dump));
78 EXPECT_TRUE(VerifyCompressedDump(&outgoing_dump, outgoing_packet_count));
79 } else {
80 EXPECT_FALSE(base::PathExists(outgoing_dump_path_));
81 }
82 }
83
84 MOCK_METHOD2(OnEndDumpDone, void(bool, bool));
85 MOCK_METHOD0(OnMaxSizeReached, void(void));
86
87 protected:
88 // Verifies the compressed dump file contains the expected number of packets.
89 bool VerifyCompressedDump(std::string* dump, size_t expected_packet_count) {
90 EXPECT_GT(dump->size(), 0U);
91
92 std::vector<uint8> decompressed_dump;
93 EXPECT_TRUE(Decompress(dump, &decompressed_dump));
94
95 size_t actual_packet_count = 0;
96 EXPECT_TRUE(ReadDecompressedDump(decompressed_dump, &actual_packet_count));
97 EXPECT_EQ(expected_packet_count, actual_packet_count);
98
99 return true;
100 }
101
102 // Decompresses the |input| into |output|.
103 bool Decompress(std::string* input, std::vector<uint8>* output) {
104 z_stream stream = {0};
105
106 int result = inflateInit2(&stream, 15 + 16);
107 EXPECT_EQ(Z_OK, result);
108
109 output->resize(input->size() * 100);
110
111 stream.next_in =
112 reinterpret_cast<unsigned char*>(const_cast<char*>(input->data()));
113 stream.avail_in = input->size();
114 stream.next_out = output->data();
115 stream.avail_out = output->size();
116
117 result = inflate(&stream, Z_FINISH);
118 DCHECK_EQ(Z_STREAM_END, result);
119 result = inflateEnd(&stream);
120 DCHECK_EQ(Z_OK, result);
121
122 output->resize(output->size() - stream.avail_out);
123 return true;
124 }
125
126 // Tries to read |dump| as a rtpplay dump file and returns the number of
127 // packets found in the dump.
128 bool ReadDecompressedDump(const std::vector<uint8>& dump,
129 size_t* packet_count) {
130 static const char kFirstLine[] = "#!rtpplay1.0 0.0.0.0/0\n";
131 static const size_t kDumpFileHeaderSize = 4 * sizeof(uint32);
132
133 *packet_count = 0;
134 size_t dump_pos = 0;
135
136 // Verifies the first line.
137 EXPECT_EQ(memcmp(dump.data(), kFirstLine, arraysize(kFirstLine) - 1), 0);
138
139 dump_pos += arraysize(kFirstLine) - 1;
140 EXPECT_GT(dump.size(), dump_pos);
141
142 // Skips the file header.
143 dump_pos += kDumpFileHeaderSize;
144 EXPECT_GT(dump.size(), dump_pos);
145
146 // Reads each packet dump.
147 while (dump_pos < dump.size()) {
148 size_t packet_dump_length = 0;
149 if (!VerifyPacketDump(dump.data() + dump_pos,
150 dump.size() - dump_pos,
151 &packet_dump_length)) {
152 DVLOG(0) << "Failed to read the packet dump for packet "
153 << *packet_count << ", dump_pos = " << dump_pos
154 << ", dump_length = " << dump.size();
155 return false;
156 }
157
158 EXPECT_GE(dump.size(), dump_pos + packet_dump_length);
159 dump_pos += packet_dump_length;
160
161 (*packet_count)++;
162 }
163 return true;
164 }
165
166 // Tries to read one packet dump starting at |dump| and returns the size of
167 // the packet dump.
168 bool VerifyPacketDump(const uint8* dump,
169 size_t dump_length,
170 size_t* packet_dump_length) {
171 static const size_t kDumpHeaderLength = 8;
172
173 size_t dump_pos = 0;
174 base::ReadBigEndian(reinterpret_cast<const char*>(dump + dump_pos),
175 reinterpret_cast<uint16*>(packet_dump_length));
176 if (*packet_dump_length < kDumpHeaderLength + kMinimumRtpHeaderLength)
177 return false;
178
179 EXPECT_GE(dump_length, *packet_dump_length);
180 dump_pos += sizeof(uint16);
181
182 uint16 rtp_packet_length = 0;
183 base::ReadBigEndian(reinterpret_cast<const char*>(dump + dump_pos),
184 &rtp_packet_length);
185 if (rtp_packet_length < kMinimumRtpHeaderLength)
186 return false;
187
188 dump_pos += sizeof(uint16);
189
190 // Skips the elapsed time field.
191 dump_pos += sizeof(uint32);
192
193 return IsValidRtpHeader(dump + dump_pos,
194 *packet_dump_length - kDumpHeaderLength);
195 }
196
197 // Returns true if |header| is a valid RTP header.
198 bool IsValidRtpHeader(const uint8* header, size_t length) {
199 if ((header[0] & 0xC0) != 0x80)
200 return false;
201
202 size_t cc_count = header[0] & 0x0F;
203 size_t header_length_without_extn = kMinimumRtpHeaderLength + 4 * cc_count;
204
205 if (length < header_length_without_extn)
206 return false;
207
208 uint16 extension_count = 0;
209 base::ReadBigEndian(
210 reinterpret_cast<const char*>(header + header_length_without_extn + 2),
211 &extension_count);
212
213 if (length < (extension_count + 1) * 4 + header_length_without_extn)
214 return false;
215
216 return true;
217 }
218
219 content::TestBrowserThreadBundle thread_bundle_;
220 scoped_ptr<base::ScopedTempDir> temp_dir_;
221 base::FilePath incoming_dump_path_;
222 base::FilePath outgoing_dump_path_;
223 scoped_ptr<WebRtcRtpDumpWriter> writer_;
224 };
225
226 TEST_F(WebRtcRtpDumpWriterTest, NoDumpFileIfNoPacketDumped) {
227 // The scope is used to make sure the EXPECT_CALL is checked before exiting
228 // the scope.
229 {
230 EXPECT_CALL(*this, OnEndDumpDone(false, false));
231
232 writer_->EndDump(RTP_DUMP_BOTH,
233 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone,
234 base::Unretained(this)));
235
236 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
237 base::RunLoop().RunUntilIdle();
238 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
239 base::RunLoop().RunUntilIdle();
240 }
241 EXPECT_FALSE(base::PathExists(incoming_dump_path_));
242 EXPECT_FALSE(base::PathExists(outgoing_dump_path_));
243 }
244
245 TEST_F(WebRtcRtpDumpWriterTest, WriteAndFlushSmallSizeDump) {
246 std::vector<uint8> packet_header;
247 CreateFakeRtpPacketHeader(1, 2, &packet_header);
248
249 writer_->WriteRtpPacket(
250 packet_header.data(), packet_header.size(), 100, true);
251
252 writer_->WriteRtpPacket(
253 packet_header.data(), packet_header.size(), 100, false);
254
255 // The scope is used to make sure the EXPECT_CALL is checked before exiting
256 // the scope.
257 {
258 EXPECT_CALL(*this, OnEndDumpDone(true, true));
259
260 writer_->EndDump(RTP_DUMP_BOTH,
261 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone,
262 base::Unretained(this)));
263
264 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
265 base::RunLoop().RunUntilIdle();
266 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
267 base::RunLoop().RunUntilIdle();
268 }
269
270 VerifyDumps(1, 1);
271 }
272
273 TEST_F(WebRtcRtpDumpWriterTest, WriteOverMaxLimit) {
274 // Reset the writer with a small max size limit.
275 writer_.reset(new WebRtcRtpDumpWriter(
276 incoming_dump_path_,
277 outgoing_dump_path_,
278 100,
279 base::Bind(&WebRtcRtpDumpWriterTest::OnMaxSizeReached,
280 base::Unretained(this))));
281
282 std::vector<uint8> packet_header;
283 CreateFakeRtpPacketHeader(3, 4, &packet_header);
284
285 const size_t kPacketCount = 200;
286 // The scope is used to make sure the EXPECT_CALL is checked before exiting
287 // the scope.
288 {
289 EXPECT_CALL(*this, OnMaxSizeReached()).Times(testing::AtLeast(1));
290
291 // Write enough packets to overflow the in-memory buffer and max limit.
292 for (size_t i = 0; i < kPacketCount; ++i) {
293 writer_->WriteRtpPacket(
294 packet_header.data(), packet_header.size(), 100, true);
295
296 writer_->WriteRtpPacket(
297 packet_header.data(), packet_header.size(), 100, false);
298 }
299
300 EXPECT_CALL(*this, OnEndDumpDone(true, true));
301
302 writer_->EndDump(RTP_DUMP_BOTH,
303 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone,
304 base::Unretained(this)));
305
306 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
307 base::RunLoop().RunUntilIdle();
308 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
309 base::RunLoop().RunUntilIdle();
310 }
311 VerifyDumps(kPacketCount, kPacketCount);
312 }
313
314 TEST_F(WebRtcRtpDumpWriterTest, DestroyWriterBeforeEndDumpCallback) {
315 EXPECT_CALL(*this, OnEndDumpDone(testing::_, testing::_)).Times(0);
316
317 writer_->EndDump(RTP_DUMP_BOTH,
318 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone,
319 base::Unretained(this)));
320
321 writer_.reset();
322
323 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
324 base::RunLoop().RunUntilIdle();
325 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
326 base::RunLoop().RunUntilIdle();
327 }
328
329 TEST_F(WebRtcRtpDumpWriterTest, EndDumpsSeparately) {
330 std::vector<uint8> packet_header;
331 CreateFakeRtpPacketHeader(1, 2, &packet_header);
332
333 writer_->WriteRtpPacket(
334 packet_header.data(), packet_header.size(), 100, true);
335 writer_->WriteRtpPacket(
336 packet_header.data(), packet_header.size(), 100, true);
337
338 writer_->WriteRtpPacket(
339 packet_header.data(), packet_header.size(), 100, false);
340
341 // The scope is used to make sure the EXPECT_CALL is checked before exiting
342 // the scope.
343 {
344 EXPECT_CALL(*this, OnEndDumpDone(true, false));
345 EXPECT_CALL(*this, OnEndDumpDone(false, true));
346
347 writer_->EndDump(RTP_DUMP_INCOMING,
348 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone,
349 base::Unretained(this)));
350
351 writer_->EndDump(RTP_DUMP_OUTGOING,
352 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone,
353 base::Unretained(this)));
354
355 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
356 base::RunLoop().RunUntilIdle();
357 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
358 base::RunLoop().RunUntilIdle();
359 }
360
361 VerifyDumps(2, 1);
362 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698