blob: 44298bb55f6fca68e31bd74ce50369c29a3e77e4 [file] [log] [blame]
// Copyright 2015 The Chromium OS 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 LIBWEAVE_INCLUDE_WEAVE_TEST_MOCK_DEVICE_H_
#define LIBWEAVE_INCLUDE_WEAVE_TEST_MOCK_DEVICE_H_
#include <weave/device.h>
#include <string>
#include <gmock/gmock.h>
namespace weave {
namespace test {
class MockDevice : public Device {
public:
~MockDevice() override = default;
MOCK_CONST_METHOD0(GetSettings, const Settings&());
MOCK_METHOD1(AddSettingsChangedCallback,
void(const SettingsChangedCallback& callback));
MOCK_METHOD1(AddCommandAddedCallback, void(const CommandCallback&));
MOCK_METHOD1(AddCommandRemovedCallback, void(const CommandCallback&));
MOCK_METHOD3(AddCommand,
bool(const base::DictionaryValue&, std::string*, ErrorPtr*));
MOCK_METHOD1(FindCommand, Command*(const std::string&));
MOCK_METHOD1(AddStateChangedCallback, void(const base::Closure& callback));
MOCK_CONST_METHOD1(GetStateProperty,
std::unique_ptr<base::Value>(const std::string& name));
MOCK_METHOD3(SetStateProperty,
bool(const std::string& name,
const base::Value& value,
ErrorPtr* error));
MOCK_METHOD2(SetStateProperties,
bool(const base::DictionaryValue& property_set,
ErrorPtr* error));
MOCK_CONST_METHOD0(GetState, std::unique_ptr<base::DictionaryValue>());
MOCK_CONST_METHOD0(GetGcdState, GcdState());
MOCK_METHOD1(AddGcdStateChangedCallback,
void(const GcdStateChangedCallback& callback));
MOCK_METHOD2(Register,
std::string(const std::string& ticket_id, ErrorPtr* error));
MOCK_METHOD2(AddPairingChangedCallbacks,
void(const PairingBeginCallback& begin_callback,
const PairingEndCallback& end_callback));
};
} // namespace test
} // namespace weave
#endif // LIBWEAVE_INCLUDE_WEAVE_TEST_MOCK_DEVICE_H_