blob: c1e4d794e5fbcd3bc9459ba888246a6eaa500d2d [file] [log] [blame]
// Copyright 2017 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 CHROMEOS_COMPONENTS_TETHER_FAKE_TETHER_HOST_FETCHER_H_
#define CHROMEOS_COMPONENTS_TETHER_FAKE_TETHER_HOST_FETCHER_H_
#include <vector>
#include "base/macros.h"
#include "chromeos/components/tether/tether_host_fetcher.h"
#include "components/cryptauth/remote_device_ref.h"
namespace chromeos {
namespace tether {
// Test double for TetherHostFetcher.
class FakeTetherHostFetcher : public TetherHostFetcher {
public:
FakeTetherHostFetcher(const cryptauth::RemoteDeviceRefList& tether_hosts);
FakeTetherHostFetcher();
~FakeTetherHostFetcher() override;
void set_tether_hosts(const cryptauth::RemoteDeviceRefList& tether_hosts) {
tether_hosts_ = tether_hosts;
}
void NotifyTetherHostsUpdated();
// TetherHostFetcher:
bool HasSyncedTetherHosts() override;
void FetchAllTetherHosts(
const TetherHostFetcher::TetherHostListCallback& callback) override;
void FetchTetherHost(
const std::string& device_id,
const TetherHostFetcher::TetherHostCallback& callback) override;
private:
cryptauth::RemoteDeviceRefList tether_hosts_;
DISALLOW_COPY_AND_ASSIGN(FakeTetherHostFetcher);
};
} // namespace tether
} // namespace chromeos
#endif // CHROMEOS_COMPONENTS_TETHER_FAKE_TETHER_HOST_FETCHER_H_