blob: 1ba3b6a35c9453ad14b004733e64383b6caa9816 [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_HOST_SCAN_CACHE_H_
#define CHROMEOS_COMPONENTS_TETHER_FAKE_HOST_SCAN_CACHE_H_
#include <string>
#include <unordered_map>
#include <unordered_set>
#include "base/macros.h"
#include "chromeos/components/tether/host_scan_cache.h"
namespace chromeos {
namespace tether {
// Test double for HostScanCache which stores cache results in memory.
class FakeHostScanCache : virtual public HostScanCache {
public:
FakeHostScanCache();
~FakeHostScanCache() override;
// Getters for contents of the cache.
const HostScanCacheEntry* GetCacheEntry(
const std::string& tether_network_guid);
size_t size() { return cache_.size(); }
bool empty() { return cache_.empty(); }
const std::unordered_map<std::string, HostScanCacheEntry> cache() {
return cache_;
}
// HostScanCache:
void SetHostScanResult(const HostScanCacheEntry& entry) override;
bool ExistsInCache(const std::string& tether_network_guid) override;
std::unordered_set<std::string> GetTetherGuidsInCache() override;
bool DoesHostRequireSetup(const std::string& tether_network_guid) override;
protected:
bool RemoveHostScanResultImpl(
const std::string& tether_network_guid) override;
private:
std::unordered_map<std::string, HostScanCacheEntry> cache_;
DISALLOW_COPY_AND_ASSIGN(FakeHostScanCache);
};
} // namespace tether
} // namespace chromeos
#endif // CHROMEOS_COMPONENTS_TETHER_FAKE_HOST_SCAN_CACHE_H_