blob: fec5a68c79910fac660f32ea2102070d3b262802 [file] [log] [blame]
// 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.
#ifndef COMPONENTS_CRYPTAUTH_FAKE_SECURE_CONTEXT_H_
#define COMPONENTS_CRYPTAUTH_FAKE_SECURE_CONTEXT_H_
#include <string>
#include "base/callback.h"
#include "base/macros.h"
#include "components/cryptauth/secure_context.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace cryptauth {
class FakeSecureContext : public SecureContext {
public:
FakeSecureContext();
~FakeSecureContext() override;
// SecureContext:
ProtocolVersion GetProtocolVersion() const override;
std::string GetChannelBindingData() const override;
void Encode(const std::string& message,
const MessageCallback& callback) override;
void Decode(const std::string& encoded_message,
const MessageCallback& callback) override;
void set_protocol_version(ProtocolVersion protocol_version) {
protocol_version_ = protocol_version;
}
private:
ProtocolVersion protocol_version_;
DISALLOW_COPY_AND_ASSIGN(FakeSecureContext);
};
} // namespace cryptauth
#endif // COMPONENTS_CRYPTAUTH_FAKE_SECURE_CONTEXT_H_