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/bind.h" |
| 6 #include "base/macros.h" |
| 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "chrome/browser/media/webrtc_rtp_dump_handler.h" |
| 9 #include "content/public/test/test_browser_thread_bundle.h" |
| 10 #include "testing/gmock/include/gmock/gmock.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 |
| 13 class WebRtcRtpDumpHandlerTest : public testing::Test { |
| 14 public: |
| 15 WebRtcRtpDumpHandlerTest() |
| 16 : thread_bundle_(content::TestBrowserThreadBundle::IO_MAINLOOP), |
| 17 handler_(new WebRtcRtpDumpHandler(base::FilePath())) {} |
| 18 |
| 19 MOCK_METHOD2(OnDumpReleased, void(bool, const base::FilePath&)); |
| 20 |
| 21 protected: |
| 22 content::TestBrowserThreadBundle thread_bundle_; |
| 23 scoped_ptr<WebRtcRtpDumpHandler> handler_; |
| 24 }; |
| 25 |
| 26 TEST_F(WebRtcRtpDumpHandlerTest, StateTransition) { |
| 27 WebRtcRtpDumpHandler::PacketType type_none = { false, false }; |
| 28 EXPECT_FALSE(handler_->StartDump(type_none)); |
| 29 |
| 30 WebRtcRtpDumpHandler::PacketType types[3]; |
| 31 types[0] = { true, false }; |
| 32 types[1] = { false, true }; |
| 33 types[2] = { true, true }; |
| 34 for (size_t i = 0; i < arraysize(types); ++i) { |
| 35 // Only StartDump is allowed in STATE_NONE. |
| 36 EXPECT_FALSE(handler_->StopDump(types[i])); |
| 37 EXPECT_FALSE( |
| 38 handler_->ReleaseDump(WebRtcRtpDumpHandler::ReleaseDumpCallback())); |
| 39 EXPECT_TRUE(handler_->StartDump(types[i])); |
| 40 |
| 41 // Only StopDump is allowed in STATE_STARTED. |
| 42 EXPECT_FALSE(handler_->StartDump(types[i])); |
| 43 EXPECT_FALSE( |
| 44 handler_->ReleaseDump(WebRtcRtpDumpHandler::ReleaseDumpCallback())); |
| 45 EXPECT_TRUE(handler_->StopDump(types[i])); |
| 46 |
| 47 // Only ReleaseDump is allowed in STATE_STOPPED. |
| 48 EXPECT_FALSE(handler_->StartDump(types[i])); |
| 49 EXPECT_FALSE(handler_->StopDump(types[i])); |
| 50 |
| 51 EXPECT_CALL(*this, OnDumpReleased(true, testing::_)); |
| 52 EXPECT_TRUE(handler_->ReleaseDump(base::Bind( |
| 53 &WebRtcRtpDumpHandlerTest::OnDumpReleased, base::Unretained(this)))); |
| 54 } |
| 55 } |
OLD | NEW |