aboutsummaryrefslogtreecommitdiff
path: root/brillo/dbus/mock_exported_object_manager.h
blob: 02bb073fe62c67820bd1a92871aacde082a46ec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// 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 LIBBRILLO_BRILLO_DBUS_MOCK_EXPORTED_OBJECT_MANAGER_H_
#define LIBBRILLO_BRILLO_DBUS_MOCK_EXPORTED_OBJECT_MANAGER_H_

#include <string>

#include <brillo/dbus/async_event_sequencer.h>
#include <brillo/dbus/exported_object_manager.h>
#include <dbus/object_path.h>
#include <gmock/gmock.h>

namespace brillo {

namespace dbus_utils {

class MockExportedObjectManager : public ExportedObjectManager {
 public:
  using CompletionAction =
      brillo::dbus_utils::AsyncEventSequencer::CompletionAction;

  using ExportedObjectManager::ExportedObjectManager;
  ~MockExportedObjectManager() override = default;

  MOCK_METHOD(void, RegisterAsync, (const CompletionAction&), (override));
  MOCK_METHOD(void,
              ClaimInterface,
              (const ::dbus::ObjectPath&,
               const std::string&,
               const ExportedPropertySet::PropertyWriter&),
              (override));
  MOCK_METHOD(void,
              ReleaseInterface,
              (const ::dbus::ObjectPath&, const std::string&),
              (override));
};

}  // namespace dbus_utils

}  // namespace brillo

#endif  // LIBBRILLO_BRILLO_DBUS_MOCK_EXPORTED_OBJECT_MANAGER_H_