blob: d5899ea2030c9928a6aad098f7cd4ec661c18ebc [file] [log] [blame]
David Rochbergfa1d31d2012-03-20 10:38:07 -04001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_MOCK_MODEM_H_
Ben Chan62028b22012-11-05 11:20:02 -08006#define SHILL_MOCK_MODEM_H_
David Rochbergfa1d31d2012-03-20 10:38:07 -04007
8#include <string>
9
10#include <gmock/gmock.h>
11
12#include "shill/modem.h"
13
14namespace shill {
15
16class MockModem : public Modem {
17 public:
18 MockModem(const std::string &owner,
Jason Glasgowa585fc32012-06-06 11:04:09 -040019 const std::string &service,
David Rochbergfa1d31d2012-03-20 10:38:07 -040020 const std::string &path,
Prathmesh Prabhu27526f12013-03-25 19:42:18 -070021 ModemInfo *modem_info);
David Rochbergfa1d31d2012-03-20 10:38:07 -040022 virtual ~MockModem();
23
24 // This class only mocks the pure virtual methods; if you need a
25 // more thorough mock, know that modem_unittest.cc depends on the
26 // incompleteness of this mock.
Eric Shienbrood7fce52c2012-04-13 19:11:02 -040027 MOCK_METHOD1(SetModemStateFromProperties,
28 void(const DBusPropertiesMap &properties));
David Rochbergfa1d31d2012-03-20 10:38:07 -040029 MOCK_CONST_METHOD2(GetLinkName,
30 bool(const DBusPropertiesMap &modem_properties,
31 std::string *name));
Jason Glasgow4c0724a2012-04-17 15:47:40 -040032 MOCK_CONST_METHOD0(GetModemInterface,
33 std::string(void));
David Rochbergfa1d31d2012-03-20 10:38:07 -040034 MOCK_METHOD3(ConstructCellular, Cellular *(
35 const std::string &link_name,
36 const std::string &device_name,
37 int ifindex));
38};
39typedef ::testing::StrictMock<MockModem> StrictModem;
40
41} // namespace shill
42
43#endif // SHILL_MOCK_MODEM_H_