blob: d5740bbf0e5eb75ee07e29ba54b93ac270cf1cd3 [file] [log] [blame]
// Copyright (c) 2012 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 SHILL_MOCK_NETLINK_SOCKET_H_
#define SHILL_MOCK_NETLINK_SOCKET_H_
#include "shill/netlink_socket.h"
#include <base/basictypes.h>
#include <gmock/gmock.h>
namespace shill {
class ByteString;
class MockNetlinkSocket : public NetlinkSocket {
public:
MockNetlinkSocket() {}
MOCK_METHOD0(Init, bool());
uint32 GetLastSequenceNumber() const { return sequence_number_; }
MOCK_CONST_METHOD0(file_descriptor, int());
MOCK_METHOD1(SendMessage, bool(const ByteString &out_string));
MOCK_METHOD1(SubscribeToEvents, bool(uint32_t group_id));
MOCK_METHOD1(RecvMessage, bool(ByteString *message));
private:
DISALLOW_COPY_AND_ASSIGN(MockNetlinkSocket);
};
} // namespace shill
#endif // SHILL_MOCK_NETLINK_SOCKET_H_