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

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

Issue 264793017: Implements RTP header dumping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/bind.h"
6 #include "base/file_util.h"
7 #include "base/files/scoped_temp_dir.h"
8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/run_loop.h"
11 #include "chrome/browser/media/webrtc_rtp_dump_handler.h"
12 #include "chrome/browser/media/webrtc_rtp_dump_writer.h"
13 #include "content/public/test/test_browser_thread_bundle.h"
14 #include "testing/gmock/include/gmock/gmock.h"
15 #include "testing/gtest/include/gtest/gtest.h"
16
17 class FakeDumpWriter : public WebRtcRtpDumpWriter {
18 public:
19 explicit FakeDumpWriter(size_t max_dump_size,
20 const base::Closure& max_size_reached_callback,
21 bool end_dump_success)
22 : WebRtcRtpDumpWriter(base::FilePath(),
23 base::FilePath(),
24 max_dump_size,
25 base::Closure()),
26 max_dump_size_(max_dump_size),
27 current_dump_size_(0),
28 max_size_reached_callback_(max_size_reached_callback),
29 end_dump_success_(end_dump_success) {}
30
31 virtual void WriteRtpPacket(const uint8* packet_header,
32 size_t header_length,
33 size_t packet_length,
34 bool incoming) OVERRIDE {
35 current_dump_size_ += header_length;
36 if (current_dump_size_ > max_dump_size_)
37 max_size_reached_callback_.Run();
38 }
39
40 virtual void EndDump(RtpDumpType type,
41 const EndDumpCallback& finished_callback) OVERRIDE {
42 bool incoming_sucess = end_dump_success_;
43 bool outgoing_success = end_dump_success_;
44
45 if (type == RTP_DUMP_INCOMING)
46 outgoing_success = false;
47 else if (type == RTP_DUMP_OUTGOING)
48 incoming_sucess = false;
49
50 base::MessageLoop::current()->PostTask(
51 FROM_HERE,
52 base::Bind(finished_callback, incoming_sucess, outgoing_success));
53 }
54
55 private:
56 size_t max_dump_size_;
57 size_t current_dump_size_;
58 base::Closure max_size_reached_callback_;
59 bool end_dump_success_;
60 };
61
62 class WebRtcRtpDumpHandlerTest : public testing::Test {
63 public:
64 WebRtcRtpDumpHandlerTest()
65 : thread_bundle_(content::TestBrowserThreadBundle::IO_MAINLOOP) {
66 ResetDumpHandler(base::FilePath(), true);
67 }
68
69 void ResetDumpHandler(const base::FilePath& dir, bool end_dump_success) {
70 handler_.reset(new WebRtcRtpDumpHandler(
71 dir.empty() ? base::FilePath(FILE_PATH_LITERAL("dummy")) : dir));
72
73 scoped_ptr<WebRtcRtpDumpWriter> writer(new FakeDumpWriter(
74 10,
75 base::Bind(&WebRtcRtpDumpHandler::OnMaxDumpSizeReached,
76 base::Unretained(handler_.get())),
77 end_dump_success));
78
79 handler_->SetDumpWriterForTesting(writer.Pass());
80 }
81
82 void WriteFakeDumpFiles(const base::FilePath& dir,
83 base::FilePath* incoming_dump,
84 base::FilePath* outgoing_dump) {
85 *incoming_dump = dir.AppendASCII("recv");
86 *outgoing_dump = dir.AppendASCII("send");
87 const char dummy[] = "dummy";
88 EXPECT_GT(base::WriteFile(*incoming_dump, dummy, arraysize(dummy)), 0);
tommi (sloooow) - chröme 2014/05/17 10:18:37 is writing the terminating \0 intentional?
jiayl 2014/05/19 17:32:59 The content of the file does not matter. It's only
89 EXPECT_GT(base::WriteFile(*outgoing_dump, dummy, arraysize(dummy)), 0);
90 }
91
92 MOCK_METHOD2(OnStopDumpFinished,
93 void(bool success, const std::string& error));
94
95 protected:
96 content::TestBrowserThreadBundle thread_bundle_;
97 scoped_ptr<WebRtcRtpDumpHandler> handler_;
98 };
99
100 TEST_F(WebRtcRtpDumpHandlerTest, StateTransition) {
101 std::string error;
102
103 RtpDumpType types[3];
104 types[0] = RTP_DUMP_INCOMING;
105 types[1] = RTP_DUMP_OUTGOING;
106 types[2] = RTP_DUMP_BOTH;
107
108 WebRtcRtpDumpHandler::ReleasedDumps dumps;
109 for (size_t i = 0; i < arraysize(types); ++i) {
110 DVLOG(2) << "Verifying state transition: type = " << types[i];
111
112 // Only StartDump is allowed in STATE_NONE.
113 EXPECT_CALL(*this, OnStopDumpFinished(false, testing::_));
114 handler_->StopDump(types[i],
115 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
116 base::Unretained(this)));
117
118 dumps = handler_->ReleaseDumps();
119 EXPECT_TRUE(dumps.incoming_dump_path.empty());
120 EXPECT_TRUE(dumps.outgoing_dump_path.empty());
121
122 EXPECT_TRUE(handler_->StartDump(types[i], &error));
123 base::RunLoop().RunUntilIdle();
124
125 // Only StopDump is allowed in STATE_STARTED.
126 EXPECT_FALSE(handler_->StartDump(types[i], &error));
127
128 dumps = handler_->ReleaseDumps();
129 EXPECT_TRUE(dumps.incoming_dump_path.empty());
130 EXPECT_TRUE(dumps.outgoing_dump_path.empty());
131
132 EXPECT_CALL(*this, OnStopDumpFinished(true, testing::_));
133 handler_->StopDump(types[i],
134 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
135 base::Unretained(this)));
136 base::RunLoop().RunUntilIdle();
137
138 // Only ReleaseDump is allowed in STATE_STOPPED.
139 EXPECT_FALSE(handler_->StartDump(types[i], &error));
140
141 EXPECT_CALL(*this, OnStopDumpFinished(false, testing::_));
142 handler_->StopDump(types[i],
143 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
144 base::Unretained(this)));
145
146 dumps = handler_->ReleaseDumps();
147 if (types[i] == RTP_DUMP_INCOMING || types[i] == RTP_DUMP_BOTH)
148 EXPECT_FALSE(dumps.incoming_dump_path.empty());
149
150 if (types[i] == RTP_DUMP_OUTGOING || types[i] == RTP_DUMP_BOTH)
151 EXPECT_FALSE(dumps.outgoing_dump_path.empty());
152
153 base::RunLoop().RunUntilIdle();
154 ResetDumpHandler(base::FilePath(), true);
155 }
156 }
157
158 TEST_F(WebRtcRtpDumpHandlerTest, StoppedWhenMaxSizeReached) {
159 std::string error;
160
161 EXPECT_TRUE(handler_->StartDump(RTP_DUMP_INCOMING, &error));
162
163 std::vector<uint8> buffer(100, 0);
164 handler_->OnRtpPacket(buffer.data(), buffer.size(), buffer.size(), true);
165 base::RunLoop().RunUntilIdle();
166
167 // Dumping should have been stopped, so ready to release.
168 WebRtcRtpDumpHandler::ReleasedDumps dumps = handler_->ReleaseDumps();
169 EXPECT_FALSE(dumps.incoming_dump_path.empty());
170 }
171
172 TEST_F(WebRtcRtpDumpHandlerTest, PacketIgnoredIfDumpingNotStarted) {
173 std::vector<uint8> buffer(100, 0);
174 handler_->OnRtpPacket(buffer.data(), buffer.size(), buffer.size(), true);
175 handler_->OnRtpPacket(buffer.data(), buffer.size(), buffer.size(), false);
176 base::RunLoop().RunUntilIdle();
177 }
178
179 TEST_F(WebRtcRtpDumpHandlerTest, PacketIgnoredIfDumpingStopped) {
180 std::string error;
181
182 EXPECT_TRUE(handler_->StartDump(RTP_DUMP_INCOMING, &error));
183
184 EXPECT_CALL(*this, OnStopDumpFinished(true, testing::_));
185 handler_->StopDump(RTP_DUMP_INCOMING,
186 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
187 base::Unretained(this)));
188
189 std::vector<uint8> buffer(100, 0);
190 handler_->OnRtpPacket(buffer.data(), buffer.size(), buffer.size(), true);
191 base::RunLoop().RunUntilIdle();
192 }
193
194 TEST_F(WebRtcRtpDumpHandlerTest, CannotStartMoreThanFiveDumps) {
195 std::string error;
196
197 handler_.reset();
198
199 scoped_ptr<WebRtcRtpDumpHandler> handlers[6];
200
201 for (size_t i = 0; i < arraysize(handlers); ++i) {
202 handlers[i].reset(new WebRtcRtpDumpHandler(base::FilePath()));
203
204 if (i < arraysize(handlers) - 1) {
205 EXPECT_TRUE(handlers[i]->StartDump(RTP_DUMP_INCOMING, &error));
206 } else {
207 EXPECT_FALSE(handlers[i]->StartDump(RTP_DUMP_INCOMING, &error));
208 }
209 }
210 }
211
212 TEST_F(WebRtcRtpDumpHandlerTest, StartStopIncomingThenStartStopOutgoing) {
213 std::string error;
214
215 EXPECT_CALL(*this, OnStopDumpFinished(true, testing::_)).Times(2);
216
217 EXPECT_TRUE(handler_->StartDump(RTP_DUMP_INCOMING, &error));
218 handler_->StopDump(RTP_DUMP_INCOMING,
219 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
220 base::Unretained(this)));
221
222 EXPECT_TRUE(handler_->StartDump(RTP_DUMP_OUTGOING, &error));
223 handler_->StopDump(RTP_DUMP_OUTGOING,
224 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
225 base::Unretained(this)));
226
227 base::RunLoop().RunUntilIdle();
228 }
229
230 TEST_F(WebRtcRtpDumpHandlerTest, StartIncomingStartOutgoingThenStopBoth) {
231 std::string error;
232
233 EXPECT_CALL(*this, OnStopDumpFinished(true, testing::_));
234
235 EXPECT_TRUE(handler_->StartDump(RTP_DUMP_INCOMING, &error));
236 EXPECT_TRUE(handler_->StartDump(RTP_DUMP_OUTGOING, &error));
237
238 handler_->StopDump(RTP_DUMP_INCOMING,
239 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
240 base::Unretained(this)));
241
242 base::RunLoop().RunUntilIdle();
243 }
244
245 TEST_F(WebRtcRtpDumpHandlerTest, StartBothThenStopIncomingStopOutgoing) {
246 std::string error;
247
248 EXPECT_CALL(*this, OnStopDumpFinished(true, testing::_)).Times(2);
249
250 EXPECT_TRUE(handler_->StartDump(RTP_DUMP_BOTH, &error));
251
252 handler_->StopDump(RTP_DUMP_INCOMING,
253 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
254 base::Unretained(this)));
255 handler_->StopDump(RTP_DUMP_OUTGOING,
256 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
257 base::Unretained(this)));
258
259 base::RunLoop().RunUntilIdle();
260 }
261
262 TEST_F(WebRtcRtpDumpHandlerTest, DumpsCleanedUpIfNotReleased) {
263 base::ScopedTempDir temp_dir;
264 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
265 ResetDumpHandler(temp_dir.path(), true);
266
267 base::FilePath incoming_dump, outgoing_dump;
268 WriteFakeDumpFiles(temp_dir.path(), &incoming_dump, &outgoing_dump);
269
270 std::string error;
271 EXPECT_TRUE(handler_->StartDump(RTP_DUMP_BOTH, &error));
272
273 EXPECT_CALL(*this, OnStopDumpFinished(true, testing::_));
274 handler_->StopDump(RTP_DUMP_BOTH,
275 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
276 base::Unretained(this)));
277 base::RunLoop().RunUntilIdle();
278
279 handler_.reset();
280 base::RunLoop().RunUntilIdle();
281
282 EXPECT_FALSE(base::PathExists(incoming_dump));
283 EXPECT_FALSE(base::PathExists(outgoing_dump));
284 }
285
286 TEST_F(WebRtcRtpDumpHandlerTest, DumpDeletedIfEndDumpFailed) {
287 base::ScopedTempDir temp_dir;
288 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
289
290 // Make the writer return failure on EndStream.
291 ResetDumpHandler(temp_dir.path(), false);
292
293 base::FilePath incoming_dump, outgoing_dump;
294 WriteFakeDumpFiles(temp_dir.path(), &incoming_dump, &outgoing_dump);
295
296 std::string error;
297 EXPECT_TRUE(handler_->StartDump(RTP_DUMP_BOTH, &error));
298 EXPECT_CALL(*this, OnStopDumpFinished(true, testing::_)).Times(2);
299
300 handler_->StopDump(RTP_DUMP_INCOMING,
301 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
302 base::Unretained(this)));
303 base::RunLoop().RunUntilIdle();
304
305 EXPECT_FALSE(base::PathExists(incoming_dump));
306 EXPECT_TRUE(base::PathExists(outgoing_dump));
307
308 handler_->StopDump(RTP_DUMP_OUTGOING,
309 base::Bind(&WebRtcRtpDumpHandlerTest::OnStopDumpFinished,
310 base::Unretained(this)));
311 base::RunLoop().RunUntilIdle();
312 EXPECT_FALSE(base::PathExists(outgoing_dump));
313 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698