blob: 3be85c8eeee590cd1f6ff5df453ea334e772539e [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,
21 ControlInterface *control_interface,
22 EventDispatcher *dispatcher,
23 Metrics *metrics,
24 Manager *manager,
Ben Chan62028b22012-11-05 11:20:02 -080025 CellularOperatorInfo *cellular_operator_info,
David Rochbergfa1d31d2012-03-20 10:38:07 -040026 mobile_provider_db *provider_db);
27 virtual ~MockModem();
28
29 // This class only mocks the pure virtual methods; if you need a
30 // more thorough mock, know that modem_unittest.cc depends on the
31 // incompleteness of this mock.
Eric Shienbrood7fce52c2012-04-13 19:11:02 -040032 MOCK_METHOD1(SetModemStateFromProperties,
33 void(const DBusPropertiesMap &properties));
David Rochbergfa1d31d2012-03-20 10:38:07 -040034 MOCK_CONST_METHOD2(GetLinkName,
35 bool(const DBusPropertiesMap &modem_properties,
36 std::string *name));
Jason Glasgow4c0724a2012-04-17 15:47:40 -040037 MOCK_CONST_METHOD0(GetModemInterface,
38 std::string(void));
David Rochbergfa1d31d2012-03-20 10:38:07 -040039 MOCK_METHOD3(ConstructCellular, Cellular *(
40 const std::string &link_name,
41 const std::string &device_name,
42 int ifindex));
43};
44typedef ::testing::StrictMock<MockModem> StrictModem;
45
46} // namespace shill
47
48#endif // SHILL_MOCK_MODEM_H_