// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include #include "base/bind.h" #include "base/bind_helpers.h" #include "base/callback.h" #include "base/message_loop/message_loop.h" #include "base/run_loop.h" #include "base/stl_util.h" #include "base/synchronization/waitable_event.h" #include "net/base/net_errors.h" #include "net/socket/socket.h" #include "remoting/protocol/fake_stream_socket.h" #include "remoting/protocol/message_reader.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/webrtc/base/byteorder.h" using testing::_; using testing::DoAll; using testing::Mock; using testing::SaveArg; namespace remoting { namespace protocol { namespace { const char kTestMessage1[] = "Message1"; const char kTestMessage2[] = "Message2"; ACTION(CallDoneTask) { arg0.Run(); } } // namespace class MockMessageReceivedCallback { public: MOCK_METHOD1(OnMessage, void(const base::Closure&)); }; class MessageReaderTest : public testing::Test { public: MessageReaderTest() : in_callback_(false) { } // Following two methods are used by the ReadFromCallback test. void AddSecondMessage(const base::Closure& task) { AddMessage(kTestMessage2); in_callback_ = true; task.Run(); in_callback_ = false; } void OnSecondMessage(const base::Closure& task) { EXPECT_FALSE(in_callback_); task.Run(); } // Used by the DeleteFromCallback() test. void DeleteReader(const base::Closure& task) { reader_.reset(); task.Run(); } protected: void SetUp() override { reader_.reset(new MessageReader()); } void TearDown() override { STLDeleteElements(&messages_); } void InitReader() { reader_->SetMessageReceivedCallback( base::Bind(&MessageReaderTest::OnMessage, base::Unretained(this))); reader_->StartReading(&socket_, base::Bind(&MessageReaderTest::OnReadError, base::Unretained(this))); } void AddMessage(const std::string& message) { std::string data = std::string(4, ' ') + message; rtc::SetBE32(const_cast(data.data()), message.size()); socket_.AppendInputData(data); } bool CompareResult(CompoundBuffer* buffer, const std::string& expected) { std::string result(buffer->total_bytes(), ' '); buffer->CopyTo(const_cast(result.data()), result.size()); return result == expected; } void OnReadError(int error) { read_error_ = error; reader_.reset(); } void OnMessage(scoped_ptr buffer, const base::Closure& done_callback) { messages_.push_back(buffer.release()); callback_.OnMessage(done_callback); } base::MessageLoop message_loop_; scoped_ptr reader_; FakeStreamSocket socket_; MockMessageReceivedCallback callback_; int read_error_ = 0; std::vector messages_; bool in_callback_; }; // Receive one message and process it with delay TEST_F(MessageReaderTest, OneMessage_Delay) { base::Closure done_task; AddMessage(kTestMessage1); EXPECT_CALL(callback_, OnMessage(_)) .Times(1) .WillOnce(SaveArg<0>(&done_task)); InitReader(); base::RunLoop().RunUntilIdle(); Mock::VerifyAndClearExpectations(&callback_); Mock::VerifyAndClearExpectations(&socket_); EXPECT_TRUE(CompareResult(messages_[0], kTestMessage1)); // Verify that the reader starts reading again only after we've // finished processing the previous message. EXPECT_FALSE(socket_.read_pending()); done_task.Run(); EXPECT_TRUE(socket_.read_pending()); } // Receive one message and process it instantly. TEST_F(MessageReaderTest, OneMessage_Instant) { AddMessage(kTestMessage1); EXPECT_CALL(callback_, OnMessage(_)) .Times(1) .WillOnce(CallDoneTask()); InitReader(); base::RunLoop().RunUntilIdle(); EXPECT_TRUE(socket_.read_pending()); EXPECT_EQ(1U, messages_.size()); } // Receive two messages in one packet. TEST_F(MessageReaderTest, TwoMessages_Together) { base::Closure done_task1; base::Closure done_task2; AddMessage(kTestMessage1); AddMessage(kTestMessage2); EXPECT_CALL(callback_, OnMessage(_)) .Times(2) .WillOnce(SaveArg<0>(&done_task1)) .WillOnce(SaveArg<0>(&done_task2)); InitReader(); base::RunLoop().RunUntilIdle(); Mock::VerifyAndClearExpectations(&callback_); Mock::VerifyAndClearExpectations(&socket_); EXPECT_TRUE(CompareResult(messages_[0], kTestMessage1)); EXPECT_TRUE(CompareResult(messages_[1], kTestMessage2)); // Verify that the reader starts reading again only after we've // finished processing the previous message. EXPECT_FALSE(socket_.read_pending()); done_task1.Run(); base::RunLoop().RunUntilIdle(); EXPECT_FALSE(socket_.read_pending()); done_task2.Run(); base::RunLoop().RunUntilIdle(); EXPECT_TRUE(socket_.read_pending()); } // Receive two messages in one packet, and process the first one // instantly. TEST_F(MessageReaderTest, TwoMessages_Instant) { base::Closure done_task2; AddMessage(kTestMessage1); AddMessage(kTestMessage2); EXPECT_CALL(callback_, OnMessage(_)) .Times(2) .WillOnce(CallDoneTask()) .WillOnce(SaveArg<0>(&done_task2)); InitReader(); base::RunLoop().RunUntilIdle(); Mock::VerifyAndClearExpectations(&callback_); Mock::VerifyAndClearExpectations(&socket_); EXPECT_TRUE(CompareResult(messages_[1], kTestMessage2)); // Verify that the reader starts reading again only after we've // finished processing the second message. EXPECT_FALSE(socket_.read_pending()); done_task2.Run(); EXPECT_TRUE(socket_.read_pending()); } // Receive two messages in one packet, and process both of them // instantly. TEST_F(MessageReaderTest, TwoMessages_Instant2) { AddMessage(kTestMessage1); AddMessage(kTestMessage2); EXPECT_CALL(callback_, OnMessage(_)) .Times(2) .WillOnce(CallDoneTask()) .WillOnce(CallDoneTask()); InitReader(); base::RunLoop().RunUntilIdle(); EXPECT_TRUE(socket_.read_pending()); } // Receive two messages in separate packets. TEST_F(MessageReaderTest, TwoMessages_Separately) { base::Closure done_task; AddMessage(kTestMessage1); EXPECT_CALL(callback_, OnMessage(_)) .Times(1) .WillOnce(SaveArg<0>(&done_task)); InitReader(); base::RunLoop().RunUntilIdle(); Mock::VerifyAndClearExpectations(&callback_); Mock::VerifyAndClearExpectations(&socket_); EXPECT_TRUE(CompareResult(messages_[0], kTestMessage1)); // Verify that the reader starts reading again only after we've // finished processing the previous message. EXPECT_FALSE(socket_.read_pending()); done_task.Run(); base::RunLoop().RunUntilIdle(); EXPECT_TRUE(socket_.read_pending()); // Write another message and verify that we receive it. EXPECT_CALL(callback_, OnMessage(_)) .Times(1) .WillOnce(SaveArg<0>(&done_task)); AddMessage(kTestMessage2); base::RunLoop().RunUntilIdle(); EXPECT_TRUE(CompareResult(messages_[1], kTestMessage2)); // Verify that the reader starts reading again only after we've // finished processing the previous message. EXPECT_FALSE(socket_.read_pending()); done_task.Run(); EXPECT_TRUE(socket_.read_pending()); } // Read() returns error. TEST_F(MessageReaderTest, ReadError) { socket_.AppendReadError(net::ERR_FAILED); EXPECT_CALL(callback_, OnMessage(_)).Times(0); InitReader(); EXPECT_EQ(net::ERR_FAILED, read_error_); EXPECT_FALSE(reader_); } // Verify that we the OnMessage callback is not reentered. TEST_F(MessageReaderTest, ReadFromCallback) { AddMessage(kTestMessage1); EXPECT_CALL(callback_, OnMessage(_)) .Times(2) .WillOnce(Invoke(this, &MessageReaderTest::AddSecondMessage)) .WillOnce(Invoke(this, &MessageReaderTest::OnSecondMessage)); InitReader(); base::RunLoop().RunUntilIdle(); EXPECT_TRUE(socket_.read_pending()); } // Verify that we stop getting callbacks after deleting MessageReader. TEST_F(MessageReaderTest, DeleteFromCallback) { base::Closure done_task1; base::Closure done_task2; AddMessage(kTestMessage1); AddMessage(kTestMessage2); // OnMessage() should never be called for the second message. EXPECT_CALL(callback_, OnMessage(_)) .Times(1) .WillOnce(Invoke(this, &MessageReaderTest::DeleteReader)); InitReader(); base::RunLoop().RunUntilIdle(); } } // namespace protocol } // namespace remoting