blob: 98cc525d596e960265d17ba239444a1b0ec22b6f [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 GARNET_DRIVERS_BLUETOOTH_LIB_HCI_FAKE_CONNECTION_H_
#define GARNET_DRIVERS_BLUETOOTH_LIB_HCI_FAKE_CONNECTION_H_
#include "garnet/drivers/bluetooth/lib/hci/connection.h"
namespace btlib {
namespace hci {
namespace testing {
class FakeConnection final : public Connection {
public:
FakeConnection(ConnectionHandle handle, LinkType ll_type, Role role,
const common::DeviceAddress& local_address,
const common::DeviceAddress& peer_address);
// Triggers the encryption change callback.
void TriggerEncryptionChangeCallback(Status status, bool enabled);
// Connection overrides:
fxl::WeakPtr<Connection> WeakPtr() override;
void Close(StatusCode reason) override;
bool StartEncryption() override;
// Number of times StartEncryption() was called.
int start_encryption_count() const { return start_encryption_count_; }
private:
int start_encryption_count_ = 0;
fxl::WeakPtrFactory<FakeConnection> weak_ptr_factory_;
FXL_DISALLOW_COPY_AND_ASSIGN(FakeConnection);
};
} // namespace testing
} // namespace hci
} // namespace btlib
#endif // GARNET_DRIVERS_BLUETOOTH_LIB_HCI_FAKE_CONNECTION_H_