blob: 2e5d5ce5c56cc7d3c9d0ecf4148fbf4827fdaad4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// 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.
#ifndef REMOTING_PROTOCOL_FAKE_SESSION_H_
#define REMOTING_PROTOCOL_FAKE_SESSION_H_
#include <map>
#include <string>
#include <vector>
#include "base/memory/scoped_ptr.h"
#include "remoting/protocol/fake_stream_socket.h"
#include "remoting/protocol/session.h"
namespace remoting {
namespace protocol {
extern const char kTestJid[];
// FakeSession is a dummy protocol::Session that uses FakeStreamSocket for all
// channels.
class FakeSession : public Session {
public:
FakeSession();
~FakeSession() override;
EventHandler* event_handler() { return event_handler_; }
void set_error(ErrorCode error) { error_ = error; }
bool is_closed() const { return closed_; }
FakeStreamChannelFactory& fake_channel_factory() { return channel_factory_; }
// Session interface.
void SetEventHandler(EventHandler* event_handler) override;
ErrorCode error() override;
const std::string& jid() override;
const CandidateSessionConfig* candidate_config() override;
const SessionConfig& config() override;
void set_config(const SessionConfig& config) override;
StreamChannelFactory* GetTransportChannelFactory() override;
StreamChannelFactory* GetMultiplexedChannelFactory() override;
void Close() override;
public:
EventHandler* event_handler_;
scoped_ptr<const CandidateSessionConfig> candidate_config_;
SessionConfig config_;
FakeStreamChannelFactory channel_factory_;
std::string jid_;
ErrorCode error_;
bool closed_;
DISALLOW_COPY_AND_ASSIGN(FakeSession);
};
} // namespace protocol
} // namespace remoting
#endif // REMOTING_PROTOCOL_FAKE_SESSION_H_
|