blob: c5d13d1642e34837cfde8335f1630670413023e9 [file] [log] [blame]
//
// Copyright (C) 2015 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#ifndef SHILL_FAKE_STORE_H_
#define SHILL_FAKE_STORE_H_
#include <map>
#include <set>
#include <string>
#include <vector>
#include <brillo/variant_dictionary.h>
#include "shill/store_interface.h"
namespace shill {
// A Fake implementation of StoreInterface. Useful when a unit test
// for another class ("FooClass") a) does not need to FooClass's use
// of StoreInterface, and b) the FooClass test needs a functional
// store.
class FakeStore : public StoreInterface {
public:
FakeStore();
// Inherited from StoreInterface.
bool IsNonEmpty() const override;
bool Open() override;
bool Close() override;
bool Flush() override;
bool MarkAsCorrupted() override;
std::set<std::string> GetGroups() const override;
std::set<std::string> GetGroupsWithKey(const std::string& key) const override;
std::set<std::string> GetGroupsWithProperties(
const KeyValueStore& properties) const override;
bool ContainsGroup(const std::string& group) const override;
bool DeleteKey(const std::string& group, const std::string& key) override;
bool DeleteGroup(const std::string& group) override;
bool SetHeader(const std::string& header) override;
bool GetString(const std::string& group,
const std::string& key,
std::string* value) const override;
bool SetString(const std::string& group,
const std::string& key,
const std::string& value) override;
bool GetBool(const std::string& group,
const std::string& key,
bool* value) const override;
bool SetBool(const std::string& group,
const std::string& key,
bool value) override;
bool GetInt(const std::string& group,
const std::string& key,
int* value) const override;
bool SetInt(const std::string& group,
const std::string& key,
int value) override;
bool GetUint64(const std::string& group,
const std::string& key,
uint64_t* value) const override;
bool SetUint64(const std::string& group,
const std::string& key,
uint64_t value) override;
bool GetStringList(const std::string& group,
const std::string& key,
std::vector<std::string>* value) const override;
bool SetStringList(const std::string& group,
const std::string& key,
const std::vector<std::string>& value) override;
// GetCryptedString is non-const for legacy reasons. See
// KeyFileStore::SetCryptedString() for details.
bool GetCryptedString(const std::string& group,
const std::string& key,
std::string* value) override;
bool SetCryptedString(const std::string& group,
const std::string& key,
const std::string& value) override;
private:
template<typename T> bool ReadSetting(
const std::string& group, const std::string& key, T* out) const;
template<typename T> bool WriteSetting(
const std::string& group, const std::string& key, const T& new_value);
std::map<std::string, brillo::VariantDictionary> group_name_to_settings_;
DISALLOW_COPY_AND_ASSIGN(FakeStore);
};
} // namespace shill
#endif // SHILL_FAKE_STORE_H_