1 // Copyright (c) 2012 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_PROTOCOL_FAKE_SESSION_H_
6 #define REMOTING_PROTOCOL_FAKE_SESSION_H_
12 #include "base/memory/scoped_ptr.h"
13 #include "remoting/protocol/fake_stream_socket.h"
14 #include "remoting/protocol/session.h"
19 extern const char kTestJid
[];
21 // FakeSession is a dummy protocol::Session that uses FakeStreamSocket for all
23 class FakeSession
: public Session
{
26 ~FakeSession() override
;
28 EventHandler
* event_handler() { return event_handler_
; }
30 void set_error(ErrorCode error
) { error_
= error
; }
32 bool is_closed() const { return closed_
; }
34 FakeStreamChannelFactory
& fake_channel_factory() { return channel_factory_
; }
37 void SetEventHandler(EventHandler
* event_handler
) override
;
38 ErrorCode
error() override
;
39 const std::string
& jid() override
;
40 const SessionConfig
& config() override
;
41 StreamChannelFactory
* GetTransportChannelFactory() override
;
42 StreamChannelFactory
* GetMultiplexedChannelFactory() override
;
43 StreamChannelFactory
* GetQuicChannelFactory() override
;
44 void Close() override
;
47 EventHandler
* event_handler_
;
48 scoped_ptr
<SessionConfig
> config_
;
50 FakeStreamChannelFactory channel_factory_
;
57 DISALLOW_COPY_AND_ASSIGN(FakeSession
);
60 } // namespace protocol
61 } // namespace remoting
63 #endif // REMOTING_PROTOCOL_FAKE_SESSION_H_