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

Unified Diff: remoting/protocol/ice_connection_to_client_unittest.cc

Issue 1531983002: Replace ice_connection_to_client_unittest.cc with connection_unittest.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/ice_connection_to_client.cc ('k') | remoting/remoting_test.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/ice_connection_to_client_unittest.cc
diff --git a/remoting/protocol/ice_connection_to_client_unittest.cc b/remoting/protocol/ice_connection_to_client_unittest.cc
deleted file mode 100644
index b6a860b352cb8fcbd161ab1c43178b689a762cbb..0000000000000000000000000000000000000000
--- a/remoting/protocol/ice_connection_to_client_unittest.cc
+++ /dev/null
@@ -1,113 +0,0 @@
-// Copyright 2015 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 "remoting/protocol/ice_connection_to_client.h"
-
-#include "base/bind.h"
-#include "base/message_loop/message_loop.h"
-#include "base/run_loop.h"
-#include "remoting/base/constants.h"
-#include "remoting/protocol/fake_session.h"
-#include "remoting/protocol/protocol_mock_objects.h"
-#include "testing/gmock/include/gmock/gmock.h"
-
-using ::testing::_;
-using ::testing::InvokeWithoutArgs;
-using ::testing::NotNull;
-using ::testing::StrictMock;
-
-namespace remoting {
-namespace protocol {
-
-class IpcConnectionToClientTest : public testing::Test {
- public:
- IpcConnectionToClientTest() {}
-
- protected:
- void SetUp() override {
- session_ = new FakeSession();
-
- // Allocate a ClientConnection object with the mock objects.
- viewer_.reset(new IceConnectionToClient(make_scoped_ptr(session_),
- message_loop_.task_runner()));
- viewer_->SetEventHandler(&handler_);
- EXPECT_CALL(handler_, OnConnectionAuthenticated(viewer_.get()))
- .WillOnce(
- InvokeWithoutArgs(this, &IpcConnectionToClientTest::ConnectStubs));
- EXPECT_CALL(handler_, OnConnectionChannelsConnected(viewer_.get()));
- session_->event_handler()->OnSessionStateChange(Session::ACCEPTED);
- session_->event_handler()->OnSessionStateChange(Session::AUTHENTICATED);
- base::RunLoop().RunUntilIdle();
- }
-
- void TearDown() override {
- viewer_.reset();
- base::RunLoop().RunUntilIdle();
- }
-
- void ConnectStubs() {
- viewer_->set_clipboard_stub(&clipboard_stub_);
- viewer_->set_host_stub(&host_stub_);
- viewer_->set_input_stub(&input_stub_);
- }
-
- base::MessageLoop message_loop_;
- MockConnectionToClientEventHandler handler_;
- MockClipboardStub clipboard_stub_;
- MockHostStub host_stub_;
- MockInputStub input_stub_;
- scoped_ptr<ConnectionToClient> viewer_;
-
- FakeSession* session_;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(IpcConnectionToClientTest);
-};
-
-TEST_F(IpcConnectionToClientTest, SendUpdateStream) {
- Capabilities capabilities;
- viewer_->client_stub()->SetCapabilities(capabilities);
-
- base::RunLoop().RunUntilIdle();
-
- // Verify that something has been written.
- // TODO(sergeyu): Verify that the correct data has been written.
- FakeStreamSocket* channel =
- session_->GetTransport()->GetStreamChannelFactory()->GetFakeChannel(
- kControlChannelName);
- ASSERT_TRUE(channel);
- EXPECT_FALSE(channel->written_data().empty());
-
- // And then close the connection to ConnectionToClient.
- viewer_->Disconnect(protocol::OK);
-
- base::RunLoop().RunUntilIdle();
-}
-
-TEST_F(IpcConnectionToClientTest, NoWriteAfterDisconnect) {
- Capabilities capabilities;
- viewer_->client_stub()->SetCapabilities(capabilities);
-
- // And then close the connection to ConnectionToClient.
- viewer_->Disconnect(protocol::OK);
-
- // The test will crash if data writer tries to write data to the
- // channel socket.
- // TODO(sergeyu): Use MockSession to verify that no data is written?
- base::RunLoop().RunUntilIdle();
-}
-
-TEST_F(IpcConnectionToClientTest, StateChange) {
- EXPECT_CALL(handler_, OnConnectionClosed(viewer_.get(), OK));
- session_->event_handler()->OnSessionStateChange(Session::CLOSED);
- base::RunLoop().RunUntilIdle();
-
- EXPECT_CALL(handler_, OnConnectionClosed(viewer_.get(), SESSION_REJECTED));
- session_->set_error(SESSION_REJECTED);
- session_->event_handler()->OnSessionStateChange(Session::FAILED);
- base::RunLoop().RunUntilIdle();
-}
-
-} // namespace protocol
-} // namespace remoting
« no previous file with comments | « remoting/protocol/ice_connection_to_client.cc ('k') | remoting/remoting_test.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698