Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / remoting / test / app_remoting_connection_helper.h
blob6978747688b9d603c9452be8304f6523ab14d818
1 // Copyright 2015 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.
5 #ifndef REMOTING_TEST_APP_REMOTING_CONNECTION_HELPER_H_
6 #define REMOTING_TEST_APP_REMOTING_CONNECTION_HELPER_H_
8 #include <string>
10 #include "base/callback.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/threading/thread_checker.h"
13 #include "remoting/test/remote_connection_observer.h"
14 #include "testing/gtest/include/gtest/gtest.h"
16 namespace base {
17 class RunLoop;
18 class Timer;
19 class Lock;
22 namespace remoting {
23 namespace test {
25 struct RemoteApplicationDetails;
26 class TestChromotingClient;
28 // Allows for custom handling of ExtensionMessage messages.
29 typedef base::Callback<void(const protocol::ExtensionMessage& message)>
30 HostMessageReceivedCallback;
32 // Creates a connection to a remote host which is available for tests to use.
33 // A TestChromotingClient is required from caller.
34 class AppRemotingConnectionHelper
35 : public RemoteConnectionObserver {
36 public:
37 explicit AppRemotingConnectionHelper(
38 const RemoteApplicationDetails& application_details);
39 ~AppRemotingConnectionHelper() override;
41 // Initialize internal structures.
42 void Initialize(scoped_ptr<TestChromotingClient> test_chromoting_client);
44 // Starts a connection with the remote host.
45 // NOTE: Initialize() must be called before calling this method.
46 bool StartConnection();
48 // Stubs used to send messages to the remote host. Caller should not release
49 // the objects.
50 protocol::ClipboardStub* clipboard_forwarder();
51 protocol::HostStub* host_stub();
52 protocol::InputStub* input_stub();
54 // Setter for |host_message_received_callback_|.
55 void SetHostMessageReceivedCallback(
56 HostMessageReceivedCallback host_message_received_callback);
58 bool ConnectionIsReadyForTest() { return connection_is_ready_for_tests_; }
60 private:
61 // RemoteConnectionObserver interface.
62 void ConnectionStateChanged(protocol::ConnectionToHost::State state,
63 protocol::ErrorCode error_code) override;
64 void ConnectionReady(bool ready) override;
65 void HostMessageReceived(const protocol::ExtensionMessage& message) override;
67 // Sends client details to the host in order to complete the connection.
68 void SendClientConnectionDetailsToHost();
70 // Handles onWindowAdded messages from the host.
71 void HandleOnWindowAddedMessage(
72 const remoting::protocol::ExtensionMessage& message);
74 // Contains the details for the application being tested.
75 const RemoteApplicationDetails& application_details_;
77 // Called when an ExtensionMessage is received from the host. Used to
78 // override default message handling.
79 HostMessageReceivedCallback host_message_received_callback_;
81 // Indicates whether the remote connection is ready to be used for testing.
82 // True when a chromoting connection to the remote host has been established
83 // and the main application window is visible.
84 bool connection_is_ready_for_tests_;
86 // Used to run the thread's message loop.
87 scoped_ptr<base::RunLoop> run_loop_;
89 // Used for setting timeouts and delays.
90 scoped_ptr<base::Timer> timer_;
92 // Used to ensure RemoteConnectionObserver methods are called on the same
93 // thread.
94 base::ThreadChecker thread_checker_;
96 // Creates and manages the connection to the remote host.
97 scoped_ptr<TestChromotingClient> client_;
99 DISALLOW_COPY_AND_ASSIGN(AppRemotingConnectionHelper);
102 } // namespace test
103 } // namespace remoting
105 #endif // REMOTING_TEST_APP_REMOTING_CONNECTION_HELPER_H_