OLD | NEW |
---|---|
(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 bool 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 return true; | |
tommi (sloooow) - chröme
2014/05/17 10:18:37
nit: this always returns true... just make it retu
jiayl
2014/05/19 17:32:59
Done.
| |
84 } | |
85 | |
86 MOCK_METHOD2(OnEndDumpDone, void(bool, bool)); | |
87 MOCK_METHOD0(OnMaxSizeReached, void(void)); | |
88 | |
89 protected: | |
90 // Verifies the compressed dump file contains the expected number of packets. | |
91 bool VerifyCompressedDump(std::string* dump, size_t expected_packet_count) { | |
92 EXPECT_GT(dump->size(), 0U); | |
93 | |
94 std::vector<uint8> decompressed_dump; | |
95 EXPECT_TRUE(Decompress(dump, &decompressed_dump)); | |
96 | |
97 size_t actual_packet_count = 0; | |
98 EXPECT_TRUE(ReadDecompressedDump(decompressed_dump, &actual_packet_count)); | |
99 EXPECT_EQ(expected_packet_count, actual_packet_count); | |
100 | |
101 return true; | |
102 } | |
103 | |
104 // Decompresses the |input| into |output|. | |
105 bool Decompress(std::string* input, std::vector<uint8>* output) { | |
106 z_stream stream = {0}; | |
107 | |
108 int result = inflateInit2(&stream, 15 + 16); | |
109 EXPECT_EQ(Z_OK, result); | |
110 | |
111 output->resize(input->size() * 100); | |
112 | |
113 stream.next_in = | |
114 reinterpret_cast<unsigned char*>(const_cast<char*>(input->data())); | |
115 stream.avail_in = input->size(); | |
116 stream.next_out = output->data(); | |
117 stream.avail_out = output->size(); | |
118 | |
119 result = inflate(&stream, Z_FINISH); | |
120 DCHECK_EQ(Z_STREAM_END, result); | |
121 result = inflateEnd(&stream); | |
122 DCHECK_EQ(Z_OK, result); | |
123 | |
124 output->resize(output->size() - stream.avail_out); | |
125 return true; | |
126 } | |
127 | |
128 // Tries to read |dump| as a rtpplay dump file and returns the number of | |
129 // packets found in the dump. | |
130 bool ReadDecompressedDump(const std::vector<uint8>& dump, | |
131 size_t* packet_count) { | |
132 static const char kFirstLine[] = "#!rtpplay1.0 0.0.0.0/0\n"; | |
133 static const size_t kDumpFileHeaderSize = 4 * sizeof(uint32); | |
134 | |
135 *packet_count = 0; | |
136 size_t dump_pos = 0; | |
137 | |
138 // Verifies the first line. | |
139 EXPECT_EQ(memcmp(dump.data(), kFirstLine, arraysize(kFirstLine) - 1), 0); | |
140 | |
141 dump_pos += arraysize(kFirstLine) - 1; | |
142 EXPECT_GT(dump.size(), dump_pos); | |
143 | |
144 // Skips the file header. | |
145 dump_pos += kDumpFileHeaderSize; | |
146 EXPECT_GT(dump.size(), dump_pos); | |
147 | |
148 // Reads each packet dump. | |
149 while (dump_pos < dump.size()) { | |
150 size_t packet_dump_length = 0; | |
151 if (!VerifyPacketDump(dump.data() + dump_pos, | |
152 dump.size() - dump_pos, | |
153 &packet_dump_length)) { | |
154 DVLOG(0) << "Failed to read the packet dump for packet " | |
155 << *packet_count << ", dump_pos = " << dump_pos | |
156 << ", dump_length = " << dump.size(); | |
157 return false; | |
158 } | |
159 | |
160 EXPECT_GE(dump.size(), dump_pos + packet_dump_length); | |
161 dump_pos += packet_dump_length; | |
162 | |
163 (*packet_count)++; | |
164 } | |
165 return true; | |
166 } | |
167 | |
168 // Tries to read one packet dump starting at |dump| and returns the size of | |
169 // the packet dump. | |
170 bool VerifyPacketDump(const uint8* dump, | |
171 size_t dump_length, | |
172 size_t* packet_dump_length) { | |
173 static const size_t kDumpHeaderLength = 8; | |
174 | |
175 size_t dump_pos = 0; | |
176 base::ReadBigEndian(reinterpret_cast<const char*>(dump + dump_pos), | |
177 reinterpret_cast<uint16*>(packet_dump_length)); | |
178 if (*packet_dump_length < kDumpHeaderLength + kMinimumRtpHeaderLength) | |
179 return false; | |
180 | |
181 EXPECT_GE(dump_length, *packet_dump_length); | |
182 dump_pos += 2; | |
tommi (sloooow) - chröme
2014/05/17 10:18:37
+= sizeof(uint16); ?
jiayl
2014/05/19 17:32:59
Done.
| |
183 | |
184 uint16 rtp_packet_length = 0; | |
185 base::ReadBigEndian(reinterpret_cast<const char*>(dump + dump_pos), | |
186 &rtp_packet_length); | |
187 if (rtp_packet_length < kMinimumRtpHeaderLength) | |
188 return false; | |
189 | |
190 dump_pos += 2; | |
tommi (sloooow) - chröme
2014/05/17 10:18:37
same here
jiayl
2014/05/19 17:32:59
Done.
| |
191 | |
192 // Skips the elapsed time field. | |
193 dump_pos += 4; | |
tommi (sloooow) - chröme
2014/05/17 10:18:37
size of the time field?
jiayl
2014/05/19 17:32:59
Done.
| |
194 | |
195 return IsValidRtpHeader(dump + dump_pos, | |
196 *packet_dump_length - kDumpHeaderLength); | |
197 } | |
198 | |
199 // Returns true if |header| is a valid RTP header. | |
200 bool IsValidRtpHeader(const uint8* header, size_t length) { | |
201 if ((header[0] & 0xC0) != 0x80) | |
202 return false; | |
203 | |
204 size_t cc_count = header[0] & 0x0F; | |
205 size_t header_length_without_extn = kMinimumRtpHeaderLength + 4 * cc_count; | |
206 | |
207 if (length < header_length_without_extn) | |
208 return false; | |
209 | |
210 uint16 extension_count = 0; | |
211 base::ReadBigEndian( | |
212 reinterpret_cast<const char*>(header + header_length_without_extn + 2), | |
213 &extension_count); | |
214 | |
215 if (length < (extension_count + 1) * 4 + header_length_without_extn) | |
216 return false; | |
217 | |
218 return true; | |
219 } | |
220 | |
221 content::TestBrowserThreadBundle thread_bundle_; | |
222 scoped_ptr<base::ScopedTempDir> temp_dir_; | |
223 base::FilePath incoming_dump_path_; | |
224 base::FilePath outgoing_dump_path_; | |
225 scoped_ptr<WebRtcRtpDumpWriter> writer_; | |
226 }; | |
227 | |
228 TEST_F(WebRtcRtpDumpWriterTest, NoDumpFileIfNoPacketDumped) { | |
229 { | |
tommi (sloooow) - chröme
2014/05/17 10:18:37
what is the scope for?
jiayl
2014/05/19 17:32:59
Added comments.
| |
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 { | |
tommi (sloooow) - chröme
2014/05/17 10:18:37
same here and throughout (I'm sure I'm missing som
jiayl
2014/05/19 17:32:59
added comments.
| |
255 EXPECT_CALL(*this, OnEndDumpDone(true, true)); | |
256 | |
257 writer_->EndDump(RTP_DUMP_BOTH, | |
258 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone, | |
259 base::Unretained(this))); | |
260 | |
261 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); | |
262 base::RunLoop().RunUntilIdle(); | |
263 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); | |
264 base::RunLoop().RunUntilIdle(); | |
265 } | |
266 | |
267 EXPECT_TRUE(VerifyDumps(1, 1)); | |
268 } | |
269 | |
270 TEST_F(WebRtcRtpDumpWriterTest, WriteOverMaxLimit) { | |
271 // Reset the writer with a small max size limit. | |
272 writer_.reset(new WebRtcRtpDumpWriter( | |
273 incoming_dump_path_, | |
274 outgoing_dump_path_, | |
275 100, | |
276 base::Bind(&WebRtcRtpDumpWriterTest::OnMaxSizeReached, | |
277 base::Unretained(this)))); | |
278 | |
279 std::vector<uint8> packet_header; | |
280 CreateFakeRtpPacketHeader(3, 4, &packet_header); | |
281 | |
282 const size_t kPacketCount = 200; | |
283 { | |
284 EXPECT_CALL(*this, OnMaxSizeReached()).Times(testing::AtLeast(1)); | |
285 | |
286 // Write enough packets to overflow the in-memory buffer and max limit. | |
287 for (size_t i = 0; i < kPacketCount; ++i) { | |
288 writer_->WriteRtpPacket( | |
289 packet_header.data(), packet_header.size(), 100, true); | |
290 | |
291 writer_->WriteRtpPacket( | |
292 packet_header.data(), packet_header.size(), 100, false); | |
293 } | |
294 | |
295 EXPECT_CALL(*this, OnEndDumpDone(true, true)); | |
296 | |
297 writer_->EndDump(RTP_DUMP_BOTH, | |
298 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone, | |
299 base::Unretained(this))); | |
300 | |
301 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); | |
302 base::RunLoop().RunUntilIdle(); | |
303 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); | |
304 base::RunLoop().RunUntilIdle(); | |
305 } | |
306 EXPECT_TRUE(VerifyDumps(kPacketCount, kPacketCount)); | |
307 } | |
308 | |
309 TEST_F(WebRtcRtpDumpWriterTest, DestroyWriterBeforeEndDumpCallback) { | |
310 EXPECT_CALL(*this, OnEndDumpDone(testing::_, testing::_)).Times(0); | |
311 | |
312 writer_->EndDump(RTP_DUMP_BOTH, | |
313 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone, | |
314 base::Unretained(this))); | |
315 | |
316 writer_.reset(); | |
317 | |
318 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); | |
319 base::RunLoop().RunUntilIdle(); | |
320 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); | |
321 base::RunLoop().RunUntilIdle(); | |
322 } | |
323 | |
324 TEST_F(WebRtcRtpDumpWriterTest, EndDumpsSeparately) { | |
325 std::vector<uint8> packet_header; | |
326 CreateFakeRtpPacketHeader(1, 2, &packet_header); | |
327 | |
328 writer_->WriteRtpPacket( | |
329 packet_header.data(), packet_header.size(), 100, true); | |
330 writer_->WriteRtpPacket( | |
331 packet_header.data(), packet_header.size(), 100, true); | |
332 | |
333 writer_->WriteRtpPacket( | |
334 packet_header.data(), packet_header.size(), 100, false); | |
335 | |
336 { | |
337 EXPECT_CALL(*this, OnEndDumpDone(true, false)); | |
338 EXPECT_CALL(*this, OnEndDumpDone(false, true)); | |
339 | |
340 writer_->EndDump(RTP_DUMP_INCOMING, | |
341 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone, | |
342 base::Unretained(this))); | |
343 | |
344 writer_->EndDump(RTP_DUMP_OUTGOING, | |
345 base::Bind(&WebRtcRtpDumpWriterTest::OnEndDumpDone, | |
346 base::Unretained(this))); | |
347 | |
348 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); | |
349 base::RunLoop().RunUntilIdle(); | |
350 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); | |
351 base::RunLoop().RunUntilIdle(); | |
352 } | |
353 | |
354 EXPECT_TRUE(VerifyDumps(2, 1)); | |
355 } | |
OLD | NEW |