// // 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 #include #include #include #include #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 GetGroups() const override; std::set GetGroupsWithKey(const std::string& key) const override; std::set 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* value) const override; bool SetStringList(const std::string& group, const std::string& key, const std::vector& 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 bool ReadSetting( const std::string& group, const std::string& key, T* out) const; template bool WriteSetting( const std::string& group, const std::string& key, const T& new_value); std::map group_name_to_settings_; DISALLOW_COPY_AND_ASSIGN(FakeStore); }; } // namespace shill #endif // SHILL_FAKE_STORE_H_